From ea5b8e8ca16fb7f872464c167e83322dcef73a33 Mon Sep 17 00:00:00 2001 From: teddy Date: Fri, 25 Oct 2024 16:42:13 +0100 Subject: [PATCH] feat: Shop Supplier Purchase Order get, filter, and add new. --- .VSCodeCounter/2024-09-25_13-34-45/details.md | 2 +- .../2024-09-25_13-34-45/results.json | 2 +- .VSCodeCounter/2024-10-05_01-17-41/details.md | 2 +- .../2024-10-05_01-17-41/results.json | 2 +- .VSCodeCounter/2024-10-05_01-19-04/details.md | 2 +- .../2024-10-05_01-19-04/results.json | 2 +- .VSCodeCounter/2024-10-05_01-19-34/details.md | 2 +- .../2024-10-05_01-19-34/results.json | 2 +- .VSCodeCounter/2024-10-05_01-21-34/details.md | 2 +- .../2024-10-05_01-21-34/results.json | 2 +- .../__pycache__/base.cpython-312.pyc | Bin 4875 -> 4945 bytes .../__pycache__/currency.cpython-312.pyc | Bin 6908 -> 7109 bytes business_objects/base.py | 1 + business_objects/currency.py | 26 +- .../product_permutation.cpython-312.pyc | Bin 40395 -> 40378 bytes .../__pycache__/store_base.cpython-312.pyc | Bin 5722 -> 6217 bytes .../store/manufacturing_purchase_order.py | 57 +- business_objects/store/product_permutation.py | 24 +- business_objects/store/store_base.py | 5 + business_objects/store/supplier.py | 9 +- .../store/supplier_purchase_order.py | 120 ++- controllers/store/supplier_purchase_order.py | 6 +- ..._store_product_permutation.cpython-312.pyc | Bin 3089 -> 3089 bytes ...tore_store_manufacturing_purchase_order.py | 6 +- .../datastore_store_product_permutation.py | 2 +- datastores/datastore_store_supplier.py | 7 +- ...datastore_store_supplier_purchase_order.py | 15 +- .../model_view_base.cpython-312.pyc | Bin 19368 -> 20090 bytes .../model_view_store.cpython-312.pyc | Bin 25132 -> 26057 bytes models/model_view_base.py | 17 +- models/model_view_store.py | 11 +- ...view_store_manufacturing_purchase_order.py | 13 +- ...odel_view_store_supplier_purchase_order.py | 13 +- static/MySQL/0000_combine.sql | 853 +++++++++++++----- static/MySQL/0001_destroy.sql | 2 + .../1206_tbl_Shop_Product_Permutation.sql | 2 +- ...1208_tbl_Shop_Product_Permutation_Temp.sql | 2 +- static/MySQL/1400_tbl_Shop_Supplier.sql | 35 +- .../MySQL/1403_tbl_Shop_Supplier_Address.sql | 2 +- .../1409_tbl_Shop_Supplier_Purchase_Order.sql | 1 + ..._tbl_Shop_Supplier_Purchase_Order_Temp.sql | 11 +- ...plier_Purchase_Order_Product_Link_Temp.sql | 5 +- ..._tbl_Shop_Manufacturing_Purchase_Order.sql | 1 + ...ufacturing_Purchase_Order_Product_Link.sql | 55 +- ...uring_Purchase_Order_Product_Link_Temp.sql | 7 +- .../3206_tri_Shop_Product_Permutation.sql | 6 +- static/MySQL/3400_tri_Shop_Supplier.sql | 4 + .../3409_tri_Shop_Supplier_Purchase_Order.sql | 4 + ..._tri_Shop_Manufacturing_Purchase_Order.sql | 14 +- ...ufacturing_Purchase_Order_Product_Link.sql | 10 +- ...6_fn_shop_get_product_permutation_name.sql | 20 +- .../7204_p_shop_calc_product_permutation.sql | 4 +- static/MySQL/7204_p_shop_get_many_product.sql | 2 +- .../7206_p_shop_save_product_permutation.sql | 24 +- static/MySQL/7220_p_shop_save_stock_item.sql | 4 +- ...price_and_discount_and_delivery_option.sql | 2 +- static/MySQL/7400_p_shop_save_supplier.sql | 78 +- .../MySQL/7400_p_shop_save_supplier_temp.sql | 131 +++ .../MySQL/7401_p_shop_get_many_supplier.sql | 2 +- ...03_p_shop_save_supplier_purchase_order.sql | 843 +++++++++++++++++ ...shop_save_supplier_purchase_order_test.sql | 127 +++ ..._shop_get_many_supplier_purchase_order.sql | 13 +- ...shop_save_manufacturing_purchase_order.sql | 163 ++-- ..._get_many_manufacturing_purchase_order.sql | 6 +- ...5_p_shop_get_many_customer_sales_order.sql | 6 +- static/MySQL/9000_populate.sql | 14 +- static/MySQL/deprecated/dump.sql | 16 +- static/MySQL/deprecated/dump2.sql | 16 +- static/MySQL/temp.txt | 7 +- static/PostgreSQL/000_combine.sql | 70 +- .../117.1_tbl_Shop_Product_Permutation.sql | 2 +- ...ufacturing_Purchase_Order_Product_Link.sql | 2 +- ...uring_Purchase_Order_Product_Link_Temp.sql | 2 +- .../317.1_tri_Shop_Product_Permutation.sql | 6 +- ...ufacturing_Purchase_Order_Product_Link.sql | 6 +- ...shop_save_manufacturing_purchase_order.sql | 22 +- .../700_p_shop_get_many_product.sql | 8 +- ..._shop_get_many_supplier_purchase_order.sql | 6 +- ..._get_many_manufacturing_purchase_order.sql | 8 +- ...0_p_shop_get_many_customer_sales_order.sql | 6 +- static/PostgreSQL/900_populate.sql | 2 +- static/css/components/table.css | 13 +- static/css/main.css | 9 +- .../css/pages/store/product_permutations.css | 2 +- static/css/pages/store/stock_items.css | 2 - .../pages/store/supplier_purchase_order.css | 55 +- static/dist/css/main.bundle.css | 22 +- .../css/store_product_permutations.bundle.css | 2 +- static/dist/css/store_stock_items.bundle.css | 2 - static/dist/js/main.bundle.js | 2 +- static/docs/PARTS ERP.xlsx | Bin 0 -> 17618 bytes .../js/components/common/inputs/textarea.js | 11 +- static/js/dom.js | 15 +- .../business_objects.js | 3 + .../store/product_permutation.js | 34 + static/js/lib/common.js | 47 +- static/js/lib/validation.js | 9 - static/js/pages/base.js | 6 +- static/js/pages/base_table.js | 274 +++++- .../store/manufacturing_purchase_orders.js | 439 ++++++++- static/js/pages/store/product_categories.js | 2 +- static/js/pages/store/product_permutations.js | 57 +- static/js/pages/store/products.js | 2 +- static/js/pages/store/stock_items.js | 35 +- .../pages/store/supplier_purchase_orders.js | 458 +++++++++- static/js/pages/store/suppliers.js | 37 +- .../store/_preview_DDL_supplier.html | 17 + ...ew_manufacturing_purchase_order_items.html | 2 +- .../store/_preview_order_items.html | 6 +- .../_row_manufacturing_purchase_order.html | 46 +- templates/components/store/_row_product.html | 4 +- .../store/_row_product_category.html | 4 +- .../store/_row_product_permutation.html | 12 +- .../components/store/_row_stock_item.html | 4 +- templates/components/store/_row_supplier.html | 4 +- .../store/_row_supplier_purchase_order.html | 46 +- templates/js/sections/store.js | 10 +- templates/layouts/layout.html | 2 +- .../store/_manufacturing_purchase_orders.html | 10 +- .../pages/store/_product_permutations.html | 2 +- .../store/_supplier_purchase_orders.html | 9 +- 121 files changed, 3835 insertions(+), 865 deletions(-) create mode 100644 static/MySQL/7400_p_shop_save_supplier_temp.sql create mode 100644 static/MySQL/7403_p_shop_save_supplier_purchase_order.sql create mode 100644 static/MySQL/7403_p_shop_save_supplier_purchase_order_test.sql create mode 100644 static/docs/PARTS ERP.xlsx rename static/js/lib/{ => business_objects}/business_objects.js (88%) create mode 100644 static/js/lib/business_objects/store/product_permutation.js create mode 100644 templates/components/store/_preview_DDL_supplier.html diff --git a/.VSCodeCounter/2024-09-25_13-34-45/details.md b/.VSCodeCounter/2024-09-25_13-34-45/details.md index ca722475..72a95961 100644 --- a/.VSCodeCounter/2024-09-25_13-34-45/details.md +++ b/.VSCodeCounter/2024-09-25_13-34-45/details.md @@ -507,7 +507,7 @@ Total : 575 files, 67395 codes, 18525 comments, 9686 blanks, all 95606 lines | [static/js/components/common/temporary/overlay_error.js](/static/js/components/common/temporary/overlay_error.js) | JavaScript | 17 | 0 | 2 | 19 | | [static/js/components/common/video.js](/static/js/components/common/video.js) | JavaScript | 10 | 0 | 4 | 14 | | [static/js/dom.js](/static/js/dom.js) | JavaScript | 169 | 18 | 11 | 198 | -| [static/js/lib/business_objects.js](/static/js/lib/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | +| [static/js/lib/business_objects/business_objects.js](/static/js/lib/business_objects/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | | [static/js/lib/common.js](/static/js/lib/common.js) | JavaScript | 63 | 3 | 19 | 85 | | [static/js/lib/constants.js](/static/js/lib/constants.js) | JavaScript | 4 | 1 | 2 | 7 | | [static/js/lib/events.js](/static/js/lib/events.js) | JavaScript | 9 | 0 | 1 | 10 | diff --git a/.VSCodeCounter/2024-09-25_13-34-45/results.json b/.VSCodeCounter/2024-09-25_13-34-45/results.json index c2bd0642..19b526d4 100644 --- a/.VSCodeCounter/2024-09-25_13-34-45/results.json +++ b/.VSCodeCounter/2024-09-25_13-34-45/results.json @@ -1 +1 @@ -{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":132,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":18,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":62,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":35,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":39,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":38,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":13,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":12,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":196,"comment":2,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":36,"comment":38,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":566,"comment":195,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":216,"comment":80,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":594,"comment":230,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":388,"comment":144,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_user_eval_temp.sql":{"language":"SQL","code":18,"comment":11,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":10,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_user_eval.sql":{"language":"SQL","code":350,"comment":361,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":13221,"comment":3440,"blank":2110},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":66,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":53,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":102,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":36,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":141,"comment":17,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":611,"comment":172,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":78,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":352,"comment":11,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":60,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26}} \ No newline at end of file +{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":132,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":18,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":62,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":35,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":39,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":38,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":13,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":12,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":196,"comment":2,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":36,"comment":38,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":566,"comment":195,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":216,"comment":80,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":594,"comment":230,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":388,"comment":144,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_user_eval_temp.sql":{"language":"SQL","code":18,"comment":11,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":10,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_user_eval.sql":{"language":"SQL","code":350,"comment":361,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":13221,"comment":3440,"blank":2110},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":66,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":53,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":102,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":36,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":141,"comment":17,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":611,"comment":172,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":78,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":352,"comment":11,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":60,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26}} \ No newline at end of file diff --git a/.VSCodeCounter/2024-10-05_01-17-41/details.md b/.VSCodeCounter/2024-10-05_01-17-41/details.md index dce23822..13c1cfbc 100644 --- a/.VSCodeCounter/2024-10-05_01-17-41/details.md +++ b/.VSCodeCounter/2024-10-05_01-17-41/details.md @@ -2124,7 +2124,7 @@ Total : 2192 files, 564177 codes, 49307 comments, 82958 blanks, all 696442 line | [static/js/components/common/temporary/overlay_error.js](/static/js/components/common/temporary/overlay_error.js) | JavaScript | 17 | 0 | 2 | 19 | | [static/js/components/common/video.js](/static/js/components/common/video.js) | JavaScript | 10 | 0 | 4 | 14 | | [static/js/dom.js](/static/js/dom.js) | JavaScript | 169 | 18 | 11 | 198 | -| [static/js/lib/business_objects.js](/static/js/lib/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | +| [static/js/lib/business_objects/business_objects.js](/static/js/lib/business_objects/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | | [static/js/lib/common.js](/static/js/lib/common.js) | JavaScript | 63 | 3 | 19 | 85 | | [static/js/lib/constants.js](/static/js/lib/constants.js) | JavaScript | 4 | 1 | 2 | 7 | | [static/js/lib/events.js](/static/js/lib/events.js) | JavaScript | 9 | 0 | 1 | 10 | diff --git a/.VSCodeCounter/2024-10-05_01-17-41/results.json b/.VSCodeCounter/2024-10-05_01-17-41/results.json index 7010fc0c..78555382 100644 --- a/.VSCodeCounter/2024-10-05_01-17-41/results.json +++ b/.VSCodeCounter/2024-10-05_01-17-41/results.json @@ -1 +1 @@ -{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":65,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":20,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":73,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":18,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_report.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":41,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":28,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":213,"comment":2,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Split_Temp.sql":{"language":"SQL","code":7,"comment":2,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/routes.py":{"language":"Python","code":40,"comment":6,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":79,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/storage_location.py":{"language":"Python","code":61,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":248,"comment":9,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":14579,"comment":3389,"blank":2259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":614,"comment":173,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql":{"language":"SQL","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":28,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":58,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql":{"language":"SQL","code":24,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":557,"comment":157,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":738,"comment":201,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":290,"comment":86,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_permutation.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/stock_item.py":{"language":"Python","code":53,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":381,"comment":95,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_calc_product_permutation.sql":{"language":"SQL","code":528,"comment":108,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":37,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/pyvenv.cfg":{"language":"Properties","code":3,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_calc_user.sql":{"language":"SQL","code":425,"comment":87,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/deactivate.bat":{"language":"Batch","code":15,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/Activate.ps1":{"language":"PowerShell","code":104,"comment":105,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/activate.bat":{"language":"Batch","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_calc_user.sql":{"language":"SQL","code":22,"comment":14,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_validate_guid.sql":{"language":"SQL","code":29,"comment":21,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/config.py":{"language":"Python","code":538,"comment":10,"blank":163},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/installer.py":{"language":"Python","code":80,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/lib2to3_ex.py":{"language":"Python","code":54,"comment":2,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/launch.py":{"language":"Python","code":27,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/monkey.py":{"language":"Python","code":124,"comment":14,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/glob.py":{"language":"Python","code":118,"comment":14,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/ssl_support.py":{"language":"Python","code":189,"comment":31,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/sandbox.py":{"language":"Python","code":384,"comment":9,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/py34compat.py":{"language":"Python","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/package_index.py":{"language":"Python","code":902,"comment":63,"blank":181},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/namespaces.py":{"language":"Python","code":86,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/msvc.py":{"language":"Python","code":1466,"comment":64,"blank":297},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extension.py":{"language":"Python","code":38,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/errors.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dist.py":{"language":"Python","code":828,"comment":45,"blank":185},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dep_util.py":{"language":"Python","code":17,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/depends.py":{"language":"Python","code":129,"comment":3,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/archive_util.py":{"language":"Python","code":156,"comment":8,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/build_meta.py":{"language":"Python","code":200,"comment":20,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_rpm.py":{"language":"Python","code":24,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_clib.py":{"language":"Python","code":77,"comment":13,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_egg.py":{"language":"Python","code":362,"comment":17,"blank":78},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/alias.py":{"language":"Python","code":62,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/__init__.py":{"language":"Python","code":174,"comment":13,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/saveopts.py":{"language":"Python","code":14,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/setopt.py":{"language":"Python","code":125,"comment":0,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/sdist.py":{"language":"Python","code":183,"comment":11,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/rotate.py":{"language":"Python","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/register.py":{"language":"Python","code":12,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/py36compat.py":{"language":"Python","code":105,"comment":11,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/launcher%20manifest.xml":{"language":"XML","code":14,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_scripts.py":{"language":"Python","code":55,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_lib.py":{"language":"Python","code":93,"comment":6,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_egg_info.py":{"language":"Python","code":47,"comment":4,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/__init__.py":{"language":"Python","code":93,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/override.py":{"language":"Python","code":1,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/ordered_set.py":{"language":"Python","code":405,"comment":15,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/__init__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload_docs.py":{"language":"Python","code":169,"comment":9,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload.py":{"language":"Python","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/test.py":{"language":"Python","code":219,"comment":9,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install.py":{"language":"Python","code":94,"comment":10,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/egg_info.py":{"language":"Python","code":554,"comment":53,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/__init__.py":{"language":"Python","code":2468,"comment":167,"blank":654},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/dist_info.py":{"language":"Python","code":26,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/easy_install.py":{"language":"Python","code":1804,"comment":147,"blank":340},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/develop.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_py.py":{"language":"Python","code":216,"comment":13,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_imp.py":{"language":"Python","code":66,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_ext.py":{"language":"Python","code":255,"comment":30,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_deprecation_warning.py":{"language":"Python","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/windows_support.py":{"language":"Python","code":21,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/wheel.py":{"language":"Python","code":178,"comment":13,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/version.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/unicode_utils.py":{"language":"Python","code":32,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dep_util.py":{"language":"Python","code":66,"comment":9,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dist.py":{"language":"Python","code":900,"comment":164,"blank":194},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dir_util.py":{"language":"Python","code":156,"comment":18,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/debug.py":{"language":"Python","code":2,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/extension.py":{"language":"Python","code":189,"comment":27,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/errors.py":{"language":"Python","code":75,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py":{"language":"Python","code":237,"comment":111,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/fancy_getopt.py":{"language":"Python","code":308,"comment":78,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/core.py":{"language":"Python","code":170,"comment":25,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/config.py":{"language":"Python","code":103,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/file_util.py":{"language":"Python","code":181,"comment":19,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/log.py":{"language":"Python","code":57,"comment":4,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvc9compiler.py":{"language":"Python","code":584,"comment":107,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/filelist.py":{"language":"Python","code":243,"comment":28,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cmd.py":{"language":"Python","code":275,"comment":71,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/util.py":{"language":"Python","code":404,"comment":69,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/version.py":{"language":"Python","code":191,"comment":98,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/unixccompiler.py":{"language":"Python","code":198,"comment":90,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/text_file.py":{"language":"Python","code":203,"comment":43,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/sysconfig.py":{"language":"Python","code":412,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/spawn.py":{"language":"Python","code":92,"comment":10,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py35compat.py":{"language":"Python","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/ccompiler.py":{"language":"Python","code":799,"comment":156,"blank":162},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvccompiler.py":{"language":"Python","code":493,"comment":62,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/bcppcompiler.py":{"language":"Python","code":248,"comment":78,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py38compat.py":{"language":"Python","code":7,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/archive_util.py":{"language":"Python","code":202,"comment":8,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/__init__.py":{"language":"Python","code":9,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/_msvccompiler.py":{"language":"Python","code":414,"comment":60,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/versionpredicate.py":{"language":"Python","code":129,"comment":5,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist.py":{"language":"Python","code":105,"comment":14,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py":{"language":"Python","code":102,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py":{"language":"Python","code":570,"comment":93,"blank":87},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py":{"language":"Python","code":265,"comment":61,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build.py":{"language":"Python","code":107,"comment":22,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py":{"language":"Python","code":435,"comment":59,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/config.py":{"language":"Python","code":273,"comment":21,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/upload.py":{"language":"Python","code":162,"comment":22,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/register.py":{"language":"Python","code":251,"comment":20,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/py37compat.py":{"language":"Python","code":23,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/sdist.py":{"language":"Python","code":373,"comment":47,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/__init__.py":{"language":"Python","code":23,"comment":6,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_scripts.py":{"language":"Python","code":44,"comment":3,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py":{"language":"Python","code":55,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_headers.py":{"language":"Python","code":32,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_lib.py":{"language":"Python","code":140,"comment":36,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install.py":{"language":"Python","code":452,"comment":122,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_data.py":{"language":"Python","code":59,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/clean.py":{"language":"Python","code":59,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/check.py":{"language":"Python","code":118,"comment":7,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_scripts.py":{"language":"Python","code":126,"comment":13,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_ext.py":{"language":"Python","code":500,"comment":153,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_py.py":{"language":"Python","code":277,"comment":81,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_clib.py":{"language":"Python","code":138,"comment":27,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/appdirs.py":{"language":"Python","code":493,"comment":27,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":14,"comment":8,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":68,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":96,"comment":16,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_debug_timing_reporting.sql":{"language":"SQL","code":26,"comment":12,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__main__.py":{"language":"Python","code":14,"comment":13,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":82,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":84,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":92,"comment":20,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":297,"comment":66,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/compat.py":{"language":"Python","code":20,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":43,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":61,"comment":29,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":98,"comment":3,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":111,"comment":42,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":126,"comment":24,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":11,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":35,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":25,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":26,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":135,"comment":0,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":1629,"comment":145,"blank":436},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":825,"comment":108,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":420,"comment":52,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":197,"comment":12,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":21,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":541,"comment":3,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":155,"comment":16,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":49,"comment":15,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":198,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":156,"comment":18,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":31,"comment":15,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":16,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":466,"comment":17,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":38,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":766,"comment":86,"blank":235},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":319,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":114,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1121,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":826,"comment":13,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":675,"comment":2,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":88,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":112,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":583,"comment":14,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1438,"comment":10,"blank":260},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":884,"comment":24,"blank":122},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":122,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":360,"comment":29,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":179,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":377,"comment":41,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2228,"comment":15,"blank":370},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":39,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":246,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":64,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":95,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":124,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":35,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":291,"comment":0,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":152,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":148,"comment":5,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":49,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":131,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":277,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":184,"comment":2,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":300,"comment":5,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":609,"comment":24,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":872,"comment":38,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":207,"comment":4,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":679,"comment":76,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":68,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4609,"comment":252,"blank":954},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":304,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":148,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":790,"comment":21,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":503,"comment":58,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":252,"comment":22,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":538,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1070,"comment":58,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":148,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":85,"comment":2,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":55,"comment":1,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":110,"comment":4,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py":{"language":"Python","code":15,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2472,"comment":168,"blank":657},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":446,"comment":19,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1128,"comment":44,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":851,"comment":102,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":74,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":13,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":524,"comment":87,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1528,"comment":163,"blank":242},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":347,"comment":48,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":847,"comment":74,"blank":156},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":124,"comment":9,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":275,"comment":51,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1108,"comment":80,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":139,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":95,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":11,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":309,"comment":25,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":406,"comment":22,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":416,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":207,"comment":17,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":762,"comment":72,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":148,"comment":7,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":182,"comment":12,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":490,"comment":93,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/legacy.py":{"language":"Python","code":97,"comment":6,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":41,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":527,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":213,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":103,"comment":10,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":75,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":483,"comment":54,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":61,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":553,"comment":15,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":450,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":180,"comment":16,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":94,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":146,"comment":16,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":175,"comment":20,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":559,"comment":27,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":97,"comment":12,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/inject_securetransport.py":{"language":"Python","code":22,"comment":2,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":41,"comment":33,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":60,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/distutils_args.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":152,"comment":6,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":50,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":112,"comment":12,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":102,"comment":44,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":179,"comment":35,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":222,"comment":29,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":592,"comment":61,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":52,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":357,"comment":80,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":439,"comment":22,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":50,"comment":3,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":301,"comment":60,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":844,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":391,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":178,"comment":0,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":89,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":396,"comment":40,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":22,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":28,"comment":19,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":65,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":186,"comment":2,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":26,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":561,"comment":23,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":117,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":269,"comment":34,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":28,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":29,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":226,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":158,"comment":20,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":43,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":115,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":85,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":120,"comment":2,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":148,"comment":7,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":134,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":169,"comment":4,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":405,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":296,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":725,"comment":41,"blank":108},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":30,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":866,"comment":37,"blank":153},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37}} \ No newline at end of file +{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":65,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":20,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":73,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":18,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_report.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":41,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":28,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":213,"comment":2,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Split_Temp.sql":{"language":"SQL","code":7,"comment":2,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/routes.py":{"language":"Python","code":40,"comment":6,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":79,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/storage_location.py":{"language":"Python","code":61,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":248,"comment":9,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":14579,"comment":3389,"blank":2259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":614,"comment":173,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql":{"language":"SQL","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":28,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":58,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql":{"language":"SQL","code":24,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":557,"comment":157,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":738,"comment":201,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":290,"comment":86,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_permutation.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/stock_item.py":{"language":"Python","code":53,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":381,"comment":95,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_calc_product_permutation.sql":{"language":"SQL","code":528,"comment":108,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":37,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/pyvenv.cfg":{"language":"Properties","code":3,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_calc_user.sql":{"language":"SQL","code":425,"comment":87,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/deactivate.bat":{"language":"Batch","code":15,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/Activate.ps1":{"language":"PowerShell","code":104,"comment":105,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/activate.bat":{"language":"Batch","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_calc_user.sql":{"language":"SQL","code":22,"comment":14,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_validate_guid.sql":{"language":"SQL","code":29,"comment":21,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/config.py":{"language":"Python","code":538,"comment":10,"blank":163},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/installer.py":{"language":"Python","code":80,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/lib2to3_ex.py":{"language":"Python","code":54,"comment":2,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/launch.py":{"language":"Python","code":27,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/monkey.py":{"language":"Python","code":124,"comment":14,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/glob.py":{"language":"Python","code":118,"comment":14,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/ssl_support.py":{"language":"Python","code":189,"comment":31,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/sandbox.py":{"language":"Python","code":384,"comment":9,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/py34compat.py":{"language":"Python","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/package_index.py":{"language":"Python","code":902,"comment":63,"blank":181},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/namespaces.py":{"language":"Python","code":86,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/msvc.py":{"language":"Python","code":1466,"comment":64,"blank":297},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extension.py":{"language":"Python","code":38,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/errors.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dist.py":{"language":"Python","code":828,"comment":45,"blank":185},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dep_util.py":{"language":"Python","code":17,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/depends.py":{"language":"Python","code":129,"comment":3,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/archive_util.py":{"language":"Python","code":156,"comment":8,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/build_meta.py":{"language":"Python","code":200,"comment":20,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_rpm.py":{"language":"Python","code":24,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_clib.py":{"language":"Python","code":77,"comment":13,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_egg.py":{"language":"Python","code":362,"comment":17,"blank":78},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/alias.py":{"language":"Python","code":62,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/__init__.py":{"language":"Python","code":174,"comment":13,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/saveopts.py":{"language":"Python","code":14,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/setopt.py":{"language":"Python","code":125,"comment":0,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/sdist.py":{"language":"Python","code":183,"comment":11,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/rotate.py":{"language":"Python","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/register.py":{"language":"Python","code":12,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/py36compat.py":{"language":"Python","code":105,"comment":11,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/launcher%20manifest.xml":{"language":"XML","code":14,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_scripts.py":{"language":"Python","code":55,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_lib.py":{"language":"Python","code":93,"comment":6,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_egg_info.py":{"language":"Python","code":47,"comment":4,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/__init__.py":{"language":"Python","code":93,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/override.py":{"language":"Python","code":1,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/ordered_set.py":{"language":"Python","code":405,"comment":15,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/__init__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload_docs.py":{"language":"Python","code":169,"comment":9,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload.py":{"language":"Python","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/test.py":{"language":"Python","code":219,"comment":9,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install.py":{"language":"Python","code":94,"comment":10,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/egg_info.py":{"language":"Python","code":554,"comment":53,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/__init__.py":{"language":"Python","code":2468,"comment":167,"blank":654},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/dist_info.py":{"language":"Python","code":26,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/easy_install.py":{"language":"Python","code":1804,"comment":147,"blank":340},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/develop.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_py.py":{"language":"Python","code":216,"comment":13,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_imp.py":{"language":"Python","code":66,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_ext.py":{"language":"Python","code":255,"comment":30,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_deprecation_warning.py":{"language":"Python","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/windows_support.py":{"language":"Python","code":21,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/wheel.py":{"language":"Python","code":178,"comment":13,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/version.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/unicode_utils.py":{"language":"Python","code":32,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dep_util.py":{"language":"Python","code":66,"comment":9,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dist.py":{"language":"Python","code":900,"comment":164,"blank":194},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dir_util.py":{"language":"Python","code":156,"comment":18,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/debug.py":{"language":"Python","code":2,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/extension.py":{"language":"Python","code":189,"comment":27,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/errors.py":{"language":"Python","code":75,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py":{"language":"Python","code":237,"comment":111,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/fancy_getopt.py":{"language":"Python","code":308,"comment":78,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/core.py":{"language":"Python","code":170,"comment":25,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/config.py":{"language":"Python","code":103,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/file_util.py":{"language":"Python","code":181,"comment":19,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/log.py":{"language":"Python","code":57,"comment":4,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvc9compiler.py":{"language":"Python","code":584,"comment":107,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/filelist.py":{"language":"Python","code":243,"comment":28,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cmd.py":{"language":"Python","code":275,"comment":71,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/util.py":{"language":"Python","code":404,"comment":69,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/version.py":{"language":"Python","code":191,"comment":98,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/unixccompiler.py":{"language":"Python","code":198,"comment":90,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/text_file.py":{"language":"Python","code":203,"comment":43,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/sysconfig.py":{"language":"Python","code":412,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/spawn.py":{"language":"Python","code":92,"comment":10,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py35compat.py":{"language":"Python","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/ccompiler.py":{"language":"Python","code":799,"comment":156,"blank":162},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvccompiler.py":{"language":"Python","code":493,"comment":62,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/bcppcompiler.py":{"language":"Python","code":248,"comment":78,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py38compat.py":{"language":"Python","code":7,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/archive_util.py":{"language":"Python","code":202,"comment":8,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/__init__.py":{"language":"Python","code":9,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/_msvccompiler.py":{"language":"Python","code":414,"comment":60,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/versionpredicate.py":{"language":"Python","code":129,"comment":5,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist.py":{"language":"Python","code":105,"comment":14,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py":{"language":"Python","code":102,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py":{"language":"Python","code":570,"comment":93,"blank":87},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py":{"language":"Python","code":265,"comment":61,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build.py":{"language":"Python","code":107,"comment":22,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py":{"language":"Python","code":435,"comment":59,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/config.py":{"language":"Python","code":273,"comment":21,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/upload.py":{"language":"Python","code":162,"comment":22,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/register.py":{"language":"Python","code":251,"comment":20,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/py37compat.py":{"language":"Python","code":23,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/sdist.py":{"language":"Python","code":373,"comment":47,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/__init__.py":{"language":"Python","code":23,"comment":6,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_scripts.py":{"language":"Python","code":44,"comment":3,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py":{"language":"Python","code":55,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_headers.py":{"language":"Python","code":32,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_lib.py":{"language":"Python","code":140,"comment":36,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install.py":{"language":"Python","code":452,"comment":122,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_data.py":{"language":"Python","code":59,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/clean.py":{"language":"Python","code":59,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/check.py":{"language":"Python","code":118,"comment":7,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_scripts.py":{"language":"Python","code":126,"comment":13,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_ext.py":{"language":"Python","code":500,"comment":153,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_py.py":{"language":"Python","code":277,"comment":81,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_clib.py":{"language":"Python","code":138,"comment":27,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/appdirs.py":{"language":"Python","code":493,"comment":27,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":14,"comment":8,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":68,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":96,"comment":16,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_debug_timing_reporting.sql":{"language":"SQL","code":26,"comment":12,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__main__.py":{"language":"Python","code":14,"comment":13,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":82,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":84,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":92,"comment":20,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":297,"comment":66,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/compat.py":{"language":"Python","code":20,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":43,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":61,"comment":29,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":98,"comment":3,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":111,"comment":42,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":126,"comment":24,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":11,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":35,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":25,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":26,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":135,"comment":0,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":1629,"comment":145,"blank":436},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":825,"comment":108,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":420,"comment":52,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":197,"comment":12,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":21,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":541,"comment":3,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":155,"comment":16,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":49,"comment":15,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":198,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":156,"comment":18,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":31,"comment":15,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":16,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":466,"comment":17,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":38,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":766,"comment":86,"blank":235},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":319,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":114,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1121,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":826,"comment":13,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":675,"comment":2,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":88,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":112,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":583,"comment":14,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1438,"comment":10,"blank":260},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":884,"comment":24,"blank":122},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":122,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":360,"comment":29,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":179,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":377,"comment":41,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2228,"comment":15,"blank":370},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":39,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":246,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":64,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":95,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":124,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":35,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":291,"comment":0,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":152,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":148,"comment":5,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":49,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":131,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":277,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":184,"comment":2,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":300,"comment":5,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":609,"comment":24,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":872,"comment":38,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":207,"comment":4,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":679,"comment":76,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":68,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4609,"comment":252,"blank":954},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":304,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":148,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":790,"comment":21,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":503,"comment":58,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":252,"comment":22,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":538,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1070,"comment":58,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":148,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":85,"comment":2,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":55,"comment":1,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":110,"comment":4,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py":{"language":"Python","code":15,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2472,"comment":168,"blank":657},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":446,"comment":19,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1128,"comment":44,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":851,"comment":102,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":74,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":13,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":524,"comment":87,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1528,"comment":163,"blank":242},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":347,"comment":48,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":847,"comment":74,"blank":156},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":124,"comment":9,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":275,"comment":51,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1108,"comment":80,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":139,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":95,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":11,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":309,"comment":25,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":406,"comment":22,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":416,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":207,"comment":17,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":762,"comment":72,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":148,"comment":7,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":182,"comment":12,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":490,"comment":93,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/legacy.py":{"language":"Python","code":97,"comment":6,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":41,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":527,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":213,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":103,"comment":10,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":75,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":483,"comment":54,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":61,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":553,"comment":15,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":450,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":180,"comment":16,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":94,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":146,"comment":16,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":175,"comment":20,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":559,"comment":27,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":97,"comment":12,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/inject_securetransport.py":{"language":"Python","code":22,"comment":2,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":41,"comment":33,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":60,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/distutils_args.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":152,"comment":6,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":50,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":112,"comment":12,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":102,"comment":44,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":179,"comment":35,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":222,"comment":29,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":592,"comment":61,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":52,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":357,"comment":80,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":439,"comment":22,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":50,"comment":3,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":301,"comment":60,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":844,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":391,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":178,"comment":0,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":89,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":396,"comment":40,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":22,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":28,"comment":19,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":65,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":186,"comment":2,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":26,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":561,"comment":23,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":117,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":269,"comment":34,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":28,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":29,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":226,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":158,"comment":20,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":43,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":115,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":85,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":120,"comment":2,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":148,"comment":7,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":134,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":169,"comment":4,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":405,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":296,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":725,"comment":41,"blank":108},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":30,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":866,"comment":37,"blank":153},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37}} \ No newline at end of file diff --git a/.VSCodeCounter/2024-10-05_01-19-04/details.md b/.VSCodeCounter/2024-10-05_01-19-04/details.md index 8c9daec4..644a38d3 100644 --- a/.VSCodeCounter/2024-10-05_01-19-04/details.md +++ b/.VSCodeCounter/2024-10-05_01-19-04/details.md @@ -2124,7 +2124,7 @@ Total : 2192 files, 564177 codes, 49307 comments, 82958 blanks, all 696442 line | [static/js/components/common/temporary/overlay_error.js](/static/js/components/common/temporary/overlay_error.js) | JavaScript | 17 | 0 | 2 | 19 | | [static/js/components/common/video.js](/static/js/components/common/video.js) | JavaScript | 10 | 0 | 4 | 14 | | [static/js/dom.js](/static/js/dom.js) | JavaScript | 169 | 18 | 11 | 198 | -| [static/js/lib/business_objects.js](/static/js/lib/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | +| [static/js/lib/business_objects/business_objects.js](/static/js/lib/business_objects/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | | [static/js/lib/common.js](/static/js/lib/common.js) | JavaScript | 63 | 3 | 19 | 85 | | [static/js/lib/constants.js](/static/js/lib/constants.js) | JavaScript | 4 | 1 | 2 | 7 | | [static/js/lib/events.js](/static/js/lib/events.js) | JavaScript | 9 | 0 | 1 | 10 | diff --git a/.VSCodeCounter/2024-10-05_01-19-04/results.json b/.VSCodeCounter/2024-10-05_01-19-04/results.json index 432ff801..26f1345d 100644 --- a/.VSCodeCounter/2024-10-05_01-19-04/results.json +++ b/.VSCodeCounter/2024-10-05_01-19-04/results.json @@ -1 +1 @@ -{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Split_Temp.sql":{"language":"SQL","code":7,"comment":2,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":28,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":213,"comment":2,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":18,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":41,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql":{"language":"SQL","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":28,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql":{"language":"SQL","code":24,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_calc_product_permutation.sql":{"language":"SQL","code":528,"comment":108,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_permutation.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":381,"comment":95,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":290,"comment":86,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_calc_user.sql":{"language":"SQL","code":22,"comment":14,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_calc_user.sql":{"language":"SQL","code":425,"comment":87,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_validate_guid.sql":{"language":"SQL","code":29,"comment":21,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":557,"comment":157,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":14,"comment":8,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":738,"comment":201,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":68,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_debug_timing_reporting.sql":{"language":"SQL","code":26,"comment":12,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_report.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":82,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/routes.py":{"language":"Python","code":40,"comment":6,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":14579,"comment":3389,"blank":2259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":20,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":96,"comment":16,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/stock_item.py":{"language":"Python","code":53,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":37,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":58,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":73,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/pyvenv.cfg":{"language":"Properties","code":3,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":139,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/deactivate.bat":{"language":"Batch","code":15,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/config.py":{"language":"Python","code":538,"comment":10,"blank":163},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/depends.py":{"language":"Python","code":129,"comment":3,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/build_meta.py":{"language":"Python","code":200,"comment":20,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/archive_util.py":{"language":"Python","code":156,"comment":8,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dep_util.py":{"language":"Python","code":17,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dist.py":{"language":"Python","code":828,"comment":45,"blank":185},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/override.py":{"language":"Python","code":1,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/__init__.py":{"language":"Python","code":93,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/monkey.py":{"language":"Python","code":124,"comment":14,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/msvc.py":{"language":"Python","code":1466,"comment":64,"blank":297},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_ext.py":{"language":"Python","code":255,"comment":30,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_py.py":{"language":"Python","code":216,"comment":13,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":553,"comment":15,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/develop.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":207,"comment":17,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_clib.py":{"language":"Python","code":77,"comment":13,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_rpm.py":{"language":"Python","code":24,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/__init__.py":{"language":"Python","code":174,"comment":13,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_egg.py":{"language":"Python","code":362,"comment":17,"blank":78},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/dist_info.py":{"language":"Python","code":26,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_imp.py":{"language":"Python","code":66,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/saveopts.py":{"language":"Python","code":14,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/rotate.py":{"language":"Python","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/sdist.py":{"language":"Python","code":183,"comment":11,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/register.py":{"language":"Python","code":12,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/py36compat.py":{"language":"Python","code":105,"comment":11,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/launcher%20manifest.xml":{"language":"XML","code":14,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_scripts.py":{"language":"Python","code":55,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_lib.py":{"language":"Python","code":93,"comment":6,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_egg_info.py":{"language":"Python","code":47,"comment":4,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install.py":{"language":"Python","code":94,"comment":10,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/egg_info.py":{"language":"Python","code":554,"comment":53,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/ccompiler.py":{"language":"Python","code":799,"comment":156,"blank":162},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cmd.py":{"language":"Python","code":275,"comment":71,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/bcppcompiler.py":{"language":"Python","code":248,"comment":78,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/archive_util.py":{"language":"Python","code":202,"comment":8,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/__init__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvccompiler.py":{"language":"Python","code":493,"comment":62,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py35compat.py":{"language":"Python","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvc9compiler.py":{"language":"Python","code":584,"comment":107,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/log.py":{"language":"Python","code":57,"comment":4,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/file_util.py":{"language":"Python","code":181,"comment":19,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/filelist.py":{"language":"Python","code":243,"comment":28,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/fancy_getopt.py":{"language":"Python","code":308,"comment":78,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/extension.py":{"language":"Python","code":189,"comment":27,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/errors.py":{"language":"Python","code":75,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py38compat.py":{"language":"Python","code":7,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dir_util.py":{"language":"Python","code":156,"comment":18,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dist.py":{"language":"Python","code":900,"comment":164,"blank":194},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/debug.py":{"language":"Python","code":2,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dep_util.py":{"language":"Python","code":66,"comment":9,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py":{"language":"Python","code":237,"comment":111,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/core.py":{"language":"Python","code":170,"comment":25,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/config.py":{"language":"Python","code":103,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload_docs.py":{"language":"Python","code":169,"comment":9,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/spawn.py":{"language":"Python","code":92,"comment":10,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/check.py":{"language":"Python","code":118,"comment":7,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/config.py":{"language":"Python","code":273,"comment":21,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/clean.py":{"language":"Python","code":59,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_scripts.py":{"language":"Python","code":126,"comment":13,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/version.py":{"language":"Python","code":191,"comment":98,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install.py":{"language":"Python","code":452,"comment":122,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_py.py":{"language":"Python","code":277,"comment":81,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/util.py":{"language":"Python","code":404,"comment":69,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_ext.py":{"language":"Python","code":500,"comment":153,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_clib.py":{"language":"Python","code":138,"comment":27,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_data.py":{"language":"Python","code":59,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build.py":{"language":"Python","code":107,"comment":22,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py":{"language":"Python","code":265,"comment":61,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/unixccompiler.py":{"language":"Python","code":198,"comment":90,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py":{"language":"Python","code":435,"comment":59,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py":{"language":"Python","code":570,"comment":93,"blank":87},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/text_file.py":{"language":"Python","code":203,"comment":43,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py":{"language":"Python","code":102,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist.py":{"language":"Python","code":105,"comment":14,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/sysconfig.py":{"language":"Python","code":412,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py":{"language":"Python","code":55,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":148,"comment":7,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload.py":{"language":"Python","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/ordered_set.py":{"language":"Python","code":405,"comment":15,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":182,"comment":12,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/test.py":{"language":"Python","code":219,"comment":9,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/setopt.py":{"language":"Python","code":125,"comment":0,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":95,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_headers.py":{"language":"Python","code":32,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/easy_install.py":{"language":"Python","code":1804,"comment":147,"blank":340},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/versionpredicate.py":{"language":"Python","code":129,"comment":5,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/alias.py":{"language":"Python","code":62,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_deprecation_warning.py":{"language":"Python","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_lib.py":{"language":"Python","code":140,"comment":36,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/windows_support.py":{"language":"Python","code":21,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/wheel.py":{"language":"Python","code":178,"comment":13,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/version.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/unicode_utils.py":{"language":"Python","code":32,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/__init__.py":{"language":"Python","code":23,"comment":6,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/upload.py":{"language":"Python","code":162,"comment":22,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/sdist.py":{"language":"Python","code":373,"comment":47,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/__init__.py":{"language":"Python","code":9,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/py37compat.py":{"language":"Python","code":23,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/register.py":{"language":"Python","code":251,"comment":20,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/_msvccompiler.py":{"language":"Python","code":414,"comment":60,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_scripts.py":{"language":"Python","code":44,"comment":3,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":11,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":309,"comment":25,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":180,"comment":16,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/ssl_support.py":{"language":"Python","code":189,"comment":31,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":559,"comment":27,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":146,"comment":16,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/inject_securetransport.py":{"language":"Python","code":22,"comment":2,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":97,"comment":12,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":41,"comment":33,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":94,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":175,"comment":20,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":60,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":222,"comment":29,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":112,"comment":12,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":50,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":179,"comment":35,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":592,"comment":61,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":439,"comment":22,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":450,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/distutils_args.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":152,"comment":6,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":102,"comment":44,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/sandbox.py":{"language":"Python","code":384,"comment":9,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/py34compat.py":{"language":"Python","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/namespaces.py":{"language":"Python","code":86,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/package_index.py":{"language":"Python","code":902,"comment":63,"blank":181},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":416,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":762,"comment":72,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":406,"comment":22,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/lib2to3_ex.py":{"language":"Python","code":54,"comment":2,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":396,"comment":40,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":89,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":28,"comment":19,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":65,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":186,"comment":2,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":26,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":52,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":490,"comment":93,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":357,"comment":80,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":22,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":213,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":103,"comment":10,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/legacy.py":{"language":"Python","code":97,"comment":6,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":527,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":41,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":50,"comment":3,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":301,"comment":60,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":75,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":483,"comment":54,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":61,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/launch.py":{"language":"Python","code":27,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/installer.py":{"language":"Python","code":80,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":561,"comment":23,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":391,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":269,"comment":34,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/glob.py":{"language":"Python","code":118,"comment":14,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":178,"comment":0,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":844,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":29,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":28,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":117,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extension.py":{"language":"Python","code":38,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/errors.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__main__.py":{"language":"Python","code":14,"comment":13,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":296,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":169,"comment":4,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":725,"comment":41,"blank":108},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":377,"comment":41,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":122,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":39,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":360,"comment":29,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":155,"comment":16,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":49,"comment":15,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":156,"comment":18,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":31,"comment":15,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":16,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":21,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":84,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":1629,"comment":145,"blank":436},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":541,"comment":3,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2228,"comment":15,"blank":370},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":198,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":319,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":466,"comment":17,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":179,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":135,"comment":0,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":114,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1438,"comment":10,"blank":260},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":884,"comment":24,"blank":122},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":197,"comment":12,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":112,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":38,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":766,"comment":86,"blank":235},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":825,"comment":108,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":420,"comment":52,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":583,"comment":14,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":609,"comment":24,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":872,"comment":38,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":207,"comment":4,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":300,"comment":5,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":55,"comment":1,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":277,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":184,"comment":2,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":304,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":148,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4609,"comment":252,"blank":954},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":88,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1121,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":503,"comment":58,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":826,"comment":13,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":675,"comment":2,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":124,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":64,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":246,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":85,"comment":2,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":252,"comment":22,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":538,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1070,"comment":58,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":679,"comment":76,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":68,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":110,"comment":4,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2472,"comment":168,"blank":657},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":35,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py":{"language":"Python","code":15,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":291,"comment":0,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":152,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":148,"comment":5,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":49,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":148,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":131,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":95,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":790,"comment":21,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":405,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/compat.py":{"language":"Python","code":20,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":35,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":11,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":25,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":111,"comment":42,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":98,"comment":3,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":61,"comment":29,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":297,"comment":66,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":26,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":126,"comment":24,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":43,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":13,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":74,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":92,"comment":20,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":524,"comment":87,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1528,"comment":163,"blank":242},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":347,"comment":48,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":847,"comment":74,"blank":156},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":124,"comment":9,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":275,"comment":51,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":446,"comment":19,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1108,"comment":80,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":30,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1128,"comment":44,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":851,"comment":102,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":866,"comment":37,"blank":153},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":134,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":85,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":120,"comment":2,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":148,"comment":7,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":226,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":115,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":43,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":158,"comment":20,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/Activate.ps1":{"language":"PowerShell","code":104,"comment":105,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/activate.bat":{"language":"Batch","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/__init__.py":{"language":"Python","code":2468,"comment":167,"blank":654},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/appdirs.py":{"language":"Python","code":493,"comment":27,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":65,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":79,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/storage_location.py":{"language":"Python","code":61,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":248,"comment":9,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":614,"comment":173,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12}} \ No newline at end of file +{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Split_Temp.sql":{"language":"SQL","code":7,"comment":2,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":28,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":213,"comment":2,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":18,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":41,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql":{"language":"SQL","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":28,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql":{"language":"SQL","code":24,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_calc_product_permutation.sql":{"language":"SQL","code":528,"comment":108,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_permutation.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":381,"comment":95,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":290,"comment":86,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_calc_user.sql":{"language":"SQL","code":22,"comment":14,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_calc_user.sql":{"language":"SQL","code":425,"comment":87,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_validate_guid.sql":{"language":"SQL","code":29,"comment":21,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":557,"comment":157,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":14,"comment":8,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":738,"comment":201,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":68,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_debug_timing_reporting.sql":{"language":"SQL","code":26,"comment":12,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_report.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":82,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/routes.py":{"language":"Python","code":40,"comment":6,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":14579,"comment":3389,"blank":2259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":20,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":96,"comment":16,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/stock_item.py":{"language":"Python","code":53,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":37,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":58,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":73,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/pyvenv.cfg":{"language":"Properties","code":3,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":139,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/deactivate.bat":{"language":"Batch","code":15,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/config.py":{"language":"Python","code":538,"comment":10,"blank":163},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/depends.py":{"language":"Python","code":129,"comment":3,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/build_meta.py":{"language":"Python","code":200,"comment":20,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/archive_util.py":{"language":"Python","code":156,"comment":8,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dep_util.py":{"language":"Python","code":17,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dist.py":{"language":"Python","code":828,"comment":45,"blank":185},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/override.py":{"language":"Python","code":1,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/__init__.py":{"language":"Python","code":93,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/monkey.py":{"language":"Python","code":124,"comment":14,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/msvc.py":{"language":"Python","code":1466,"comment":64,"blank":297},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_ext.py":{"language":"Python","code":255,"comment":30,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_py.py":{"language":"Python","code":216,"comment":13,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":553,"comment":15,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/develop.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":207,"comment":17,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_clib.py":{"language":"Python","code":77,"comment":13,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_rpm.py":{"language":"Python","code":24,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/__init__.py":{"language":"Python","code":174,"comment":13,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_egg.py":{"language":"Python","code":362,"comment":17,"blank":78},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/dist_info.py":{"language":"Python","code":26,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_imp.py":{"language":"Python","code":66,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/saveopts.py":{"language":"Python","code":14,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/rotate.py":{"language":"Python","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/sdist.py":{"language":"Python","code":183,"comment":11,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/register.py":{"language":"Python","code":12,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/py36compat.py":{"language":"Python","code":105,"comment":11,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/launcher%20manifest.xml":{"language":"XML","code":14,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_scripts.py":{"language":"Python","code":55,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_lib.py":{"language":"Python","code":93,"comment":6,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_egg_info.py":{"language":"Python","code":47,"comment":4,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install.py":{"language":"Python","code":94,"comment":10,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/egg_info.py":{"language":"Python","code":554,"comment":53,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/ccompiler.py":{"language":"Python","code":799,"comment":156,"blank":162},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cmd.py":{"language":"Python","code":275,"comment":71,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/bcppcompiler.py":{"language":"Python","code":248,"comment":78,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/archive_util.py":{"language":"Python","code":202,"comment":8,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/__init__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvccompiler.py":{"language":"Python","code":493,"comment":62,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py35compat.py":{"language":"Python","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvc9compiler.py":{"language":"Python","code":584,"comment":107,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/log.py":{"language":"Python","code":57,"comment":4,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/file_util.py":{"language":"Python","code":181,"comment":19,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/filelist.py":{"language":"Python","code":243,"comment":28,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/fancy_getopt.py":{"language":"Python","code":308,"comment":78,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/extension.py":{"language":"Python","code":189,"comment":27,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/errors.py":{"language":"Python","code":75,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py38compat.py":{"language":"Python","code":7,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dir_util.py":{"language":"Python","code":156,"comment":18,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dist.py":{"language":"Python","code":900,"comment":164,"blank":194},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/debug.py":{"language":"Python","code":2,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dep_util.py":{"language":"Python","code":66,"comment":9,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py":{"language":"Python","code":237,"comment":111,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/core.py":{"language":"Python","code":170,"comment":25,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/config.py":{"language":"Python","code":103,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload_docs.py":{"language":"Python","code":169,"comment":9,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/spawn.py":{"language":"Python","code":92,"comment":10,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/check.py":{"language":"Python","code":118,"comment":7,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/config.py":{"language":"Python","code":273,"comment":21,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/clean.py":{"language":"Python","code":59,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_scripts.py":{"language":"Python","code":126,"comment":13,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/version.py":{"language":"Python","code":191,"comment":98,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install.py":{"language":"Python","code":452,"comment":122,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_py.py":{"language":"Python","code":277,"comment":81,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/util.py":{"language":"Python","code":404,"comment":69,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_ext.py":{"language":"Python","code":500,"comment":153,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_clib.py":{"language":"Python","code":138,"comment":27,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_data.py":{"language":"Python","code":59,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build.py":{"language":"Python","code":107,"comment":22,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py":{"language":"Python","code":265,"comment":61,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/unixccompiler.py":{"language":"Python","code":198,"comment":90,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py":{"language":"Python","code":435,"comment":59,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py":{"language":"Python","code":570,"comment":93,"blank":87},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/text_file.py":{"language":"Python","code":203,"comment":43,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py":{"language":"Python","code":102,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist.py":{"language":"Python","code":105,"comment":14,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/sysconfig.py":{"language":"Python","code":412,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py":{"language":"Python","code":55,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":148,"comment":7,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload.py":{"language":"Python","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/ordered_set.py":{"language":"Python","code":405,"comment":15,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":182,"comment":12,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/test.py":{"language":"Python","code":219,"comment":9,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/setopt.py":{"language":"Python","code":125,"comment":0,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":95,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_headers.py":{"language":"Python","code":32,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/easy_install.py":{"language":"Python","code":1804,"comment":147,"blank":340},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/versionpredicate.py":{"language":"Python","code":129,"comment":5,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/alias.py":{"language":"Python","code":62,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_deprecation_warning.py":{"language":"Python","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_lib.py":{"language":"Python","code":140,"comment":36,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/windows_support.py":{"language":"Python","code":21,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/wheel.py":{"language":"Python","code":178,"comment":13,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/version.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/unicode_utils.py":{"language":"Python","code":32,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/__init__.py":{"language":"Python","code":23,"comment":6,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/upload.py":{"language":"Python","code":162,"comment":22,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/sdist.py":{"language":"Python","code":373,"comment":47,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/__init__.py":{"language":"Python","code":9,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/py37compat.py":{"language":"Python","code":23,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/register.py":{"language":"Python","code":251,"comment":20,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/_msvccompiler.py":{"language":"Python","code":414,"comment":60,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_scripts.py":{"language":"Python","code":44,"comment":3,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":11,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":309,"comment":25,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":180,"comment":16,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/ssl_support.py":{"language":"Python","code":189,"comment":31,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":559,"comment":27,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":146,"comment":16,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/inject_securetransport.py":{"language":"Python","code":22,"comment":2,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":97,"comment":12,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":41,"comment":33,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":94,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":175,"comment":20,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":60,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":222,"comment":29,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":112,"comment":12,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":50,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":179,"comment":35,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":592,"comment":61,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":439,"comment":22,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":450,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/distutils_args.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":152,"comment":6,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":102,"comment":44,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/sandbox.py":{"language":"Python","code":384,"comment":9,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/py34compat.py":{"language":"Python","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/namespaces.py":{"language":"Python","code":86,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/package_index.py":{"language":"Python","code":902,"comment":63,"blank":181},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":416,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":762,"comment":72,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":406,"comment":22,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/lib2to3_ex.py":{"language":"Python","code":54,"comment":2,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":396,"comment":40,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":89,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":28,"comment":19,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":65,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":186,"comment":2,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":26,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":52,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":490,"comment":93,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":357,"comment":80,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":22,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":213,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":103,"comment":10,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/legacy.py":{"language":"Python","code":97,"comment":6,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":527,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":41,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":50,"comment":3,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":301,"comment":60,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":75,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":483,"comment":54,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":61,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/launch.py":{"language":"Python","code":27,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/installer.py":{"language":"Python","code":80,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":561,"comment":23,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":391,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":269,"comment":34,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/glob.py":{"language":"Python","code":118,"comment":14,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":178,"comment":0,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":844,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":29,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":28,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":117,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extension.py":{"language":"Python","code":38,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/errors.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__main__.py":{"language":"Python","code":14,"comment":13,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":296,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":169,"comment":4,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":725,"comment":41,"blank":108},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":377,"comment":41,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":122,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":39,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":360,"comment":29,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":155,"comment":16,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":49,"comment":15,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":156,"comment":18,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":31,"comment":15,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":16,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":21,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":84,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":1629,"comment":145,"blank":436},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":541,"comment":3,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2228,"comment":15,"blank":370},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":198,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":319,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":466,"comment":17,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":179,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":135,"comment":0,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":114,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1438,"comment":10,"blank":260},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":884,"comment":24,"blank":122},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":197,"comment":12,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":112,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":38,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":766,"comment":86,"blank":235},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":825,"comment":108,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":420,"comment":52,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":583,"comment":14,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":609,"comment":24,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":872,"comment":38,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":207,"comment":4,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":300,"comment":5,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":55,"comment":1,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":277,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":184,"comment":2,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":304,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":148,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4609,"comment":252,"blank":954},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":88,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1121,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":503,"comment":58,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":826,"comment":13,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":675,"comment":2,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":124,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":64,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":246,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":85,"comment":2,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":252,"comment":22,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":538,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1070,"comment":58,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":679,"comment":76,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":68,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":110,"comment":4,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2472,"comment":168,"blank":657},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":35,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py":{"language":"Python","code":15,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":291,"comment":0,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":152,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":148,"comment":5,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":49,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":148,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":131,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":95,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":790,"comment":21,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":405,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/compat.py":{"language":"Python","code":20,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":35,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":11,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":25,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":111,"comment":42,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":98,"comment":3,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":61,"comment":29,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":297,"comment":66,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":26,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":126,"comment":24,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":43,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":13,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":74,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":92,"comment":20,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":524,"comment":87,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1528,"comment":163,"blank":242},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":347,"comment":48,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":847,"comment":74,"blank":156},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":124,"comment":9,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":275,"comment":51,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":446,"comment":19,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1108,"comment":80,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":30,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1128,"comment":44,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":851,"comment":102,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":866,"comment":37,"blank":153},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":134,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":85,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":120,"comment":2,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":148,"comment":7,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":226,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":115,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":43,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":158,"comment":20,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/Activate.ps1":{"language":"PowerShell","code":104,"comment":105,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/activate.bat":{"language":"Batch","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/__init__.py":{"language":"Python","code":2468,"comment":167,"blank":654},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/appdirs.py":{"language":"Python","code":493,"comment":27,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":65,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":79,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/storage_location.py":{"language":"Python","code":61,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":248,"comment":9,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":614,"comment":173,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12}} \ No newline at end of file diff --git a/.VSCodeCounter/2024-10-05_01-19-34/details.md b/.VSCodeCounter/2024-10-05_01-19-34/details.md index 2c4040ac..b2bba98f 100644 --- a/.VSCodeCounter/2024-10-05_01-19-34/details.md +++ b/.VSCodeCounter/2024-10-05_01-19-34/details.md @@ -2124,7 +2124,7 @@ Total : 2192 files, 564177 codes, 49307 comments, 82958 blanks, all 696442 line | [static/js/components/common/temporary/overlay_error.js](/static/js/components/common/temporary/overlay_error.js) | JavaScript | 17 | 0 | 2 | 19 | | [static/js/components/common/video.js](/static/js/components/common/video.js) | JavaScript | 10 | 0 | 4 | 14 | | [static/js/dom.js](/static/js/dom.js) | JavaScript | 169 | 18 | 11 | 198 | -| [static/js/lib/business_objects.js](/static/js/lib/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | +| [static/js/lib/business_objects/business_objects.js](/static/js/lib/business_objects/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | | [static/js/lib/common.js](/static/js/lib/common.js) | JavaScript | 63 | 3 | 19 | 85 | | [static/js/lib/constants.js](/static/js/lib/constants.js) | JavaScript | 4 | 1 | 2 | 7 | | [static/js/lib/events.js](/static/js/lib/events.js) | JavaScript | 9 | 0 | 1 | 10 | diff --git a/.VSCodeCounter/2024-10-05_01-19-34/results.json b/.VSCodeCounter/2024-10-05_01-19-34/results.json index d34a1cc6..535b8849 100644 --- a/.VSCodeCounter/2024-10-05_01-19-34/results.json +++ b/.VSCodeCounter/2024-10-05_01-19-34/results.json @@ -1 +1 @@ -{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":20,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":73,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":82,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_report.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Split_Temp.sql":{"language":"SQL","code":7,"comment":2,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":18,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":41,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":28,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":213,"comment":2,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql":{"language":"SQL","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_calc_user.sql":{"language":"SQL","code":22,"comment":14,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_calc_user.sql":{"language":"SQL","code":425,"comment":87,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_validate_guid.sql":{"language":"SQL","code":29,"comment":21,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":14,"comment":8,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":68,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_debug_timing_reporting.sql":{"language":"SQL","code":26,"comment":12,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql":{"language":"SQL","code":24,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":28,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":738,"comment":201,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":557,"comment":157,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":290,"comment":86,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_permutation.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":381,"comment":95,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_calc_product_permutation.sql":{"language":"SQL","code":528,"comment":108,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":14579,"comment":3389,"blank":2259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/routes.py":{"language":"Python","code":40,"comment":6,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/pyvenv.cfg":{"language":"Properties","code":3,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/activate.bat":{"language":"Batch","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/deactivate.bat":{"language":"Batch","code":15,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/Activate.ps1":{"language":"PowerShell","code":104,"comment":105,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":139,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/__init__.py":{"language":"Python","code":93,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/override.py":{"language":"Python","code":1,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dep_util.py":{"language":"Python","code":17,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dist.py":{"language":"Python","code":828,"comment":45,"blank":185},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/errors.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/depends.py":{"language":"Python","code":129,"comment":3,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/config.py":{"language":"Python","code":538,"comment":10,"blank":163},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/installer.py":{"language":"Python","code":80,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__main__.py":{"language":"Python","code":14,"comment":13,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/lib2to3_ex.py":{"language":"Python","code":54,"comment":2,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":37,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/sandbox.py":{"language":"Python","code":384,"comment":9,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/ssl_support.py":{"language":"Python","code":189,"comment":31,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/namespaces.py":{"language":"Python","code":86,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/py34compat.py":{"language":"Python","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/package_index.py":{"language":"Python","code":902,"comment":63,"blank":181},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/stock_item.py":{"language":"Python","code":53,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/monkey.py":{"language":"Python","code":124,"comment":14,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/msvc.py":{"language":"Python","code":1466,"comment":64,"blank":297},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/launch.py":{"language":"Python","code":27,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/glob.py":{"language":"Python","code":118,"comment":14,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extension.py":{"language":"Python","code":38,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/__init__.py":{"language":"Python","code":2468,"comment":167,"blank":654},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_clib.py":{"language":"Python","code":77,"comment":13,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/develop.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/compat.py":{"language":"Python","code":20,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":466,"comment":17,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/dist_info.py":{"language":"Python","code":26,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":297,"comment":66,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_py.py":{"language":"Python","code":216,"comment":13,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_ext.py":{"language":"Python","code":255,"comment":30,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":61,"comment":29,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_rpm.py":{"language":"Python","code":24,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":43,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":92,"comment":20,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/easy_install.py":{"language":"Python","code":1804,"comment":147,"blank":340},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_egg.py":{"language":"Python","code":362,"comment":17,"blank":78},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/alias.py":{"language":"Python","code":62,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_egg_info.py":{"language":"Python","code":47,"comment":4,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":25,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install.py":{"language":"Python","code":94,"comment":10,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":111,"comment":42,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/egg_info.py":{"language":"Python","code":554,"comment":53,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":35,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":98,"comment":3,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/appdirs.py":{"language":"Python","code":493,"comment":27,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":11,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_lib.py":{"language":"Python","code":93,"comment":6,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":309,"comment":25,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_scripts.py":{"language":"Python","code":55,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/test.py":{"language":"Python","code":219,"comment":9,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":11,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/setopt.py":{"language":"Python","code":125,"comment":0,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/sdist.py":{"language":"Python","code":183,"comment":11,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/saveopts.py":{"language":"Python","code":14,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/rotate.py":{"language":"Python","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload.py":{"language":"Python","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":26,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":89,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":396,"comment":40,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":28,"comment":19,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":65,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":186,"comment":2,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":26,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":38,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":126,"comment":24,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":766,"comment":86,"blank":235},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/__init__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload_docs.py":{"language":"Python","code":169,"comment":9,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":114,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/register.py":{"language":"Python","code":12,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/py36compat.py":{"language":"Python","code":105,"comment":11,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/launcher%20manifest.xml":{"language":"XML","code":14,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":180,"comment":16,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":450,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":222,"comment":29,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":112,"comment":12,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":179,"comment":35,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":50,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":592,"comment":61,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":439,"comment":22,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":102,"comment":44,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":84,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":61,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":561,"comment":23,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":60,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":762,"comment":72,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/distutils_args.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":152,"comment":6,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":416,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":406,"comment":22,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":175,"comment":20,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":146,"comment":16,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":94,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":559,"comment":27,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/inject_securetransport.py":{"language":"Python","code":22,"comment":2,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":97,"comment":12,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":490,"comment":93,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":213,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":41,"comment":33,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":103,"comment":10,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":178,"comment":0,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":29,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":844,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":22,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":391,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":301,"comment":60,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":50,"comment":3,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":28,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":52,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":357,"comment":80,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":182,"comment":12,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":148,"comment":7,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/legacy.py":{"language":"Python","code":97,"comment":6,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":527,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":41,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":117,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":95,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":207,"comment":17,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":75,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":553,"comment":15,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":483,"comment":54,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":269,"comment":34,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":1629,"comment":145,"blank":436},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":43,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":158,"comment":20,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":134,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":169,"comment":4,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":866,"comment":37,"blank":153},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":156,"comment":18,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":135,"comment":0,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":30,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":31,"comment":15,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":21,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":16,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":296,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":725,"comment":41,"blank":108},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":49,"comment":15,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":377,"comment":41,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2228,"comment":15,"blank":370},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":541,"comment":3,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":179,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":198,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":39,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":155,"comment":16,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":405,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":825,"comment":108,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":420,"comment":52,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":85,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":120,"comment":2,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":148,"comment":7,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":226,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":115,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":112,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1438,"comment":10,"blank":260},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":884,"comment":24,"blank":122},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":826,"comment":13,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":675,"comment":2,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":197,"comment":12,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":319,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1121,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":88,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":583,"comment":14,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/__init__.py":{"language":"Python","code":174,"comment":13,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":122,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":360,"comment":29,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":64,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":246,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":124,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":503,"comment":58,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":277,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":184,"comment":2,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":679,"comment":76,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":300,"comment":5,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":68,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":609,"comment":24,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":872,"comment":38,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":207,"comment":4,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":252,"comment":22,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":538,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":85,"comment":2,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":304,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1070,"comment":58,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4609,"comment":252,"blank":954},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":148,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":55,"comment":1,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":148,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":790,"comment":21,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_imp.py":{"language":"Python","code":66,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":110,"comment":4,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_deprecation_warning.py":{"language":"Python","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":148,"comment":5,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":49,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":131,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":95,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":152,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/ordered_set.py":{"language":"Python","code":405,"comment":15,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/bcppcompiler.py":{"language":"Python","code":248,"comment":78,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/archive_util.py":{"language":"Python","code":202,"comment":8,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/ccompiler.py":{"language":"Python","code":799,"comment":156,"blank":162},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cmd.py":{"language":"Python","code":275,"comment":71,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/core.py":{"language":"Python","code":170,"comment":25,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/config.py":{"language":"Python","code":103,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/file_util.py":{"language":"Python","code":181,"comment":19,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/filelist.py":{"language":"Python","code":243,"comment":28,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/fancy_getopt.py":{"language":"Python","code":308,"comment":78,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/extension.py":{"language":"Python","code":189,"comment":27,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/errors.py":{"language":"Python","code":75,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dist.py":{"language":"Python","code":900,"comment":164,"blank":194},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dir_util.py":{"language":"Python","code":156,"comment":18,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dep_util.py":{"language":"Python","code":66,"comment":9,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvc9compiler.py":{"language":"Python","code":584,"comment":107,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/log.py":{"language":"Python","code":57,"comment":4,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvccompiler.py":{"language":"Python","code":493,"comment":62,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py38compat.py":{"language":"Python","code":7,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py35compat.py":{"language":"Python","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/debug.py":{"language":"Python","code":2,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py":{"language":"Python","code":237,"comment":111,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/spawn.py":{"language":"Python","code":92,"comment":10,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":35,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist.py":{"language":"Python","code":105,"comment":14,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_clib.py":{"language":"Python","code":138,"comment":27,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build.py":{"language":"Python","code":107,"comment":22,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py":{"language":"Python","code":265,"comment":61,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py":{"language":"Python","code":435,"comment":59,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_ext.py":{"language":"Python","code":500,"comment":153,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py":{"language":"Python","code":102,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py":{"language":"Python","code":570,"comment":93,"blank":87},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_scripts.py":{"language":"Python","code":126,"comment":13,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/check.py":{"language":"Python","code":118,"comment":7,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/upload.py":{"language":"Python","code":162,"comment":22,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/sdist.py":{"language":"Python","code":373,"comment":47,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/__init__.py":{"language":"Python","code":23,"comment":6,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/__init__.py":{"language":"Python","code":9,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/register.py":{"language":"Python","code":251,"comment":20,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/py37compat.py":{"language":"Python","code":23,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/_msvccompiler.py":{"language":"Python","code":414,"comment":60,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_scripts.py":{"language":"Python","code":44,"comment":3,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/versionpredicate.py":{"language":"Python","code":129,"comment":5,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_headers.py":{"language":"Python","code":32,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_lib.py":{"language":"Python","code":140,"comment":36,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py":{"language":"Python","code":55,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_data.py":{"language":"Python","code":59,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install.py":{"language":"Python","code":452,"comment":122,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_py.py":{"language":"Python","code":277,"comment":81,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/config.py":{"language":"Python","code":273,"comment":21,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/version.py":{"language":"Python","code":191,"comment":98,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/clean.py":{"language":"Python","code":59,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/util.py":{"language":"Python","code":404,"comment":69,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/unixccompiler.py":{"language":"Python","code":198,"comment":90,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/text_file.py":{"language":"Python","code":203,"comment":43,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py":{"language":"Python","code":15,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":291,"comment":0,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2472,"comment":168,"blank":657},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/windows_support.py":{"language":"Python","code":21,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/wheel.py":{"language":"Python","code":178,"comment":13,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/version.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/sysconfig.py":{"language":"Python","code":412,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/unicode_utils.py":{"language":"Python","code":32,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/build_meta.py":{"language":"Python","code":200,"comment":20,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/archive_util.py":{"language":"Python","code":156,"comment":8,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":96,"comment":16,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":58,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1108,"comment":80,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":347,"comment":48,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":847,"comment":74,"blank":156},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":13,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":74,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":524,"comment":87,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1528,"comment":163,"blank":242},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":124,"comment":9,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":275,"comment":51,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":446,"comment":19,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1128,"comment":44,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":65,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":851,"comment":102,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":248,"comment":9,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":79,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/storage_location.py":{"language":"Python","code":61,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":614,"comment":173,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11}} \ No newline at end of file +{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":20,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":73,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":82,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_report.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Split_Temp.sql":{"language":"SQL","code":7,"comment":2,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":18,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":41,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":28,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":213,"comment":2,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql":{"language":"SQL","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_calc_user.sql":{"language":"SQL","code":22,"comment":14,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_calc_user.sql":{"language":"SQL","code":425,"comment":87,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_validate_guid.sql":{"language":"SQL","code":29,"comment":21,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":14,"comment":8,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":68,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_debug_timing_reporting.sql":{"language":"SQL","code":26,"comment":12,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql":{"language":"SQL","code":24,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":28,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":738,"comment":201,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":557,"comment":157,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":290,"comment":86,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_permutation.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":381,"comment":95,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_calc_product_permutation.sql":{"language":"SQL","code":528,"comment":108,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":14579,"comment":3389,"blank":2259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/routes.py":{"language":"Python","code":40,"comment":6,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/pyvenv.cfg":{"language":"Properties","code":3,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/activate.bat":{"language":"Batch","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/deactivate.bat":{"language":"Batch","code":15,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Scripts/Activate.ps1":{"language":"PowerShell","code":104,"comment":105,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":139,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/__init__.py":{"language":"Python","code":93,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/_distutils_hack/override.py":{"language":"Python","code":1,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dep_util.py":{"language":"Python","code":17,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/dist.py":{"language":"Python","code":828,"comment":45,"blank":185},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/errors.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/depends.py":{"language":"Python","code":129,"comment":3,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/config.py":{"language":"Python","code":538,"comment":10,"blank":163},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/installer.py":{"language":"Python","code":80,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__main__.py":{"language":"Python","code":14,"comment":13,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/lib2to3_ex.py":{"language":"Python","code":54,"comment":2,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":37,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/sandbox.py":{"language":"Python","code":384,"comment":9,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/ssl_support.py":{"language":"Python","code":189,"comment":31,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/namespaces.py":{"language":"Python","code":86,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/py34compat.py":{"language":"Python","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/package_index.py":{"language":"Python","code":902,"comment":63,"blank":181},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/stock_item.py":{"language":"Python","code":53,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/monkey.py":{"language":"Python","code":124,"comment":14,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/msvc.py":{"language":"Python","code":1466,"comment":64,"blank":297},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/launch.py":{"language":"Python","code":27,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/glob.py":{"language":"Python","code":118,"comment":14,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extension.py":{"language":"Python","code":38,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/__init__.py":{"language":"Python","code":2468,"comment":167,"blank":654},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_clib.py":{"language":"Python","code":77,"comment":13,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/develop.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/compat.py":{"language":"Python","code":20,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":466,"comment":17,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/dist_info.py":{"language":"Python","code":26,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":297,"comment":66,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_py.py":{"language":"Python","code":216,"comment":13,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/build_ext.py":{"language":"Python","code":255,"comment":30,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":61,"comment":29,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_rpm.py":{"language":"Python","code":24,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":43,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":92,"comment":20,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/easy_install.py":{"language":"Python","code":1804,"comment":147,"blank":340},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/bdist_egg.py":{"language":"Python","code":362,"comment":17,"blank":78},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/alias.py":{"language":"Python","code":62,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_egg_info.py":{"language":"Python","code":47,"comment":4,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":25,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install.py":{"language":"Python","code":94,"comment":10,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":111,"comment":42,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/egg_info.py":{"language":"Python","code":554,"comment":53,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":35,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":98,"comment":3,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/appdirs.py":{"language":"Python","code":493,"comment":27,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":11,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_lib.py":{"language":"Python","code":93,"comment":6,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":309,"comment":25,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/install_scripts.py":{"language":"Python","code":55,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/test.py":{"language":"Python","code":219,"comment":9,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":11,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/setopt.py":{"language":"Python","code":125,"comment":0,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/sdist.py":{"language":"Python","code":183,"comment":11,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/saveopts.py":{"language":"Python","code":14,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/rotate.py":{"language":"Python","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload.py":{"language":"Python","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":26,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":89,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":396,"comment":40,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":28,"comment":19,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":65,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":186,"comment":2,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":26,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":38,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":126,"comment":24,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":766,"comment":86,"blank":235},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/__init__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/upload_docs.py":{"language":"Python","code":169,"comment":9,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":114,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/register.py":{"language":"Python","code":12,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/py36compat.py":{"language":"Python","code":105,"comment":11,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/command/launcher%20manifest.xml":{"language":"XML","code":14,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":180,"comment":16,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":450,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":222,"comment":29,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":112,"comment":12,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":179,"comment":35,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":50,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":592,"comment":61,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":439,"comment":22,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":102,"comment":44,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":84,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":61,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":561,"comment":23,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":60,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":762,"comment":72,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/distutils_args.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":152,"comment":6,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":416,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":406,"comment":22,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":175,"comment":20,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":146,"comment":16,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":94,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":559,"comment":27,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/inject_securetransport.py":{"language":"Python","code":22,"comment":2,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":97,"comment":12,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":490,"comment":93,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":213,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":41,"comment":33,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":103,"comment":10,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":178,"comment":0,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":29,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":844,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":22,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":391,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":301,"comment":60,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":50,"comment":3,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":28,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":52,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":357,"comment":80,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":182,"comment":12,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":148,"comment":7,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/legacy.py":{"language":"Python","code":97,"comment":6,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":527,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":41,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":117,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":95,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":207,"comment":17,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":75,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":553,"comment":15,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":483,"comment":54,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":269,"comment":34,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":1629,"comment":145,"blank":436},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/extern/__init__.py":{"language":"Python","code":61,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":43,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":158,"comment":20,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":162,"comment":17,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":134,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":169,"comment":4,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":866,"comment":37,"blank":153},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":156,"comment":18,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":135,"comment":0,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":30,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":31,"comment":15,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":21,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":16,"comment":15,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":296,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":725,"comment":41,"blank":108},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":49,"comment":15,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":377,"comment":41,"blank":102},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2228,"comment":15,"blank":370},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":541,"comment":3,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":179,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":198,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":39,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":155,"comment":16,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":405,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":825,"comment":108,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":420,"comment":52,"blank":96},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":85,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":120,"comment":2,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":148,"comment":7,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":226,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":115,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":112,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1438,"comment":10,"blank":260},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":884,"comment":24,"blank":122},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":826,"comment":13,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":675,"comment":2,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":197,"comment":12,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":319,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1121,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":88,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":583,"comment":14,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/__init__.py":{"language":"Python","code":174,"comment":13,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":122,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":360,"comment":29,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":64,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":246,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":124,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":503,"comment":58,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":277,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":184,"comment":2,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":679,"comment":76,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":300,"comment":5,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":68,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":609,"comment":24,"blank":128},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":872,"comment":38,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":207,"comment":4,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":252,"comment":22,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":538,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":85,"comment":2,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":304,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1070,"comment":58,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4609,"comment":252,"blank":954},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":148,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":55,"comment":1,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":148,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":790,"comment":21,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_imp.py":{"language":"Python","code":66,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":110,"comment":4,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_deprecation_warning.py":{"language":"Python","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":148,"comment":5,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":49,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":131,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":95,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":152,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/ordered_set.py":{"language":"Python","code":405,"comment":15,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/bcppcompiler.py":{"language":"Python","code":248,"comment":78,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/archive_util.py":{"language":"Python","code":202,"comment":8,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/ccompiler.py":{"language":"Python","code":799,"comment":156,"blank":162},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cmd.py":{"language":"Python","code":275,"comment":71,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/core.py":{"language":"Python","code":170,"comment":25,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/config.py":{"language":"Python","code":103,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/file_util.py":{"language":"Python","code":181,"comment":19,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/filelist.py":{"language":"Python","code":243,"comment":28,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/fancy_getopt.py":{"language":"Python","code":308,"comment":78,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/extension.py":{"language":"Python","code":189,"comment":27,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/errors.py":{"language":"Python","code":75,"comment":1,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dist.py":{"language":"Python","code":900,"comment":164,"blank":194},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dir_util.py":{"language":"Python","code":156,"comment":18,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/dep_util.py":{"language":"Python","code":66,"comment":9,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvc9compiler.py":{"language":"Python","code":584,"comment":107,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/log.py":{"language":"Python","code":57,"comment":4,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/msvccompiler.py":{"language":"Python","code":493,"comment":62,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py38compat.py":{"language":"Python","code":7,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/py35compat.py":{"language":"Python","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/debug.py":{"language":"Python","code":2,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py":{"language":"Python","code":237,"comment":111,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/spawn.py":{"language":"Python","code":92,"comment":10,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":35,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_structures.py":{"language":"Python","code":41,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_compat.py":{"language":"Python","code":19,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/utils.py":{"language":"Python","code":33,"comment":14,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/version.py":{"language":"Python","code":325,"comment":100,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist.py":{"language":"Python","code":105,"comment":14,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_clib.py":{"language":"Python","code":138,"comment":27,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build.py":{"language":"Python","code":107,"comment":22,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_wininst.py":{"language":"Python","code":265,"comment":61,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py":{"language":"Python","code":435,"comment":59,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/_typing.py":{"language":"Python","code":29,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_ext.py":{"language":"Python","code":500,"comment":153,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py":{"language":"Python","code":102,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__about__.py":{"language":"Python","code":19,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/bdist_msi.py":{"language":"Python","code":570,"comment":93,"blank":87},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/tags.py":{"language":"Python","code":543,"comment":88,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_scripts.py":{"language":"Python","code":126,"comment":13,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/__init__.py":{"language":"Python","code":21,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/check.py":{"language":"Python","code":118,"comment":7,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/upload.py":{"language":"Python","code":162,"comment":22,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/sdist.py":{"language":"Python","code":373,"comment":47,"blank":75},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/__init__.py":{"language":"Python","code":23,"comment":6,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/__init__.py":{"language":"Python","code":9,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/register.py":{"language":"Python","code":251,"comment":20,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/py37compat.py":{"language":"Python","code":23,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/_msvccompiler.py":{"language":"Python","code":414,"comment":60,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_scripts.py":{"language":"Python","code":44,"comment":3,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/versionpredicate.py":{"language":"Python","code":129,"comment":5,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_headers.py":{"language":"Python","code":32,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_lib.py":{"language":"Python","code":140,"comment":36,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py":{"language":"Python","code":55,"comment":3,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install_data.py":{"language":"Python","code":59,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/install.py":{"language":"Python","code":452,"comment":122,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/build_py.py":{"language":"Python","code":277,"comment":81,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/config.py":{"language":"Python","code":273,"comment":21,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":216,"blank":158},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/version.py":{"language":"Python","code":191,"comment":98,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/requirements.py":{"language":"Python","code":100,"comment":12,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/command/clean.py":{"language":"Python","code":59,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/util.py":{"language":"Python","code":404,"comment":69,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/unixccompiler.py":{"language":"Python","code":198,"comment":90,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":28,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/text_file.py":{"language":"Python","code":203,"comment":43,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py":{"language":"Python","code":15,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":291,"comment":0,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2472,"comment":168,"blank":657},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/windows_support.py":{"language":"Python","code":21,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/wheel.py":{"language":"Python","code":178,"comment":13,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/version.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_distutils/sysconfig.py":{"language":"Python","code":412,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/unicode_utils.py":{"language":"Python","code":32,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/build_meta.py":{"language":"Python","code":200,"comment":20,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/_vendor/pyparsing.py":{"language":"Python","code":4648,"comment":255,"blank":840},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/setuptools/archive_util.py":{"language":"Python","code":156,"comment":8,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":96,"comment":16,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":58,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1108,"comment":80,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":347,"comment":48,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":847,"comment":74,"blank":156},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":13,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":74,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":524,"comment":87,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1528,"comment":163,"blank":242},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":124,"comment":9,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":275,"comment":51,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":446,"comment":19,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1128,"comment":44,"blank":179},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":65,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":851,"comment":102,"blank":164},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/env_test/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":248,"comment":9,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":79,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/storage_location.py":{"language":"Python","code":61,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/pyvenv.cfg":{"language":"Properties","code":5,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":614,"comment":173,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/deactivate.bat":{"language":"Batch","code":16,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/activate.bat":{"language":"Batch","code":24,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Scripts/Activate.ps1":{"language":"PowerShell","code":108,"comment":360,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__main__.py":{"language":"Python","code":10,"comment":10,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/__pip-runner__.py":{"language":"Python","code":29,"comment":4,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/__init__.py":{"language":"Python","code":10,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/wheel_builder.py":{"language":"Python","code":290,"comment":19,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connection.py":{"language":"Python","code":422,"comment":54,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/subversion.py":{"language":"Python","code":237,"comment":40,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/mercurial.py":{"language":"Python","code":146,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/git.py":{"language":"Python","code":402,"comment":56,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/bazaar.py":{"language":"Python","code":94,"comment":3,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/__init__.py":{"language":"Python","code":11,"comment":4,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/vcs/versioncontrol.py":{"language":"Python","code":570,"comment":23,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/__init__.py":{"language":"Python","code":72,"comment":15,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_version.py":{"language":"Python","code":1,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/prepare.py":{"language":"Python","code":529,"comment":113,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/_collections.py":{"language":"Python","code":252,"comment":19,"blank":67},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/freeze.py":{"language":"Python","code":214,"comment":12,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/check.py":{"language":"Python","code":138,"comment":10,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py":{"language":"Python","code":99,"comment":37,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/response.py":{"language":"Python","code":669,"comment":79,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py":{"language":"Python","code":352,"comment":59,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py":{"language":"Python","code":178,"comment":2,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/response.py":{"language":"Python","code":64,"comment":20,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py":{"language":"Python","code":469,"comment":29,"blank":123},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/request.py":{"language":"Python","code":103,"comment":6,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py":{"language":"Python","code":14,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py":{"language":"Python","code":43,"comment":4,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py":{"language":"Python","code":100,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/wheel.py":{"language":"Python","code":523,"comment":94,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py":{"language":"Python","code":200,"comment":11,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py":{"language":"Python","code":40,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/url.py":{"language":"Python","code":320,"comment":37,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/request.py":{"language":"Python","code":151,"comment":0,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py":{"language":"Python","code":402,"comment":33,"blank":103},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py":{"language":"Python","code":89,"comment":38,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/filepost.py":{"language":"Python","code":70,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py":{"language":"Python","code":46,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/fields.py":{"language":"Python","code":212,"comment":5,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py":{"language":"Python","code":183,"comment":10,"blank":131},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/__init__.py":{"language":"Python","code":85,"comment":26,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/self_outdated_check.py":{"language":"Python","code":185,"comment":16,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py":{"language":"Python","code":835,"comment":115,"blank":183},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/appdirs.py":{"language":"Python","code":31,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compatibility_tags.py":{"language":"Python","code":121,"comment":16,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/compat.py":{"language":"Python","code":36,"comment":9,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/__init__.py":{"language":"Python","code":249,"comment":14,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py":{"language":"Python","code":292,"comment":7,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/datetime.py":{"language":"Python","code":7,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/tests.py":{"language":"Python","code":123,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/deprecation.py":{"language":"Python","code":92,"comment":6,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py":{"language":"Python","code":40,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/webencodings/labels.py":{"language":"Python","code":223,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/packaging.py":{"language":"Python","code":36,"comment":6,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/models.py":{"language":"Python","code":26,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/misc.py":{"language":"Python","code":597,"comment":28,"blank":159},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/logging.py":{"language":"Python","code":273,"comment":22,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/hashes.py":{"language":"Python","code":103,"comment":12,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/glibc.py":{"language":"Python","code":44,"comment":31,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py":{"language":"Python","code":285,"comment":51,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filetypes.py":{"language":"Python","code":22,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/setuptools_build.py":{"language":"Python","code":106,"comment":16,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/filesystem.py":{"language":"Python","code":104,"comment":18,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/encoding.py":{"language":"Python","code":30,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py":{"language":"Python","code":414,"comment":9,"blank":97},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/entrypoints.py":{"language":"Python","code":65,"comment":5,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/egg_link.py":{"language":"Python","code":67,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py":{"language":"Python","code":71,"comment":9,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py":{"language":"Python","code":24,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/subprocess.py":{"language":"Python","code":197,"comment":39,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py":{"language":"Python","code":167,"comment":7,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_log.py":{"language":"Python","code":23,"comment":2,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/_jaraco_text.py":{"language":"Python","code":83,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/virtualenv.py":{"language":"Python","code":72,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/wheel.py":{"language":"Python","code":92,"comment":7,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py":{"language":"Python","code":646,"comment":134,"blank":142},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py":{"language":"Python","code":805,"comment":53,"blank":219},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/urls.py":{"language":"Python","code":45,"comment":5,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/unpacking.py":{"language":"Python","code":215,"comment":14,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/utils/temp_dir.py":{"language":"Python","code":220,"comment":22,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py":{"language":"Python","code":389,"comment":25,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py":{"language":"Python","code":104,"comment":7,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py":{"language":"Python","code":244,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py":{"language":"Python","code":120,"comment":15,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py":{"language":"Python","code":47,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/pyproject.py":{"language":"Python","code":106,"comment":45,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py":{"language":"Python","code":17,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_openssl.py":{"language":"Python","code":37,"comment":20,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/lazy_wheel.py":{"language":"Python","code":166,"comment":7,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/download.py":{"language":"Python","code":150,"comment":3,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/session.py":{"language":"Python","code":359,"comment":81,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/auth.py":{"language":"Python","code":387,"comment":71,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/typing_extensions.py":{"language":"Python","code":2304,"comment":194,"blank":575},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/cache.py":{"language":"Python","code":80,"comment":5,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_windows.py":{"language":"Python","code":451,"comment":22,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/__init__.py":{"language":"Python","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_macos.py":{"language":"Python","code":386,"comment":33,"blank":83},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/__init__.py":{"language":"Python","code":73,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/truststore/_api.py":{"language":"Python","code":231,"comment":15,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_uninstall.py":{"language":"Python","code":489,"comment":57,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_set.py":{"language":"Python","code":97,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_file.py":{"language":"Python","code":426,"comment":34,"blank":95},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/constructors.py":{"language":"Python","code":474,"comment":24,"blank":79},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/req/req_install.py":{"language":"Python","code":738,"comment":77,"blank":109},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/utils.py":{"language":"Python","code":39,"comment":47,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/xmlrpc.py":{"language":"Python","code":53,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/network/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py":{"language":"Python","code":238,"comment":34,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py":{"language":"Python","code":110,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py":{"language":"Python","code":60,"comment":1,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py":{"language":"Python","code":191,"comment":29,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py":{"language":"Python","code":112,"comment":18,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py":{"language":"Python","code":656,"comment":77,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py":{"language":"Python","code":470,"comment":29,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py":{"language":"Python","code":103,"comment":4,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/search_scope.py":{"language":"Python","code":93,"comment":18,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/scheme.py":{"language":"Python","code":24,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py":{"language":"Python","code":448,"comment":70,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/resolution/base.py":{"language":"Python","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/selection_prefs.py":{"language":"Python","code":40,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/link.py":{"language":"Python","code":427,"comment":54,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/installation_report.py":{"language":"Python","code":29,"comment":21,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/index.py":{"language":"Python","code":17,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/__init__.py":{"language":"Python","code":461,"comment":41,"blank":107},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_utils.py":{"language":"Python","code":43,"comment":19,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/format_control.py":{"language":"Python","code":63,"comment":1,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py":{"language":"Python","code":61,"comment":18,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/wait.py":{"language":"Python","code":152,"comment":16,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/direct_url.py":{"language":"Python","code":190,"comment":3,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py":{"language":"Python","code":37,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/wheel.py":{"language":"Python","code":71,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/target_python.py":{"language":"Python","code":98,"comment":4,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/stop.py":{"language":"Python","code":53,"comment":15,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/retry.py":{"language":"Python","code":178,"comment":18,"blank":77},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/models/candidate.py":{"language":"Python","code":22,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/__init__.py":{"language":"Python","code":96,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/_json.py":{"language":"Python","code":68,"comment":6,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/pkg_resources.py":{"language":"Python","code":212,"comment":17,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/__init__.py":{"language":"Python","code":4,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/nap.py":{"language":"Python","code":16,"comment":18,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py":{"language":"Python","code":39,"comment":16,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_types.py":{"language":"Python","code":4,"comment":4,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/before.py":{"language":"Python","code":20,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_re.py":{"language":"Python","code":87,"comment":6,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tenacity/after.py":{"language":"Python","code":25,"comment":16,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/tomli/_parser.py":{"language":"Python","code":534,"comment":46,"blank":112},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/six.py":{"language":"Python","code":755,"comment":53,"blank":191},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py":{"language":"Python","code":40,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py":{"language":"Python","code":150,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py":{"language":"Python","code":4,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py":{"language":"Python","code":184,"comment":12,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/containers.py":{"language":"Python","code":139,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/constrain.py":{"language":"Python","code":29,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/emoji.py":{"language":"Python","code":70,"comment":0,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/diagnose.py":{"language":"Python","code":30,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/default_styles.py":{"language":"Python","code":181,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/errors.py":{"language":"Python","code":18,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/control.py":{"language":"Python","code":180,"comment":1,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/columns.py":{"language":"Python","code":166,"comment":1,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/console.py":{"language":"Python","code":2244,"comment":19,"blank":371},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py":{"language":"Python","code":23,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color_triplet.py":{"language":"Python","code":30,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/structs.py":{"language":"Python","code":127,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/color.py":{"language":"Python","code":544,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py":{"language":"Python","code":417,"comment":33,"blank":98},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/cells.py":{"language":"Python","code":117,"comment":4,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/reporters.py":{"language":"Python","code":31,"comment":0,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/box.py":{"language":"Python","code":418,"comment":11,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/bar.py":{"language":"Python","code":71,"comment":5,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/providers.py":{"language":"Python","code":105,"comment":0,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/ansi.py":{"language":"Python","code":201,"comment":6,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/filesize.py":{"language":"Python","code":70,"comment":1,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/align.py":{"language":"Python","code":270,"comment":4,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/padding.py":{"language":"Python","code":121,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/measure.py":{"language":"Python","code":126,"comment":0,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/markup.py":{"language":"Python","code":197,"comment":3,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/logging.py":{"language":"Python","code":253,"comment":4,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live_render.py":{"language":"Python","code":95,"comment":0,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/live.py":{"language":"Python","code":321,"comment":6,"blank":49},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/layout.py":{"language":"Python","code":358,"comment":0,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/file_proxy.py":{"language":"Python","code":47,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/abc.py":{"language":"Python","code":22,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/palette.py":{"language":"Python","code":82,"comment":1,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pager.py":{"language":"Python","code":23,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/repr.py":{"language":"Python","code":116,"comment":0,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/region.py":{"language":"Python","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/protocol.py":{"language":"Python","code":31,"comment":1,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/prompt.py":{"language":"Python","code":295,"comment":0,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress_bar.py":{"language":"Python","code":193,"comment":1,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/progress.py":{"language":"Python","code":1434,"comment":10,"blank":259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/panel.py":{"language":"Python","code":277,"comment":0,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/rule.py":{"language":"Python","code":109,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_export_format.py":{"language":"Python","code":68,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py":{"language":"Python","code":25,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/pretty.py":{"language":"Python","code":862,"comment":15,"blank":118},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_inspect.py":{"language":"Python","code":227,"comment":4,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_fileno.py":{"language":"Python","code":16,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_extension.py":{"language":"Python","code":6,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_cell_widths.py":{"language":"Python","code":449,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py":{"language":"Python","code":3610,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/tree.py":{"language":"Python","code":215,"comment":1,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/traceback.py":{"language":"Python","code":656,"comment":16,"blank":85},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/themes.py":{"language":"Python","code":3,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/theme.py":{"language":"Python","code":91,"comment":0,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/terminal_theme.py":{"language":"Python","code":143,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/styled.py":{"language":"Python","code":31,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/text.py":{"language":"Python","code":1117,"comment":5,"blank":186},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/table.py":{"language":"Python","code":878,"comment":4,"blank":121},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/syntax.py":{"language":"Python","code":831,"comment":13,"blank":105},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/style.py":{"language":"Python","code":696,"comment":2,"blank":99},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/status.py":{"language":"Python","code":113,"comment":0,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/spinner.py":{"language":"Python","code":115,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/segment.py":{"language":"Python","code":624,"comment":1,"blank":115},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/screen.py":{"language":"Python","code":44,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/rich/scope.py":{"language":"Python","code":73,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__main__.py":{"language":"Python","code":234,"comment":2,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/__init__.py":{"language":"Python","code":142,"comment":3,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_wrap.py":{"language":"Python","code":46,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows.py":{"language":"Python","code":55,"comment":1,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py":{"language":"Python","code":52,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_win32_console.py":{"language":"Python","code":527,"comment":4,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_timer.py":{"language":"Python","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_stack.py":{"language":"Python","code":11,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_spinners.py":{"language":"Python","code":481,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_ratio.py":{"language":"Python","code":122,"comment":12,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py":{"language":"Python","code":19,"comment":3,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py":{"language":"Python","code":33,"comment":3,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py":{"language":"Python","code":43,"comment":7,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py":{"language":"Python","code":135,"comment":40,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py":{"language":"Python","code":114,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py":{"language":"Python","code":68,"comment":29,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py":{"language":"Python","code":348,"comment":67,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py":{"language":"Python","code":114,"comment":20,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py":{"language":"Python","code":51,"comment":3,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_pick.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_palettes.py":{"language":"Python","code":301,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_null_file.py":{"language":"Python","code":47,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_loop.py":{"language":"Python","code":36,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/_log_render.py":{"language":"Python","code":81,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/jupyter.py":{"language":"Python","code":77,"comment":2,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/metadata/base.py":{"language":"Python","code":564,"comment":15,"blank":124},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/json.py":{"language":"Python","code":123,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/rich/highlighter.py":{"language":"Python","code":151,"comment":37,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/sessions.py":{"language":"Python","code":564,"comment":116,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/status_codes.py":{"language":"Python","code":112,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/main.py":{"language":"Python","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/structures.py":{"language":"Python","code":67,"comment":5,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/packages.py":{"language":"Python","code":8,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__version__.py":{"language":"Python","code":10,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/models.py":{"language":"Python","code":737,"comment":114,"blank":184},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/__init__.py":{"language":"Python","code":128,"comment":21,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/_internal_utils.py":{"language":"Python","code":40,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/utils.py":{"language":"Python","code":775,"comment":86,"blank":234},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/hooks.py":{"language":"Python","code":23,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/help.py":{"language":"Python","code":109,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py":{"language":"Python","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/exceptions.py":{"language":"Python","code":82,"comment":1,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py":{"language":"Python","code":3,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/cookies.py":{"language":"Python","code":439,"comment":12,"blank":111},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py":{"language":"Python","code":34,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/compat.py":{"language":"Python","code":44,"comment":12,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_env/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py":{"language":"Python","code":122,"comment":23,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/certs.py":{"language":"Python","code":17,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/auth.py":{"language":"Python","code":223,"comment":27,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/api.py":{"language":"Python","code":117,"comment":3,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/requests/adapters.py":{"language":"Python","code":432,"comment":13,"blank":94},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/base.py":{"language":"Python","code":55,"comment":8,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_distutils.py":{"language":"Python","code":127,"comment":21,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/_sysconfig.py":{"language":"Python","code":158,"comment":17,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py":{"language":"Python","code":6,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py":{"language":"Python","code":21,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py":{"language":"Python","code":258,"comment":4,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/actions.py":{"language":"Python","code":151,"comment":8,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/locations/__init__.py":{"language":"Python","code":345,"comment":37,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py":{"language":"Python","code":14,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py":{"language":"Python","code":274,"comment":6,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/__init__.py":{"language":"Python","code":2,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/sources.py":{"language":"Python","code":224,"comment":3,"blank":59},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/package_finder.py":{"language":"Python","code":842,"comment":39,"blank":147},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/index/collector.py":{"language":"Python","code":393,"comment":29,"blank":86},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/__init__.py":{"language":"Python","code":268,"comment":26,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/util.py":{"language":"Python","code":212,"comment":13,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py":{"language":"Python","code":517,"comment":59,"blank":81},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/unicode.py":{"language":"Python","code":307,"comment":5,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/testing.py":{"language":"Python","code":279,"comment":10,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py":{"language":"Python","code":232,"comment":7,"blank":61},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/results.py":{"language":"Python","code":642,"comment":26,"blank":129},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/helpers.py":{"language":"Python","code":871,"comment":41,"blank":189},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/common.py":{"language":"Python","code":312,"comment":39,"blank":82},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/exceptions.py":{"language":"Python","code":546,"comment":23,"blank":160},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cache.py":{"language":"Python","code":221,"comment":19,"blank":51},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/configuration.py":{"language":"Python","code":279,"comment":33,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/macos.py":{"language":"Python","code":71,"comment":0,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filter.py":{"language":"Python","code":55,"comment":1,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/console.py":{"language":"Python","code":54,"comment":0,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/api.py":{"language":"Python","code":186,"comment":0,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pyparsing/core.py":{"language":"Python","code":4805,"comment":271,"blank":1040},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/cmdline.py":{"language":"Python","code":554,"comment":39,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/android.py":{"language":"Python","code":160,"comment":7,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/unix.py":{"language":"Python","code":180,"comment":5,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatter.py":{"language":"Python","code":88,"comment":10,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/version.py":{"language":"Python","code":2,"comment":2,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/build_env.py":{"language":"Python","code":252,"comment":15,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/list.py":{"language":"Python","code":299,"comment":13,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/requirements.py":{"language":"Python","code":105,"comment":9,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/unistring.py":{"language":"Python","code":94,"comment":6,"blank":54},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/token.py":{"language":"Python","code":164,"comment":12,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/install.py":{"language":"Python","code":646,"comment":36,"blank":93},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/show.py":{"language":"Python","code":162,"comment":0,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/util.py":{"language":"Python","code":269,"comment":5,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/specifiers.py":{"language":"Python","code":490,"comment":156,"blank":157},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/search.py":{"language":"Python","code":142,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/inspect.py":{"language":"Python","code":77,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/style.py":{"language":"Python","code":153,"comment":17,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/index.py":{"language":"Python","code":108,"comment":4,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/markers.py":{"language":"Python","code":224,"comment":7,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/help.py":{"language":"Python","code":29,"comment":1,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/uninstall.py":{"language":"Python","code":99,"comment":0,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/tags.py":{"language":"Python","code":373,"comment":26,"blank":89},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/scanner.py":{"language":"Python","code":89,"comment":0,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/sphinxext.py":{"language":"Python","code":174,"comment":0,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/hash.py":{"language":"Python","code":48,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/regexopt.py":{"language":"Python","code":66,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__init__.py":{"language":"Python","code":65,"comment":2,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/download.py":{"language":"Python","code":117,"comment":2,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/wheel.py":{"language":"Python","code":151,"comment":2,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/plugin.py":{"language":"Python","code":61,"comment":4,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/debug.py":{"language":"Python","code":149,"comment":9,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/utils.py":{"language":"Python","code":91,"comment":16,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/freeze.py":{"language":"Python","code":91,"comment":0,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/modeline.py":{"language":"Python","code":32,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/req_command.py":{"language":"Python","code":408,"comment":29,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/exceptions.py":{"language":"Python","code":28,"comment":2,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/progress_bars.py":{"language":"Python","code":58,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/parser.py":{"language":"Python","code":222,"comment":20,"blank":53},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/wheel.py":{"language":"Python","code":32,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main_parser.py":{"language":"Python","code":82,"comment":24,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/sdist.py":{"language":"Python","code":122,"comment":18,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/installed.py":{"language":"Python","code":22,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/base.py":{"language":"Python","code":38,"comment":0,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/idnadata.py":{"language":"Python","code":2149,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/core.py":{"language":"Python","code":319,"comment":8,"blank":74},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/compat.py":{"language":"Python","code":9,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/codec.py":{"language":"Python","code":84,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/distributions/__init__.py":{"language":"Python","code":13,"comment":4,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py":{"language":"Python","code":858,"comment":3,"blank":80},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/__init__.py":{"language":"Python","code":43,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py":{"language":"Python","code":90,"comment":3,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/package_data.py":{"language":"Python","code":1,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/intranges.py":{"language":"Python","code":42,"comment":3,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/__init__.py":{"language":"Python","code":38,"comment":2,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/__init__.py":{"language":"Python","code":2,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/fallback.py":{"language":"Python","code":857,"comment":22,"blank":132},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/idna/uts46data.py":{"language":"Python","code":8511,"comment":2,"blank":88},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/status_codes.py":{"language":"Python","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/msgpack/ext.py":{"language":"Python","code":149,"comment":4,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/spinners.py":{"language":"Python","code":114,"comment":18,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/main.py":{"language":"Python","code":34,"comment":30,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py":{"language":"Python","code":2548,"comment":154,"blank":660},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_structures.py":{"language":"Python","code":36,"comment":3,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/command_context.py":{"language":"Python","code":20,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_musllinux.py":{"language":"Python","code":107,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/cmdoptions.py":{"language":"Python","code":883,"comment":38,"blank":154},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__about__.py":{"language":"Python","code":18,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/base_command.py":{"language":"Python","code":175,"comment":22,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/_manylinux.py":{"language":"Python","code":212,"comment":51,"blank":39},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/cli/autocompletion.py":{"language":"Python","code":135,"comment":19,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/__init__.py":{"language":"Python","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/__main__.py":{"language":"Python","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/__init__.py":{"language":"Python","code":113,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/packaging/version.py":{"language":"Python","code":334,"comment":58,"blank":113},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/configuration.py":{"language":"Python","code":224,"comment":12,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__main__.py":{"language":"Python","code":42,"comment":0,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/completion.py":{"language":"Python","code":116,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/check.py":{"language":"Python","code":45,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/windows.py":{"language":"Python","code":206,"comment":4,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexer.py":{"language":"Python","code":719,"comment":85,"blank":140},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_internal/commands/cache.py":{"language":"Python","code":163,"comment":20,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/platformdirs/__init__.py":{"language":"Python","code":495,"comment":0,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/winterm.py":{"language":"Python","code":143,"comment":29,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/markers.py":{"language":"Python","code":129,"comment":9,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cp949prober.py":{"language":"Python","code":16,"comment":28,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/core.py":{"language":"Python","code":51,"comment":37,"blank":21},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/win32.py":{"language":"Python","code":146,"comment":10,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py":{"language":"Python","code":12,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__init__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/enums.py":{"language":"Python","code":63,"comment":0,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/__init__.py":{"language":"Python","code":4,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py":{"language":"Python","code":48,"comment":29,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/manifest.py":{"language":"Python","code":276,"comment":40,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/metadata.py":{"language":"Python","code":840,"comment":74,"blank":155},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py":{"language":"Python","code":61,"comment":27,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py":{"language":"Python","code":151,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escsm.py":{"language":"Python","code":210,"comment":34,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euckrprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/scripts.py":{"language":"Python","code":359,"comment":48,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/escprober.py":{"language":"Python","code":65,"comment":26,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/certifi/__main__.py":{"language":"Python","code":9,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py":{"language":"Python","code":103,"comment":186,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py":{"language":"Python","code":239,"comment":40,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/version.py":{"language":"Python","code":533,"comment":86,"blank":133},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py":{"language":"Python","code":340,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/resources.py":{"language":"Python","code":280,"comment":15,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jisfreq.py":{"language":"Python","code":277,"comment":43,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/util.py":{"language":"Python","code":1564,"comment":167,"blank":295},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/initialise.py":{"language":"Python","code":83,"comment":8,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetprober.py":{"language":"Python","code":80,"comment":43,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py":{"language":"Python","code":209,"comment":25,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py":{"language":"Python","code":71,"comment":26,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/locators.py":{"language":"Python","code":1107,"comment":77,"blank":120},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__main__.py":{"language":"Python","code":3,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/chardistribution.py":{"language":"Python","code":158,"comment":70,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/index.py":{"language":"Python","code":445,"comment":19,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/ansi.py":{"language":"Python","code":77,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabfreq.py":{"language":"Python","code":2352,"comment":28,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/__init__.py":{"language":"Python","code":52,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5prober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py":{"language":"Python","code":55,"comment":28,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py":{"language":"Python","code":94,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py":{"language":"Python","code":243,"comment":8,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/macromanprober.py":{"language":"Python","code":99,"comment":45,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/latin1prober.py":{"language":"Python","code":96,"comment":36,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py":{"language":"Python","code":4380,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py":{"language":"Python","code":26,"comment":28,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py":{"language":"Python","code":55,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py":{"language":"Python","code":4365,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/__init__.py":{"language":"Python","code":16,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/johabprober.py":{"language":"Python","code":16,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py":{"language":"Python","code":5700,"comment":10,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/wheel.py":{"language":"Python","code":902,"comment":81,"blank":117},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py":{"language":"Python","code":4632,"comment":10,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/database.py":{"language":"Python","code":1135,"comment":45,"blank":180},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/big5freq.py":{"language":"Python","code":340,"comment":43,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py":{"language":"Python","code":145,"comment":10,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/mbcssm.py":{"language":"Python","code":547,"comment":68,"blank":47},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py":{"language":"Python","code":123,"comment":4,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py":{"language":"Python","code":20,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py":{"language":"Python","code":255,"comment":21,"blank":63},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/jpcntx.py":{"language":"Python","code":171,"comment":46,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distlib/compat.py":{"language":"Python","code":861,"comment":101,"blank":177},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py":{"language":"Python","code":43,"comment":1,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/distro/distro.py":{"language":"Python","code":1035,"comment":90,"blank":275},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/__init__.py":{"language":"Python","code":84,"comment":19,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/version.py":{"language":"Python","code":7,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf8prober.py":{"language":"Python","code":44,"comment":26,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py":{"language":"Python","code":175,"comment":26,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sjisprober.py":{"language":"Python","code":65,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/universaldetector.py":{"language":"Python","code":265,"comment":63,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py":{"language":"Python","code":45,"comment":39,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py":{"language":"Python","code":108,"comment":40,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py":{"language":"Python","code":0,"comment":1,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/resultdict.py":{"language":"Python","code":9,"comment":4,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py":{"language":"Python","code":99,"comment":1,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/colorama/tests/utils.py":{"language":"Python","code":41,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py":{"language":"Python","code":97,"comment":5,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py":{"language":"Python","code":156,"comment":0,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py":{"language":"Python","code":111,"comment":9,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py":{"language":"Python","code":62,"comment":0,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/other.py":{"language":"Python","code":129,"comment":3,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py":{"language":"Python","code":126,"comment":4,"blank":25},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py":{"language":"Python","code":405,"comment":45,"blank":72},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/img.py":{"language":"Python","code":520,"comment":22,"blank":104},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py":{"language":"Python","code":275,"comment":22,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/html.py":{"language":"Python","code":789,"comment":23,"blank":178},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py":{"language":"Python","code":128,"comment":0,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py":{"language":"Python","code":85,"comment":1,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py":{"language":"Python","code":556,"comment":2,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/pygments/lexers/python.py":{"language":"Python","code":1056,"comment":67,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/bot_web/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py":{"language":"Python","code":308,"comment":34,"blank":11}} \ No newline at end of file diff --git a/.VSCodeCounter/2024-10-05_01-21-34/details.md b/.VSCodeCounter/2024-10-05_01-21-34/details.md index b653f244..4f1838db 100644 --- a/.VSCodeCounter/2024-10-05_01-21-34/details.md +++ b/.VSCodeCounter/2024-10-05_01-21-34/details.md @@ -516,7 +516,7 @@ Total : 584 files, 70074 codes, 18431 comments, 9994 blanks, all 98499 lines | [static/js/components/common/temporary/overlay_error.js](/static/js/components/common/temporary/overlay_error.js) | JavaScript | 17 | 0 | 2 | 19 | | [static/js/components/common/video.js](/static/js/components/common/video.js) | JavaScript | 10 | 0 | 4 | 14 | | [static/js/dom.js](/static/js/dom.js) | JavaScript | 169 | 18 | 11 | 198 | -| [static/js/lib/business_objects.js](/static/js/lib/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | +| [static/js/lib/business_objects/business_objects.js](/static/js/lib/business_objects/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 | | [static/js/lib/common.js](/static/js/lib/common.js) | JavaScript | 63 | 3 | 19 | 85 | | [static/js/lib/constants.js](/static/js/lib/constants.js) | JavaScript | 4 | 1 | 2 | 7 | | [static/js/lib/events.js](/static/js/lib/events.js) | JavaScript | 9 | 0 | 1 | 10 | diff --git a/.VSCodeCounter/2024-10-05_01-21-34/results.json b/.VSCodeCounter/2024-10-05_01-21-34/results.json index abf3bf63..e68f9990 100644 --- a/.VSCodeCounter/2024-10-05_01-21-34/results.json +++ b/.VSCodeCounter/2024-10-05_01-21-34/results.json @@ -1 +1 @@ -{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":96,"comment":16,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":58,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/stock_item.py":{"language":"Python","code":53,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":37,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/routes.py":{"language":"Python","code":40,"comment":6,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":20,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":73,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":28,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":41,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":18,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Split_Temp.sql":{"language":"SQL","code":7,"comment":2,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":213,"comment":2,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":14579,"comment":3389,"blank":2259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql":{"language":"SQL","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_calc_user.sql":{"language":"SQL","code":22,"comment":14,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_calc_user.sql":{"language":"SQL","code":425,"comment":87,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_validate_guid.sql":{"language":"SQL","code":29,"comment":21,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":14,"comment":8,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":68,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_debug_timing_reporting.sql":{"language":"SQL","code":26,"comment":12,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":28,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql":{"language":"SQL","code":24,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":557,"comment":157,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":738,"comment":201,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_permutation.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":381,"comment":95,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_calc_product_permutation.sql":{"language":"SQL","code":528,"comment":108,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":290,"comment":86,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_report.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":82,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":65,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":139,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":248,"comment":9,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/storage_location.py":{"language":"Python","code":61,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":79,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":614,"comment":173,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21}} \ No newline at end of file +{"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/requirements.txt":{"language":"pip requirements","code":12,"comment":1,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package.json":{"language":"JSON","code":37,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/extensions.py":{"language":"Python","code":11,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/passenger_wsgi.py":{"language":"Python","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/pay_stripe.py":{"language":"Python","code":110,"comment":37,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/__init__.py":{"language":"Python","code":13,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/README.md":{"language":"Markdown","code":7,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/webpack.config.js":{"language":"JavaScript","code":111,"comment":24,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/unit_measurement.py":{"language":"Python","code":35,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/forms.py":{"language":"Python","code":96,"comment":16,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/base.py":{"language":"Python","code":58,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/stock_item.py":{"language":"Python","code":53,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_category.py":{"language":"Python","code":37,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product_permutation.py":{"language":"Python","code":54,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/store/product.py":{"language":"Python","code":26,"comment":5,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/package-lock.json":{"language":"JSON","code":4383,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/forms/access_level.py":{"language":"Python","code":30,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/payments/pay_stripe.py":{"language":"Python","code":106,"comment":30,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/run.py":{"language":"Python","code":12,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/routes.py":{"language":"Python","code":40,"comment":6,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_contact.py":{"language":"Python","code":25,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_base.py":{"language":"Python","code":295,"comment":28,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin_home.py":{"language":"Python","code":18,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_home.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_admin.py":{"language":"Python","code":17,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_statement.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_home.py":{"language":"Python","code":33,"comment":17,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product.py":{"language":"Python","code":40,"comment":15,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_user.py":{"language":"Python","code":20,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_supplier.py":{"language":"Python","code":26,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/Model_View_Store_Stock_Item.py":{"language":"Python","code":73,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_permutation.py":{"language":"Python","code":81,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/python/rename_files.py":{"language":"Python","code":14,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_product_category.py":{"language":"Python","code":37,"comment":9,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout_success.py":{"language":"Python","code":27,"comment":13,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_checkout.py":{"language":"Python","code":42,"comment":14,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store_basket.py":{"language":"Python","code":60,"comment":19,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_store.py":{"language":"Python","code":351,"comment":68,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_services.py":{"language":"Python","code":16,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_retention_schedule.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_privacy_policy.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_license.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/models/model_view_accessibility_report.py":{"language":"Python","code":16,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/106_tbl_Shop_Category.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/104_tbl_Shop_General.sql":{"language":"SQL","code":11,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/105_tbl_Shop_General_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/103_tbl_File_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/102_tbl_File_Type.sql":{"language":"SQL","code":11,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100_tbl_Msg_Error_Type.sql":{"language":"SQL","code":7,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.4_tbl_Shop_Currency.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":22,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.0_tbl_Shop_Region.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql":{"language":"SQL","code":14,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":7,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/001_destroy.sql":{"language":"SQL","code":214,"comment":3,"blank":76},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.8_tbl_Shop_Product.sql":{"language":"SQL","code":19,"comment":24,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/114_tbl_Shop_Variation.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/_shared.html":{"language":"HTML","code":0,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/dom.js":{"language":"JavaScript","code":169,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":26,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1005_tbl_Msg_Error_Type.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1010_tbl_File_Type.sql":{"language":"SQL","code":12,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_home.html":{"language":"HTML","code":5,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1115_tbl_Shop_Currency.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_checkout_success.html":{"language":"HTML","code":23,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_products.html":{"language":"HTML","code":87,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/000_combine.sql":{"language":"SQL","code":9567,"comment":4004,"blank":1543},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_basket.html":{"language":"HTML","code":36,"comment":28,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql":{"language":"SQL","code":8,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1116_tbl_Shop_Currency_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1117_tbl_Shop_Currency_Temp.sql":{"language":"SQL","code":11,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_categories.html":{"language":"HTML","code":81,"comment":16,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1109_tbl_Shop_Storage_Location.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1108_tbl_Shop_Plant_Temp.sql":{"language":"SQL","code":10,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1107_tbl_Shop_Plant_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/images/MS_SQL_Server.svg":{"language":"XML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":19,"comment":17,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/retention_schedule.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/privacy_policy.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/license.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_statement.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":15,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1200_tbl_Shop_Product_Category.sql":{"language":"SQL","code":20,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/legal/accessibility_report.js":{"language":"JavaScript","code":13,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql":{"language":"SQL","code":26,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_supplier.html":{"language":"HTML","code":89,"comment":23,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_stock_items.html":{"language":"HTML","code":115,"comment":23,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/store/_product_permutations.html":{"language":"HTML","code":152,"comment":17,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1203_tbl_Shop_Product.sql":{"language":"SQL","code":22,"comment":21,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/167_tbl_Shop_User_Basket.sql":{"language":"SQL","code":27,"comment":7,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":16,"comment":7,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/user/user.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1205_tbl_Shop_Product_Temp.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1206_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":44,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":16,"comment":11,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1204_tbl_Shop_Product_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql":{"language":"SQL","code":28,"comment":2,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base_table.js":{"language":"JavaScript","code":358,"comment":131,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/165_tbl_Shop_Address.sql":{"language":"SQL","code":19,"comment":9,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1106_tbl_Shop_Plant.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/base.js":{"language":"JavaScript","code":183,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql":{"language":"SQL","code":9,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/162_tbl_Shop_User_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":20,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1103_tbl_Shop_Region_Branch.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/161_tbl_Shop_User.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1102_tbl_Shop_Region_Temp.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1101_tbl_Shop_Region_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1100_tbl_Shop_Region.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":8,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1209_tbl_Shop_Variation_Type.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1014_tbl_Shop_Image_Type.sql":{"language":"SQL","code":16,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/157_tbl_Shop_Role.sql":{"language":"SQL","code":14,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1013_tbl_Shop_General_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1012_tbl_Shop_General.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":23,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/155_tbl_Shop_Permission.sql":{"language":"SQL","code":23,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.0_tbl_Shop_Customer.sql":{"language":"SQL","code":24,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1213_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1212_tbl_Shop_Variation.sql":{"language":"SQL","code":20,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1011_tbl_File_Type_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1003_tbl_Shop_Access_Level.sql":{"language":"SQL","code":16,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/130.4_tbl_Shop_Discount.sql":{"language":"SQL","code":30,"comment":13,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1300_tbl_Shop_Permission_Group.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1306_tbl_Shop_Role.sql":{"language":"SQL","code":15,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/303_tri_File_Type_Audit.sql":{"language":"SQL","code":24,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1304_tbl_Shop_Permission_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/302_tri_File_Type.sql":{"language":"SQL","code":37,"comment":4,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1303_tbl_Shop_Permission.sql":{"language":"SQL","code":24,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/304_tri_Shop_General.sql":{"language":"SQL","code":36,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1307_tbl_Shop_Role_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_services.html":{"language":"HTML","code":93,"comment":19,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_home.html":{"language":"HTML","code":9,"comment":19,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_contact.html":{"language":"HTML","code":70,"comment":38,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql":{"language":"SQL","code":26,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql":{"language":"SQL","code":52,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/core/_admin_home.html":{"language":"HTML","code":33,"comment":18,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":16,"comment":1,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1234_tbl_Shop_Discount_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":20,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1233_tbl_Shop_Discount.sql":{"language":"SQL","code":31,"comment":12,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/services.js":{"language":"JavaScript","code":13,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":21,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":41,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/home.js":{"language":"JavaScript","code":14,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/306_tri_Shop_Category.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/stock_items.js":{"language":"JavaScript","code":382,"comment":63,"blank":64},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1312_tbl_Shop_User.sql":{"language":"SQL","code":21,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/accessibility_report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/contact.js":{"language":"JavaScript","code":10,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":31,"comment":1,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_permutations.js":{"language":"JavaScript","code":440,"comment":92,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/user/_user.html":{"language":"HTML","code":9,"comment":19,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/core/admin_home.js":{"language":"JavaScript","code":39,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/product_categories.js":{"language":"JavaScript","code":98,"comment":26,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin_table.js":{"language":"JavaScript","code":20,"comment":3,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/mixin.js":{"language":"JavaScript","code":318,"comment":112,"blank":18},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":19,"comment":11,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/home.js":{"language":"JavaScript","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/pages/store/basket.js":{"language":"JavaScript","code":137,"comment":12,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_accessibility_statement.html":{"language":"HTML","code":54,"comment":139,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1227_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":18,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql":{"language":"SQL","code":16,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1313_tbl_Shop_User_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1224_tbl_Shop_Product_Image.sql":{"language":"SQL","code":22,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql":{"language":"SQL","code":12,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1221_tbl_Shop_Product_Price.sql":{"language":"SQL","code":27,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1218_tbl_Shop_Stock_Item.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1001_tbl_Shop_User_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.0_tri_Shop_Region.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_license.html":{"language":"HTML","code":15,"comment":18,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1315_tbl_Shop_User_Role_Link.sql":{"language":"SQL","code":21,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_privacy_policy.html":{"language":"HTML","code":68,"comment":18,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Split_Temp.sql":{"language":"SQL","code":7,"comment":2,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql":{"language":"SQL","code":8,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0001_destroy.sql":{"language":"SQL","code":213,"comment":2,"blank":69},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/router.js":{"language":"JavaScript","code":88,"comment":243,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql":{"language":"SQL","code":39,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1318_tbl_Shop_Address.sql":{"language":"SQL","code":25,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.4_tri_Shop_Currency.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/pages/legal/_retention_schedule.html":{"language":"HTML","code":1806,"comment":146,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1319_tbl_Shop_Address_Audit.sql":{"language":"SQL","code":18,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.8_tri_Shop_Product.sql":{"language":"SQL","code":51,"comment":113,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":60,"comment":10,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/312_tri_Shop_Variation_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":82,"comment":42,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/314_tri_Shop_Variation.sql":{"language":"SQL","code":45,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":38,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/app.js":{"language":"JavaScript","code":37,"comment":37,"blank":16},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/api.js":{"language":"JavaScript","code":82,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql":{"language":"SQL","code":19,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/accessibility_statement.js":{"language":"JavaScript","code":4,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql":{"language":"SQL","code":15,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/120_tbl_Shop_Image.sql":{"language":"SQL","code":29,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/118_tbl_Shop_Image_Type.sql":{"language":"SQL","code":15,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":34,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":22,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql":{"language":"SQL","code":17,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql":{"language":"SQL","code":33,"comment":9,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1321_tbl_Shop_User_Basket.sql":{"language":"SQL","code":28,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql":{"language":"SQL","code":16,"comment":1,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/320_tri_Shop_Image.sql":{"language":"SQL","code":58,"comment":8,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":57,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/318_tri_Shop_Image_Type.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql":{"language":"SQL","code":49,"comment":38,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":20,"comment":10,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1422_tbl_Shop_Customer_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1421_tbl_Shop_Customer.sql":{"language":"SQL","code":25,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":7,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":33,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/store.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/business_objects/business_objects.js":{"language":"JavaScript","code":15,"comment":7,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql":{"language":"SQL","code":46,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":17,"comment":10,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/legal.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/sections/core.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":20,"comment":16,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1400_tbl_Shop_Supplier.sql":{"language":"SQL","code":27,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1397_tbl_Shop_Order_Status.sql":{"language":"SQL","code":16,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql":{"language":"SQL","code":17,"comment":6,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":52,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3012_tri_Shop_General.sql":{"language":"SQL","code":34,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3014_tri_Shop_Image_Type.sql":{"language":"SQL","code":50,"comment":6,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":46,"comment":22,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html":{"language":"HTML","code":60,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3100_tri_Shop_Region.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3011_tri_File_Type_Audit.sql":{"language":"SQL","code":21,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3010_tri_File_Type.sql":{"language":"SQL","code":37,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json":{"language":"JSON","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.0_tri_Shop_Supplier.sql":{"language":"SQL","code":64,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/0000_combine.sql":{"language":"SQL","code":14579,"comment":3389,"blank":2259},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3001_tri_Shop_User_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/test.py":{"language":"Python","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/367_tri_Shop_User_Basket.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":48,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/template%20webpage.html":{"language":"HTML","code":56,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Access_Level.sql":{"language":"SQL","code":50,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/server.py":{"language":"Python","code":81,"comment":19,"blank":24},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/365_tri_Shop_Address.sql":{"language":"SQL","code":64,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3000_tri_Shop_Product_Change_Set.sql":{"language":"SQL","code":15,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3115_tri_Shop_Currency.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3200_tri_Shop_Category.sql":{"language":"SQL","code":54,"comment":0,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3109_tri_Shop_Storage_Location.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3103_tri_Shop_Region_Branch.sql":{"language":"SQL","code":38,"comment":6,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql":{"language":"SQL","code":20,"comment":3,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql":{"language":"SQL","code":22,"comment":6,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":40,"comment":2,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql":{"language":"SQL","code":17,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/validation.js":{"language":"JavaScript","code":117,"comment":6,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":32,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/361_tri_Shop_User.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/utils.js":{"language":"JavaScript","code":9,"comment":10,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3203_tri_Shop_Product.sql":{"language":"SQL","code":54,"comment":106,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/local_storage.js":{"language":"JavaScript","code":9,"comment":48,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":43,"comment":13,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/357_tri_Shop_Role.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/extras.js":{"language":"JavaScript","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/355_tri_Shop_Permission.sql":{"language":"SQL","code":55,"comment":7,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/353_tri_Shop_Permission_Group.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/events.js":{"language":"JavaScript","code":9,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/docs/example%20abstract%20base%20class.py":{"language":"Python","code":70,"comment":2,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/constants.js":{"language":"JavaScript","code":4,"comment":1,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3212_tri_Shop_Variation.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3209_tri_Shop_Variation_Type.sql":{"language":"SQL","code":50,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3206_tri_Shop_Product_Permutation.sql":{"language":"SQL","code":112,"comment":36,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":40,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/lib/common.js":{"language":"JavaScript","code":63,"comment":3,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/330_tri_Shop_Discount.sql":{"language":"SQL","code":66,"comment":12,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql":{"language":"SQL","code":54,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.2_p_shop_get_many_region.sql":{"language":"SQL","code":24,"comment":31,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql":{"language":"SQL","code":42,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/702.1_p_shop_get_many_currency.sql":{"language":"SQL","code":26,"comment":26,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3403_tri_Shop_Unit_Measurement.sql":{"language":"SQL","code":66,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/701_p_shop_get_many_role_permission.sql":{"language":"SQL","code":0,"comment":148,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3400_tri_Shop_Supplier.sql":{"language":"SQL","code":66,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3324_tri_Shop_User_Order_Status.sql":{"language":"SQL","code":50,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3318_tri_Shop_Address.sql":{"language":"SQL","code":66,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/700_p_shop_get_many_product.sql":{"language":"SQL","code":736,"comment":436,"blank":60},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3321_tri_Shop_User_Basket.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/610_p_shop_save_user.sql":{"language":"SQL","code":94,"comment":47,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/611_p_shop_save_user_basket.sql":{"language":"SQL","code":499,"comment":297,"blank":38},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3315_tri_Shop_User_Role_Link.sql":{"language":"SQL","code":34,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":362,"comment":158,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/605_p_shop_save_customer.sql":{"language":"SQL","code":125,"comment":162,"blank":27},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3312_tri_Shop_User.sql":{"language":"SQL","code":70,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/_shared_store.html":{"language":"HTML","code":30,"comment":1,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/layouts/layout.html":{"language":"HTML","code":261,"comment":71,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":130,"comment":92,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7116_p_shop_get_many_currency.sql":{"language":"SQL","code":24,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/video.js":{"language":"JavaScript","code":10,"comment":0,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/select.js":{"language":"JavaScript","code":14,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7101_p_shop_get_many_region.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/textarea.js":{"language":"JavaScript","code":30,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/920_edit_permissions.sql":{"language":"SQL","code":70,"comment":4,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7003_p_shop_get_many_access_level.sql":{"language":"SQL","code":22,"comment":13,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/inputs/input_date.js":{"language":"JavaScript","code":38,"comment":133,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6501_p_shop_clear_calc_user.sql":{"language":"SQL","code":22,"comment":14,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/910_anal.sql":{"language":"SQL","code":16,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6500_p_shop_calc_user.sql":{"language":"SQL","code":425,"comment":87,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7122_p_shop_get_many_unit_measurement.sql":{"language":"SQL","code":26,"comment":9,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6206_fn_shop_get_product_permutation_name.sql":{"language":"SQL","code":27,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/901_view.sql":{"language":"SQL","code":87,"comment":52,"blank":50},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_validate_guid.sql":{"language":"SQL","code":29,"comment":21,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6001_p_clear_split_temp.sql":{"language":"SQL","code":14,"comment":8,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/900_populate.sql":{"language":"SQL","code":444,"comment":166,"blank":46},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_split.sql":{"language":"SQL","code":68,"comment":16,"blank":19},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":469,"comment":206,"blank":44},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/6000_p_debug_timing_reporting.sql":{"language":"SQL","code":26,"comment":12,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/709_p_shop_get_many_customer.sql":{"language":"SQL","code":136,"comment":85,"blank":29},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category.sql":{"language":"SQL","code":224,"comment":13,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":375,"comment":187,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3421_tri_Shop_Customer.sql":{"language":"SQL","code":62,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":487,"comment":178,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/706_p_shop_get_many_supplier.sql":{"language":"SQL","code":136,"comment":84,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql":{"language":"SQL","code":70,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":181,"comment":105,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/table.js":{"language":"JavaScript","code":13,"comment":1,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/703_p_shop_get_many_user_order.sql":{"language":"SQL","code":143,"comment":111,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":312,"comment":258,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3306_tri_Shop_Role.sql":{"language":"SQL","code":46,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_shop_save_supplier.sql":{"language":"SQL","code":155,"comment":120,"blank":32},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7200_p_shop_save_product_category_test.sql":{"language":"SQL","code":216,"comment":17,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3303_tri_Shop_Permission.sql":{"language":"SQL","code":54,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3300_tri_Shop_Permission_Group.sql":{"language":"SQL","code":46,"comment":0,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/602_p_save_supplier_purchase_order.sql":{"language":"SQL","code":298,"comment":181,"blank":37},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql":{"language":"SQL","code":34,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3233_tri_Shop_Discount.sql":{"language":"SQL","code":74,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_user_eval.sql":{"language":"SQL","code":385,"comment":312,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/600_p_shop_save_product.sql":{"language":"SQL","code":199,"comment":28,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql":{"language":"SQL","code":42,"comment":28,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3227_tri_Shop_Delivery_Option.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3224_tri_Shop_Product_Image.sql":{"language":"SQL","code":54,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3221_tri_Shop_Product_Price.sql":{"language":"SQL","code":58,"comment":19,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3218_tri_Shop_Stock_Item.sql":{"language":"SQL","code":82,"comment":0,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/387.0_tri_Shop_Customer.sql":{"language":"SQL","code":61,"comment":9,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql":{"language":"SQL","code":38,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql":{"language":"SQL","code":67,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql":{"language":"SQL","code":49,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql":{"language":"SQL","code":24,"comment":18,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7203_p_shop_save_product.sql":{"language":"SQL","code":191,"comment":22,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7313_p_get_many_user.sql":{"language":"SQL","code":190,"comment":50,"blank":31},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql":{"language":"SQL","code":546,"comment":162,"blank":58},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7401_p_shop_get_many_supplier.sql":{"language":"SQL","code":157,"comment":74,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7403_p_save_supplier_purchase_order.sql":{"language":"SQL","code":377,"comment":137,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7400_p_shop_save_supplier.sql":{"language":"SQL","code":171,"comment":79,"blank":34},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql":{"language":"SQL","code":426,"comment":181,"blank":52},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/dark.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7321_p_shop_save_user_basket.sql":{"language":"SQL","code":608,"comment":175,"blank":48},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/themes/light.css":{"language":"CSS","code":33,"comment":6,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/batch/sql_combine.bat":{"language":"Batch","code":61,"comment":22,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7424_p_shop_save_customer_sales_order.sql":{"language":"SQL","code":383,"comment":132,"blank":43},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7422_p_shop_get_many_customer.sql":{"language":"SQL","code":169,"comment":63,"blank":40},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7421_p_shop_save_customer.sql":{"language":"SQL","code":167,"comment":101,"blank":33},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/main.css":{"language":"CSS","code":386,"comment":146,"blank":66},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9000_populate.sql":{"language":"SQL","code":574,"comment":145,"blank":55},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9001_view.sql":{"language":"SQL","code":137,"comment":14,"blank":57},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/store.css":{"language":"CSS","code":42,"comment":1,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/9010_anal.sql":{"language":"SQL","code":17,"comment":1,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7312_p_shop_save_user.sql":{"language":"SQL","code":109,"comment":42,"blank":30},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql":{"language":"SQL","code":161,"comment":42,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql":{"language":"SQL","code":534,"comment":181,"blank":62},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/legal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/stock_items.css":{"language":"CSS","code":33,"comment":0,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/js/sections/store.js":{"language":"JavaScript","code":78,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/reset.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/home.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/sections/core.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_permutations.css":{"language":"CSS","code":126,"comment":5,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/services.css":{"language":"CSS","code":18,"comment":16,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/home.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/store/product_categories.css":{"language":"CSS","code":61,"comment":19,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/admin_home.css":{"language":"CSS","code":6,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/core/contact.css":{"language":"CSS","code":7,"comment":14,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/typography.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/utils.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/lib/variables.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7219_p_shop_get_many_stock_item.sql":{"language":"SQL","code":557,"comment":157,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql":{"language":"SQL","code":738,"comment":201,"blank":68},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_product_permutation.sql":{"language":"SQL","code":428,"comment":99,"blank":35},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7206_p_shop_save_permutation.sql":{"language":"SQL","code":400,"comment":164,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_error.js":{"language":"JavaScript","code":17,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql":{"language":"SQL","code":209,"comment":57,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_get_many_product.sql":{"language":"SQL","code":381,"comment":95,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/js/components/common/temporary/overlay_confirm.js":{"language":"JavaScript","code":24,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7204_p_shop_calc_product_permutation.sql":{"language":"SQL","code":528,"comment":108,"blank":56},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/modal.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/form.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/card.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/button.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/dialog.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/MySQL/7210_p_shop_get_many_product_variation.sql":{"language":"SQL","code":290,"comment":86,"blank":41},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/license.css":{"language":"CSS","code":6,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/navigation.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/privacy_policy.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/retention_schedule.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/overlay.css":{"language":"CSS","code":6,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_statement.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/pages/legal/accessibility_report.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/footer.css":{"language":"CSS","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/components/table.css":{"language":"CSS","code":25,"comment":5,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/header.css":{"language":"CSS","code":12,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html":{"language":"HTML","code":16,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/static/css/layouts/table-main.css":{"language":"CSS","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_category.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_currency.html":{"language":"HTML","code":15,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product.html":{"language":"HTML","code":13,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_body_home.html":{"language":"HTML","code":28,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_db_mysql.py":{"language":"Python","code":30,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_stock_item.html":{"language":"HTML","code":87,"comment":20,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_permutation.html":{"language":"HTML","code":158,"comment":0,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product_category.html":{"language":"HTML","code":44,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_product.html":{"language":"HTML","code":45,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket_item.html":{"language":"HTML","code":29,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_basket.html":{"language":"HTML","code":15,"comment":3,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_variation_types.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_row_address.html":{"language":"HTML","code":65,"comment":3,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html":{"language":"HTML","code":19,"comment":0,"blank":2},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_product_permutation_variations.html":{"language":"HTML","code":21,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html":{"language":"HTML","code":19,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/helpers/helper_app.py":{"language":"Python","code":25,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/data_types.py":{"language":"Python","code":10,"comment":20,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/lib/argument_validation.py":{"language":"Python","code":806,"comment":467,"blank":45},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/config.py":{"language":"Python","code":69,"comment":22,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/legal.py":{"language":"Python","code":62,"comment":5,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/core.py":{"language":"Python","code":77,"comment":6,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_user.py":{"language":"Python","code":132,"comment":22,"blank":28},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_input_number_plus_minus.html":{"language":"HTML","code":11,"comment":6,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/inputs/_option_blank.html":{"language":"HTML","code":1,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stripe.py":{"language":"Python","code":143,"comment":25,"blank":36},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/__init__.py":{"language":"Python","code":9,"comment":0,"blank":3},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/user.py":{"language":"Python","code":252,"comment":4,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_stock_item.py":{"language":"Python","code":82,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/unit_measurement.py":{"language":"Python","code":143,"comment":4,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_variation.py":{"language":"Python","code":70,"comment":14,"blank":15},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/sql_error.py":{"language":"Python","code":45,"comment":9,"blank":11},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_permutation.py":{"language":"Python","code":84,"comment":7,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/db_base.py":{"language":"Python","code":65,"comment":7,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product_category.py":{"language":"Python","code":79,"comment":11,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_product.py":{"language":"Python","code":108,"comment":8,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/base.py":{"language":"Python","code":50,"comment":3,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_address.html":{"language":"HTML","code":4,"comment":5,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_confirm.html":{"language":"HTML","code":14,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/template_overlay.html":{"language":"HTML","code":15,"comment":5,"blank":4},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_basket.py":{"language":"Python","code":113,"comment":21,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/temporary/_overlay_error.html":{"language":"HTML","code":10,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_store_base.py":{"language":"Python","code":240,"comment":48,"blank":42},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/user.py":{"language":"Python","code":139,"comment":18,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/datastores/datastore_base.py":{"language":"Python","code":227,"comment":30,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/order.py":{"language":"Python","code":63,"comment":12,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/image.py":{"language":"Python","code":106,"comment":5,"blank":17},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/discount.py":{"language":"Python","code":66,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_category.py":{"language":"Python","code":99,"comment":8,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stock_item.py":{"language":"Python","code":248,"comment":9,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_type.py":{"language":"Python","code":83,"comment":7,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation_tree.py":{"language":"Python","code":177,"comment":2,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product_permutation.py":{"language":"Python","code":133,"comment":6,"blank":20},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/product.py":{"language":"Python","code":80,"comment":6,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_price.py":{"language":"Python","code":97,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/storage_location.py":{"language":"Python","code":61,"comment":2,"blank":7},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_variation.py":{"language":"Python","code":178,"comment":7,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_category.py":{"language":"Python","code":463,"comment":13,"blank":13},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product_permutation.py":{"language":"Python","code":577,"comment":16,"blank":23},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/store_base.py":{"language":"Python","code":79,"comment":4,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/stock_item.py":{"language":"Python","code":75,"comment":4,"blank":14},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/product.py":{"language":"Python","code":614,"comment":173,"blank":26},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_region.py":{"language":"Python","code":92,"comment":3,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/stripe.py":{"language":"Python","code":140,"comment":9,"blank":12},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/delivery_option.py":{"language":"Python","code":89,"comment":2,"blank":8},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/currency.py":{"language":"Python","code":108,"comment":5,"blank":10},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/store.py":{"language":"Python","code":22,"comment":3,"blank":5},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/basket.py":{"language":"Python","code":144,"comment":17,"blank":22},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/supplier.py":{"language":"Python","code":50,"comment":10,"blank":9},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/access_level.py":{"language":"Python","code":78,"comment":2,"blank":6},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/business_objects/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_slider_display_order.html":{"language":"HTML","code":13,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/controllers/store/__init__.py":{"language":"Python","code":0,"comment":0,"blank":1},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/templates/components/common/buttons/_buttons_save_cancel.html":{"language":"HTML","code":48,"comment":0,"blank":0},"file:///c%3A/Users/edwar/OneDrive/Documents/Programming/Visual%20Studio%202022/PARTS_Web/app/app.py":{"language":"Python","code":107,"comment":12,"blank":21}} \ No newline at end of file diff --git a/business_objects/__pycache__/base.cpython-312.pyc b/business_objects/__pycache__/base.cpython-312.pyc index 097ed161cc582d3d14c6b46ad1117cd2eb7091d6..b5a355f17a655cb9548452da06bb1843f4a7e595 100644 GIT binary patch delta 425 zcmeBHyQs!{nwOW00SKn1OQo;g$Xm$Bcw=)t<78&9l;|kqRF+g$NuXpZTS|-#kmh7a zHA#tWVOR~)0R&N|sb(p0NPKgkd^{50qB217FDarzg@D!IMmSiSFg$jW}Ma4j3B|{O&0I<Ia%KVr{WL9#QZ~o% zNiw?K;!e&7FDarup;3+OiEXhoU3grWZiVA_mN`@kkUa+Y}Y#~^4pf&dCiD9ZIM>SM`GO6&Aio zrSk>2kjuOyb7@ba0HEd4#gV4?EyA_Ut}17|H`snLTTx;g0|wpXeoR11pv)}0sp$(Q z4KK~uE?~F>J!J}v;0gb=V^U@Zd9H3?_l5XqW?FnxcX;R zv^-3ZD_TjAB|4iVi&jUyCRs-bM2}NsiEU?x7{3wh@rj*cM;dnuHT*ERlYP(s3ckc` z@@Hrvw0UPu3RB@>cAZ}f54Z>Mx3h6(N$~-GFZ|hx&`7%*geW&zl;3hB484%eSuNAK zyq3|R)`(*+PcOZBdqTXWOzK7|zxg^=%a~#4S}G^hTkf=;GR>@(KX0foKqZC zFiPe@f=>tz5qwH8O)yJvf?zKJ$%lRd=LXO;n)#bc=~}l*j*hB~R@H;nKeF85 z(5gBF_kVHk#Xa}9l=kPH9;LM!l^i?}4dFZNj-EQW14UVmd~uO3%R!EE%uqGGCcC+n jm(D|3LoMjqVbJ*9=ukMrSZfKcU-|LM&(RkWd7|$(giPow^w zPN$L3v9MG){<7$~{xw36vLBEj^~Ch^l995QfnqstkC|h}dGrjn(lJsIE2Me%tjSxH zU6N-I+9hV?6PJ~)ttv#>SV9oF>(e}*jo{P`Q5s2NTlT#&gwPOiDu&eZK8aTuzS%;4 zaBjkJCFih_p2Wof7780GAd+D_Bpd)PfC>tNfMAkJ8mVUaj zU(2aIO;WC{%h$ui2J=0%w@qWrPmayj#c?Vb3A9Fp>8Yv21dnq)Ed(7CfSH0f-&593 z*4Y0neAU(~FEa~dPF3l0RId1!YcuKxhBaHoO2u*k4R!g_v)j65bdp_?6BG_^ssyH` z0PIO1Q7-U_xPWMe-Wz#kC`WPf#jt=p*_iPYlC7dJ@tN9_z$J3+A^(L)TX!IsV+3wd z%aVP=U9H`r+-u-~9)v^_TMKmb^@RMxk?!6=u$PJF5Bb~rJ1zy86MTm5-?y=4Dn(Po zXnsL$yfvGo1I={RYrrkQ%&f@9`7}NcQ&yV~B37y&BG$!y8@Ls6tmrm~pmMJqyGgyJ z%uq!qf}BF`<&rBFH@Z#kS$652-m=Cm2TeTW@VB)VEs`o*mDWSghP_CXcq_?(ty9Z9 z!q>$<^3+y#huKy3rSZh%_(9v4MN!e7NJZ1ESGm5ZT2rY6ADv_#MeSH3DhNqFeKi%s z$APjI-~>PeKobD`E*t>p0O$g!0{~~Z2tFfL?*R}9qa<$sby20T?Z_m`!c8fSHjOme zlFIjUG}_d#+)?`u<+hFFqr*-6wc{8ddF=Qpff+OV7okTR)&Kwi diff --git a/business_objects/base.py b/business_objects/base.py index b2957ac5..5959d11c 100644 --- a/business_objects/base.py +++ b/business_objects/base.py @@ -35,6 +35,7 @@ class Base(): FLAG_CITY: ClassVar[str] = 'city' FLAG_CODE: ClassVar[str] = 'code' FLAG_COUNTY: ClassVar[str] = 'county' + FLAG_CREATED_BY: ClassVar[str] = 'created_by' FLAG_CREATED_ON: ClassVar[str] = 'created_on' FLAG_CURRENCY: ClassVar[str] = 'currency' FLAG_CURRENCY_COST: ClassVar[str] = 'currency_cost' diff --git a/business_objects/currency.py b/business_objects/currency.py index 3d43ee99..7a01f24e 100644 --- a/business_objects/currency.py +++ b/business_objects/currency.py @@ -68,8 +68,6 @@ class Currency(db.Model, Store_Base): return currency @classmethod def from_DB_get_many_product_catalogue_product_permutation(cls, query_row): - _m = 'Currency.from_DB_get_many_product_catalogue_product_permutation' - v_arg_type = 'class attribute' currency = cls() currency.id_currency = query_row[5] currency.code = query_row[6] @@ -77,14 +75,10 @@ class Currency(db.Model, Store_Base): return currency @classmethod def from_DB_get_many_product_price_and_discount_and_delivery_region(cls, query_row): - _m = 'Currency.from_DB_get_many_product_price_and_discount_and_delivery_region' - v_arg_type = 'class attribute' currency = cls() return currency @classmethod def from_DB_stock_item(cls, query_row): - _m = 'Currency.from_DB_get_many_stock_item' - v_arg_type = 'class attribute' currency = cls() currency.id_currency = query_row[12] currency.code = query_row[13] @@ -92,12 +86,24 @@ class Currency(db.Model, Store_Base): return currency @classmethod def from_DB_supplier(cls, query_row): - _m = 'Currency.from_DB_supplier' - v_arg_type = 'class attribute' currency = cls() currency.id_currency = query_row[1] - currency.symbol = query_row[2] - currency.code = query_row[3] + currency.code = query_row[2] + currency.symbol = query_row[3] + return currency + @classmethod + def from_DB_supplier_purchase_order(cls, query_row): + currency = cls() + currency.id_currency = query_row[3] + currency.code = query_row[4] + currency.symbol = query_row[5] + return currency + @classmethod + def from_DB_manufacturing_purchase_order(cls, query_row): + currency = cls() + currency.id_currency = query_row[1] + currency.code = query_row[2] + currency.symbol = query_row[3] return currency def __repr__(self): return f''' diff --git a/business_objects/store/__pycache__/product_permutation.cpython-312.pyc b/business_objects/store/__pycache__/product_permutation.cpython-312.pyc index 32ad09125657f926982cc50bc9ecc07eb79ce0f7..f6ef51e860dfe3c9980b9102b032d8becc6eb2d9 100644 GIT binary patch delta 337 zcmX@Tn`zf>Cce|Wyj%=G(6vH5ef^}3d|UZNgmV&0QuC54<8u@9O4AaPOG=AUH{ap+ z5#rV|-r%@Wr-Sk~ zk5Jew6RE(?_-e9k!cJMG54;)z0w4Gol+~{*SzT1Jx}a$NfgdcyXtP-)u|bwq-sA#{ z%;uSOK};f2$}^PaYtGbM;I!Opq1R<8{R=GOi~lz;Gp1~6Dd6T+GQFn5QWfk;0LqRrS`MSw@|B9Gn%mg@$-7Y%$jC%dO}D1ca36#Xs=_+96Z zxX2%IAu|0kf5rulj3QT{vB`{+FQ$oX{^$RWgHe6*+Xw|#h@*HT71$YHPu5G=DX0E{ zS3^MH10REi&UJN{i|Q^H)LcLCgM}E~7&o&dHpsH7*j->z+}v3g#3UlGF{5aH<;=~@N>Q>j)gD%2{e30@?{pw%@#A8SO8BfheQAX diff --git a/business_objects/store/__pycache__/store_base.cpython-312.pyc b/business_objects/store/__pycache__/store_base.cpython-312.pyc index ccfd7f24f866588075a975a6b52acb36e7dc1cf0..75065891ea4081aa4423995467a73eab01fa4a4d 100644 GIT binary patch delta 694 zcmcbmbJBqCG%qg~0}zz$7f%nA*vPklkx7Gf^9IIU%uFfKlZ#lbI8x1LGo&QWWtzN> z^;msMX_QkcODd}*P)jOXN|_CiPAQLaMiQ$4i&aLsAc<9h#j2xRk;H1iVzp6jNMdy$ zvC4YQhFe_0CHY0E@lJ`wskgW@Q{t0Li%arzH}|t?GRsK=`K5W8CGk0lC8>GImGQZW zd8KKI$t9&lskd|{pXQVl_Hhhx^>dDl_jU9Ob#rtM2@P`Hyqz%jJRoBNLmmA>JVPQU zKjfEZbl=PPO4qeR3MiTh>LY5YltZeIx{jFO%VCY0HVR_0s98t Ay8r+H delta 197 zcmX?Ua7%~pG%qg~0}$9w6inYIwvlfEBhwL<%^MhZF>|Dv%w|Z5p35{jht-NHC2{gP z)?+M{rJ7}%@31*AZ%*g(XPW$!$8obO?=0rY*@AM6PMf;~vl%Dz33oF#Z=NOW%Q*R) z$U#2y& 0: return jsonify({ Model_View_Store_Supplier_Purchase_Order.FLAG_STATUS: Model_View_Store_Supplier_Purchase_Order.FLAG_FAILURE, Model_View_Store_Supplier_Purchase_Order.FLAG_MESSAGE: f'Save errors: {save_errors}' }) - model_return = Model_View_Store_Supplier_Purchase_Order(filters_supplier_purchase_order_old = form_filters) + model_return = Model_View_Store_Supplier_Purchase_Order(form_filters_old = form_filters) if not model_return.is_user_logged_in: raise Exception('User not logged in.') return jsonify({ Model_View_Store_Supplier_Purchase_Order.FLAG_STATUS: Model_View_Store_Supplier_Purchase_Order.FLAG_SUCCESS, - Model_View_Store_Supplier_Purchase_Order.FLAG_DATA: model_return.category_list.to_json() + Model_View_Store_Supplier_Purchase_Order.FLAG_DATA: model_return.convert_list_objects_to_json(model_return.supplier_purchase_orders) }) except Exception as e: return jsonify({ diff --git a/datastores/__pycache__/datastore_store_product_permutation.cpython-312.pyc b/datastores/__pycache__/datastore_store_product_permutation.cpython-312.pyc index 468fa29212dbf0e5281d9e9f977cecb94b957e27..b1837090c332cbf9747cff60c24a58909159d9a1 100644 GIT binary patch delta 22 ccmbOzF;Rl|G%qg~0}ynr5Krga$jib506cXB)&Kwi delta 22 ccmbOzF;Rl|G%qg~0}wpwWlHDU$jib506sef0{{R3 diff --git a/datastores/datastore_store_manufacturing_purchase_order.py b/datastores/datastore_store_manufacturing_purchase_order.py index 60f89c53..791ee525 100644 --- a/datastores/datastore_store_manufacturing_purchase_order.py +++ b/datastores/datastore_store_manufacturing_purchase_order.py @@ -55,17 +55,21 @@ class DataStore_Store_Manufacturing_Purchase_Order(DataStore_Store_Base): result_set_1 = cursor.fetchall() print(f'raw manufacturing_purchase_orders: {result_set_1}') manufacturing_purchase_orders = [] + indices_manufacturing_purchase_order = {} for row in result_set_1: new_manufacturing_purchase_order = Manufacturing_Purchase_Order.from_DB_manufacturing_purchase_order(row) + indices_manufacturing_purchase_order[new_manufacturing_purchase_order.id_order] = len(manufacturing_purchase_orders) manufacturing_purchase_orders.append(new_manufacturing_purchase_order) # Manufacturing_Purchase_Orders Items + cursor.nextset() result_set_1 = cursor.fetchall() print(f'raw manufacturing_purchase_order_product_links: {result_set_1}') order_product_links = [] for row in result_set_1: new_link = Manufacturing_Purchase_Order_Product_Link.from_DB_manufacturing_purchase_order(row) - manufacturing_purchase_orders.append(new_manufacturing_purchase_order) + order_product_links.append(new_link) + manufacturing_purchase_orders[indices_manufacturing_purchase_order[new_link.id_order]].items.append(new_link) # Errors cursor.nextset() diff --git a/datastores/datastore_store_product_permutation.py b/datastores/datastore_store_product_permutation.py index 23ac372a..0d279cb9 100644 --- a/datastores/datastore_store_product_permutation.py +++ b/datastores/datastore_store_product_permutation.py @@ -66,7 +66,7 @@ class DataStore_Store_Product_Permutation(DataStore_Store_Base): cost_local, id_currency_cost, profit_local_min, - latency_manufacture_days, + latency_manufacture, id_unit_measurement_quantity, count_unit_measurement_quantity, quantity_min, diff --git a/datastores/datastore_store_supplier.py b/datastores/datastore_store_supplier.py index 8a947879..56cfa9ff 100644 --- a/datastores/datastore_store_supplier.py +++ b/datastores/datastore_store_supplier.py @@ -36,11 +36,12 @@ class DataStore_Store_Supplier(DataStore_Store_Base): def __init__(self): super().__init__() - def get_many_supplier(self, parameters_supplier): + @classmethod + def get_many_supplier(cls, parameters_supplier): _m = 'DataStore_Store_Supplier.get_many_supplier' av.val_instance(parameters_supplier, 'parameters_supplier', _m, Parameters_Supplier) argument_dict = parameters_supplier.to_json() - user = self.get_user_session() + user = cls.get_user_session() argument_dict = { 'a_id_user': user.id_user , **argument_dict @@ -48,7 +49,7 @@ class DataStore_Store_Supplier(DataStore_Store_Base): } print(f'argument_dict: {argument_dict}') print('executing p_shop_get_many_supplier') - result = self.db_procedure_execute('p_shop_get_many_supplier', argument_dict) + result = cls.db_procedure_execute('p_shop_get_many_supplier', argument_dict) cursor = result.cursor print('data received') diff --git a/datastores/datastore_store_supplier_purchase_order.py b/datastores/datastore_store_supplier_purchase_order.py index dead5a98..4c128e87 100644 --- a/datastores/datastore_store_supplier_purchase_order.py +++ b/datastores/datastore_store_supplier_purchase_order.py @@ -55,9 +55,22 @@ class DataStore_Store_Supplier_Purchase_Order(DataStore_Store_Base): result_set_1 = cursor.fetchall() print(f'raw supplier_purchase_orders: {result_set_1}') supplier_purchase_orders = [] + indices_supplier_purchase_order = {} for row in result_set_1: new_supplier_purchase_order = Supplier_Purchase_Order.from_DB_supplier_purchase_order(row) - supplier_purchase_orders.append(new_supplier_purchase_order) # , row) + indices_supplier_purchase_order[new_supplier_purchase_order.id_order] = len(supplier_purchase_orders) + supplier_purchase_orders.append(new_supplier_purchase_order) + + # Supplier_Purchase_Orders Items + cursor.nextset() + result_set_2 = cursor.fetchall() + print(f'raw supplier_purchase_order_product_links: {result_set_2}') + order_product_links = [] + for row in result_set_2: + new_link = Supplier_Purchase_Order_Product_Link.from_DB_supplier_purchase_order(row) + order_product_links.append(new_link) + supplier_purchase_orders[indices_supplier_purchase_order[new_link.id_order]].items.append(new_link) + # Errors cursor.nextset() diff --git a/models/__pycache__/model_view_base.cpython-312.pyc b/models/__pycache__/model_view_base.cpython-312.pyc index e6492ab5f008e099f7dd02a795e75ff92e33e5ea..e6ad9da9902379bf1e5f405522eddcb66cee4fdf 100644 GIT binary patch delta 2509 zcmZYAc}!GC90%~3Jz#-dIh17q(dA}ASWy;X1vJ$v7LT-An_}#`x({63L+3rJAQT&I zYH!S>h1kpVidLhk^oVWKBk6xlTIrF}7h6qZ8q+ie?cv$j-}fz8VmG^=oi}ghH^-ZK zb9jhfe~C}~(&0#D^f|sOud}c9z%&=XaG?BzKk9CGa~9&EX_3NcQF~FexV_l8PLGsC zOWR91GqL3?l(CP6GL<65b<~0&jJ21I*!ee{TjW_&L5iN-rN(37jvjf_w2-%sG??3` zIm!lk$hD8RAEW;=`D*6JmCA8Smh59k6ERr(DI=$JO3sIayeGAyd?c9lkdt4LpH(zv zXH#k276^o6VJ#34)9F%Nm6;wVza}d@MeZB8Zx5@1NW8OC2~jz5ow7U@Vd7NuitO@~ zrkRmUCVE}cUf~)!>B-|&w@}Qan^jHd)<}G(B0MIelAgRd9*-!&m};UTZnrSYE0rs` zRXXP6%8ga6xmVF<(w2CvBit!Cg;nXtQ0|ke)ke8>-b8efOgBU--JXao94I~+m(s?~ zUbh^r%9d}=siE5cRBw>p>ef2+Ur+7`M>IvKx+xG9H;r}`A>u++t!NS-VT>-9O81sh zm>KfZ>SiO%(FMj7NK37U!qn7mO3Vh=lRFhH zsA=MeS)iJ3-lp^jT5(J@Cq`q0(5vO8x@!4b?e8TMO;#XqA@KaK@H{G9AUDj<9+@-0 zjpyW2AW?;)Mx{7i9x;g``D~pt3H{T3RNg1g)*Yv=J?ndaftNBpNn$Rl)B+faFUz<%Dxma>gY)U@3v5_wX`)>>rCgVy{YldT>)%ezniv;F}*1mHXg8u)svKMJg2nn zLU}l>>-a8*lVPHy5CnlnUYVBd?oUZ+8W7B6} zX4aH7eE*WM^t|EC-=w?8GV+JD(Tw83w6UDLq1^{|%l`eXXY84S_YChE?mC_2`OaQB zX3rUJIMjM<-4E3(N9kL#YBYcKsD1SlZR2T(Hg0Db`KN7p!b?UPZM;d|Xsn=JQR1)W zJ@P(((e3=t{WEfxAu!idLP1RlXyK?bxjp1XzmGp6OBR+H<#Ura6G2c%QYXjW`Y7R8x(>fPz*{z3Md2Rzym5l z6_^8Rz+6xZ=7Rwr#JUm-Km+iDCeQ*FgS)^IuoNrU zAlLvlvH|iTBsYQ0U<*(H7Npn;x4U%+|rE4ToD1HXfdU|a@UT)w}N#33j$K^C}1=oTED z#`!C7E+-BwOC(I2%PEhv6b@Ku-5Ce5$U@2qa5@ScUt$)a+f^*cEm1|=8V`vQavd(~fgdaeOTh}T5@53!8$7WGjDsncF?-_ejzz47M%osore@i!`G1&MQr5VM zQsY^al51DYD;+nPt##uzy1Z=S)&ir5kxB%lSj6a IDWlnc0mtk`F#rGn delta 2035 zcmZY9du&rx90%}w+OA`-vJRNt=Aa!dYqxbRTT6wm8qxQRSUrY1bZ>JVO6oam0DtKEX!I{l4OXnk}{Lnz-ceYMW1)jXAQc z=2cym`8>Mif1|E~lF37bysqrhc@3(si;aOM_cR(SRZY$oG8rXJf&3q;3fMSf)aja- z4EQQ6DB6iJmq_?s#q)uB)_N1&EQVFnxlxiWJgxA6#SAh^w-pLmC6(7K)Wz-Q7U6Fl zU^da+Rwwqg_ScycveRU?s~Ij)T8%CV{Vuc)n*BDk%w*@K)WFNAc{Vq%MEBcysm#m7 z@wR>nYH!~pwg&qnn6^>6UCrtW*9?oC<2NXWVOKaWa7`;Qr{u=05bYwyeB$%A`Ql)&c3*24B`g<{{?l-2GtigcdldixhNrTL02;< zPq&9H+#^mzYVDY-5xr{=8Z3I0rg|d!Nvxe319l!lXc(B8+EBWai7%zwyFZw*Vm4co z_<7mKlxZ@yw|RCg+2|oPbJn!5Y-x2!=YhM!#lQoHL_Sd_zFd(A83HmDd$GAx|&t<3U?s(&g&B0@g9~DyW^{9&@G8NaVFlu;=e8h$WU(*r*RTAL&zZ zG0`$!hZkH6Fe78GET{7M0)1ZE?HcXUdNehF`@urs1|HA^yr2yDz!KmG0nh?kK@fyM z7<7Q~2#kVdAO@C$I7omV&}tH2u22l~N7U>z6$gWwVHC|D031CN6zKoUGDjgy;E zltBt?18Jau3{b&NkOet_waAA72Re8P>;hxp8L%5X3!Vde!1Le*Vw~?q@kOu?On?L6 zCGawM6&wVIz$ADbyaC<>Z-aNhyWl-=7)*f=z)?^Mj)4!sN5Z+XnSCafuiPCp24UE;Ds7zwVs)=)+{&mHhdpow*KkET<3ngXAX*ad`P*GGrdd}d~&q4zz*OwZ}c71ASFrJHXPjf35bf?r9&b5hG$ Vso{!!eF=+9sBg`?DxqYK_%F~j)QA88 diff --git a/models/__pycache__/model_view_store.cpython-312.pyc b/models/__pycache__/model_view_store.cpython-312.pyc index 9cfa9ef6155e9143135724b93454812349e834b5..fabac8d754d1227af547b983981bb57d9d5d757f 100644 GIT binary patch delta 4294 zcmZvfd010d8i#X2FhLfj1{Bl)R)HWm0Tcxn3=kDVSc8w8)@D*~L?RTt2^HK@Ti4nu z^t6f{7f|cc+7X&A+OZbx*wJwoGCHM`=`yy{*3MJAjJ2)pGwpoeNz{W6_m4Lx@A-Y_ zo_p@OH*oCtr~-~x&yB40t?Y^VI7FFq54#@n#Vm)$IR<+M9yH3Ka)ic# zbPSQgXTYZvL5B%05}ji>8ylKJhBFgqLuiVAxHEO&NcfFvh017N8N<%Z&@x}>2ol3S z3H^gd@Prr*qC4B$puM;)A)_m}B1$8Lb}8O%gMzwFYU- zO3?IPpR?6)L`2OZGEtP6WVFKZD7S=Da62*bME3i!}&Q-!=i`c401W`oLhhf)&tbA ze+(^ywmuv)6+jJZiR6*^cy{jL0WYb~7?L4YpC|T^9vkX}NG+ z^MmuB5|yMj2iuFFT@q|>h)Nav7KPv{7&k+&x5_1lP!26J0L2 z<=n|s7MzPaH+2cFnY)Ln8=WWkUR%Ls3vCvHt=z4o4-0M;cdO|N!L8wLEo~8;hr35; ztKimg_b6Q{IL~8TuBWR6xq-WlbhY3%akrVS5!@E;9;a&sx0Smms7G*5a<`2>BDn3` zwRz||LAG=G6n#{1jJv1lV}g5zyB&1B;C6D?K{p6)7kAInje`3Pcf08(?#!?;;AdqI zmwV}EA-In_9o-_hPVTzsD@_(tDbyRSrqaS1o5fgKJ;zvR1@BL~ zHIPpi@4XUxRXHVoPKj~u?QD^$q59is8DV+E{8Ww$|8qzp2O{J5X1e3QcgTBJV%PG$~nP!pNAx=Br~#39+n9 zr|~)yeo>S6nKR|PA>D9qvZY zG`sEYy2giWb&_1mJ~ZgaDfY7=7lxjeIgJ#s<(WPhwlHfxDc*^LTtN&+e1!NI@o&T@ z0KH1)1BW?XFrs94+vTg+_c_3&0wlsA_po=e(@7NznYX*dJYNs87YlzA~)=2Jg~ErMs{*jn}{C~Zy_!K{F=pfx1+XEZk1!9)*mk1 zV1Fpgs!LH~y?h+Y;3^eZv1tA*@&VgDUk5wn z#nL!-d48cLSQ^C=%&~zD9|FtcCyVdw31&7IkdN3lvmWYBm=BO{c7I7;U=7mQ?h-xu zl)YV&6&&dcGSWH=5pcw!tDNCEu~1%IA&pLJl4ud={*n zGGD+W?7oU$kssLBikS%$pijoY>VsdF4tm5eZ9@5 zC-NIm&Uf|f!0j4?!y(eJBP*P}XWf`Ew*sEPd8A1BP2i(XHKn_yH>79Hb%i3dNXhKg zH?##M{ROSQg4RBjp*!_Nc2CA7RV!<%NzzW8-#@k9H?_V`HKDVmJEUvPB~`t*dch*4 z-jLUCsP-AE`&7D4&5;pZk(X4}?@luIPolm_v`;mrV`-;rSHmS0Wp6LMs7*HXCmVgq z#y*v{ZE1(A9XgEOwwifFKXFR`M6++Axla|>F|D(3*UU>Q^SkLe{pl88x}{GQ-!ZSV zYM14b%EA&B#(J;OwM3g=+@J6A<-7V+8An=9gdBxQxxCK%FXP)M-}W>9D$cSu#J`HG lfg6=C&X1ZI4UJNByYju!t8`A32h$!%(=8a4=`YPe#Z zi1#S*VNqNHkCp-h0s(EfxEB{I^1=p&L}_;Noct*AYrw~88R+BVrRo@}j?=Oz>yMCS z)<%=p% zduT9HN|E7GBsmzFhLPA2Qe+rK?4s9{7Gl@RsLN&3KxP+T5UC=PY#zwWVvIQrR#r!( zjmT&=B`ey_q^;9?Cf_)ZQa4wBR zP5`ls-&oR&c1`RrixvO1#6ruM2%JhArBp;w z@+xVuvuLq)?Eodrw^>bP0U{RJQZ41d=pl-puvuA!c+-|El6-v>uK6|cr-9qGH^}?RpCxaMMt+`r2Kl$h*N}gkd?)z})>vQEhe^vw?AZE%2I;M_@akU z=_IzC>k?Z*>}l?i*h*qu+$*tF#8&eTiLD{_3|}mm=3}%zIX1dxLDf#P$)}&!3an0b~|~ za*%I8+7(>pOO*ODe_l#G6i9`S_eSM#x8WER;>9ue6w;^>F;KI z3k-VNjwrCz0QE_=)`b~^|4&n&~Nr6j0B0S@=*i5l+TptYm_+!f%dtbac zzI7nZ+hL(0bZYjFC@g4(sk~Is&Z?r!0SR;-HnD^?iu#Gup!3m*31QIrLh+#RYnZxA+$_#F{ebp+gBVm& zoQD(AzeBO1oI?o%@tc|zXNO1C^}C2HC^X@(#m16#ao=K!b=K6m&g$946?HS}=IS@Z zs3~KN_YGq1l#(ub#xy%0R^I=){L$Ui-@(AYQ0}3eN4WsvH#fMvYLi=ErVn87Gg5kv z{xF!8TMz6zO(eA0tG0ULpboYGFOgJg3!KF-#pu#>*5aE}ddUbIGGh7;Bm28}YsT9O zt^5u)q#gbdMq0^i15RR%eNUW|J{&Ud>Rmmw- zWYX0pc)cF2$b$KHrih}-BoSQ`&b|`q)u~WAvwA)ZbF?~hD4mdO$kH=F9?l)Q>N(>&1q;{)v&7!B)!u~0C)cz{5 zAM#+I-iKQqsZJZZSKP17VRuD(-K1go*6JfsMxmskq@!3-9HP5!_?URG{>W)%#nYX& zvrEcn)akhx%tOgX8H@5ulyNBG;(A?L`~b8?D37B|MkyAtv-c*|qisM@P*jvglqT_q z+3$93M%#-bP`06LN7;db2i_yp!ascHZh~M0 zF4K=9JBdPX{Z({dp#1eQRQf2;r{YWenTU^SFiHx_2owhjK50D%B~L7x6QA-LWYcM$ z9C$QCuo@);1I`F>XwEuO_T+zj8|Kb4#^q1Dp08ZVS3V3)-8cTol>L*ghAJXz-X-7N zdDEG1!F<7d<^@;r)xA;wBmN)xL}^WW1&72ZOC27VC$_qkjuy2@uMzd?6EV|GEPqSa Kw+6gZ+W!Fz+Q!fT diff --git a/models/model_view_base.py b/models/model_view_base.py index 02ddd5cb..7ca14822 100644 --- a/models/model_view_base.py +++ b/models/model_view_base.py @@ -29,7 +29,7 @@ from business_objects.user import User, User_Filters # external from abc import ABC, abstractmethod from flask_sqlalchemy import SQLAlchemy -from flask import Flask, session, current_app +from flask import Flask, session, current_app, jsonify from pydantic import BaseModel, ConfigDict from typing import ClassVar @@ -357,6 +357,16 @@ class Model_View_Base(BaseModel, ABC): def convert_dict_values_to_json(dict): return {key: dict[key].to_json() for key in dict.keys()} @staticmethod + def convert_list_objects_to_preview_str(list_objects): + preview_str = '' + for obj in list_objects: + if preview_str != '': + preview_str += '\n' + obj_json = obj.to_json() + print(f'obj_json: {obj_json}') + preview_str += obj_json[obj_json[Base.FLAG_NAME_ATTR_OPTION_TEXT]] + return preview_str + @staticmethod def join_with_linebreaks(strs): str_multiline = '' for str in strs: @@ -373,4 +383,7 @@ class Model_View_Base(BaseModel, ABC): def format_datetime(date_time): if date_time is None: return '' - return date_time.strftime('%Y-%m-%dT%H:%M') \ No newline at end of file + return date_time.strftime('%Y-%m-%dT%H:%M') + @staticmethod + def jsonify(data): + return jsonify(data) \ No newline at end of file diff --git a/models/model_view_store.py b/models/model_view_store.py index 604a8532..8d20b19b 100644 --- a/models/model_view_store.py +++ b/models/model_view_store.py @@ -48,6 +48,7 @@ class Model_View_Store(Model_View_Base): ATTR_ID_DELIVERY_OPTION: ClassVar[str] = Store_Base.ATTR_ID_DELIVERY_OPTION ATTR_ID_DISCOUNT: ClassVar[str] = Store_Base.ATTR_ID_DISCOUNT ATTR_ID_MANUFACTURING_PURCHASE_ORDER: ClassVar[str] = Store_Base.ATTR_ID_MANUFACTURING_PURCHASE_ORDER + ATTR_ID_MANUFACTURING_PURCHASE_ORDER_PRODUCT_LINK: ClassVar[str] = Store_Base.ATTR_ID_MANUFACTURING_PURCHASE_ORDER_PRODUCT_LINK ATTR_ID_PLANT: ClassVar[str] = 'id-plant' ATTR_ID_PRODUCT : ClassVar[str] = Product.ATTR_ID_PRODUCT # 'id-product' ATTR_ID_PRODUCT_CATEGORY: ClassVar[str] = Product.ATTR_ID_PRODUCT_CATEGORY @@ -60,6 +61,9 @@ class Model_View_Store(Model_View_Base): ATTR_ID_SUPPLIER: ClassVar[str] = Store_Base.ATTR_ID_SUPPLIER ATTR_ID_SUPPLIER_ADDRESS: ClassVar[str] = Store_Base.ATTR_ID_SUPPLIER_ADDRESS ATTR_ID_SUPPLIER_PURCHASE_ORDER: ClassVar[str] = Store_Base.ATTR_ID_SUPPLIER_PURCHASE_ORDER + ATTR_ID_SUPPLIER_PURCHASE_ORDER_PRODUCT_LINK: ClassVar[str] = Store_Base.ATTR_ID_SUPPLIER_PURCHASE_ORDER_PRODUCT_LINK + ATTR_ID_UNIT_MEASUREMENT_LATENCY_MANUFACTURE: ClassVar[str] = Product_Permutation.ATTR_ID_UNIT_MEASUREMENT_LATENCY_MANUFACTURE + ATTR_ID_UNIT_MEASUREMENT_QUANTITY: ClassVar[str] = Product_Permutation.ATTR_ID_UNIT_MEASUREMENT_QUANTITY FLAG_BUTTON_BASKET_ADD : ClassVar[str] = Model_View_Base.FLAG_SUBMIT + '.buttonAddToBasket' FLAG_BUTTON_BUY_NOW : ClassVar[str] = 'buttonBuyNow' """ @@ -92,7 +96,8 @@ class Model_View_Store(Model_View_Base): FLAG_IS_OUT_OF_STOCK: ClassVar[str] = Store_Base.FLAG_IS_OUT_OF_STOCK FLAG_IS_SEALED: ClassVar[str] = Stock_Item.FLAG_IS_SEALED FLAG_IS_SUBSCRIPTION: ClassVar[str] = Product_Permutation.FLAG_IS_SUBSCRIPTION - FLAG_LATENCY_MANUFACTURE_DAYS: ClassVar[str] = Product_Permutation.FLAG_LATENCY_MANUFACTURE_DAYS + FLAG_LATENCY_DELIVERY_DAYS: ClassVar[str] = Store_Base.FLAG_LATENCY_DELIVERY_DAYS + FLAG_LATENCY_MANUFACTURE: ClassVar[str] = Product_Permutation.FLAG_LATENCY_MANUFACTURE FLAG_MANUFACTURING_PURCHASE_ORDER: ClassVar[str] = Store_Base.FLAG_MANUFACTURING_PURCHASE_ORDER FLAG_NAME_PLURAL_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED: ClassVar[str] = Product_Permutation.FLAG_NAME_PLURAL_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED FLAG_NAME_PLURAL_UNIT_MEASUREMENT_INTERVAL_RECURRENCE: ClassVar[str] = Product_Permutation.FLAG_NAME_PLURAL_UNIT_MEASUREMENT_INTERVAL_RECURRENCE @@ -100,6 +105,7 @@ class Model_View_Store(Model_View_Base): FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED: ClassVar[str] = Product_Permutation.FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_INTERVAL_RECURRENCE: ClassVar[str] = Product_Permutation.FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_INTERVAL_RECURRENCE FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_QUANTITY: ClassVar[str] = Product_Permutation.FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_QUANTITY + FLAG_ORDER_ITEMS: ClassVar[str] = Store_Base.FLAG_ORDER_ITEMS FLAG_PLANT: ClassVar[str] = Store_Base.FLAG_PLANT FLAG_PRICE_TOTAL_LOCAL_VAT_EXCL: ClassVar[str] = Store_Base.FLAG_PRICE_TOTAL_LOCAL_VAT_EXCL FLAG_PRICE_TOTAL_LOCAL_VAT_INCL: ClassVar[str] = Store_Base.FLAG_PRICE_TOTAL_LOCAL_VAT_INCL @@ -116,6 +122,8 @@ class Model_View_Store(Model_View_Base): FLAG_QUANTITY: ClassVar[str] = 'quantity' FLAG_QUANTITY_MAX: ClassVar[str] = Product_Permutation.FLAG_QUANTITY_MAX # 'quantity-max' FLAG_QUANTITY_MIN: ClassVar[str] = Product_Permutation.FLAG_QUANTITY_MIN # 'quantity-min' + FLAG_QUANTITY_ORDERED: ClassVar[str] = Store_Base.FLAG_QUANTITY_ORDERED + FLAG_QUANTITY_RECEIVED: ClassVar[str] = Store_Base.FLAG_QUANTITY_RECEIVED FLAG_QUANTITY_STOCK: ClassVar[str] = Product_Permutation.FLAG_QUANTITY_STOCK # 'quantity-stock' FLAG_REGION: ClassVar[str] = Store_Base.FLAG_REGION FLAG_STOCK_ITEM: ClassVar[str] = Store_Base.FLAG_STOCK_ITEM @@ -132,6 +140,7 @@ class Model_View_Store(Model_View_Base): FLAG_SYMBOL_UNIT_MEASUREMENT_QUANTITY: ClassVar[str] = Product_Permutation.FLAG_SYMBOL_UNIT_MEASUREMENT_QUANTITY FLAG_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED: ClassVar[str] = Product_Permutation.FLAG_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED FLAG_UNIT_MEASUREMENT_INTERVAL_RECURRENCE: ClassVar[str] = Product_Permutation.FLAG_UNIT_MEASUREMENT_INTERVAL_RECURRENCE + FLAG_UNIT_MEASUREMENT_LATENCY_MANUFACTURE: ClassVar[str] = Store_Base.FLAG_UNIT_MEASUREMENT_LATENCY_MANUFACTURE FLAG_UNIT_MEASUREMENT_QUANTITY: ClassVar[str] = Product_Permutation.FLAG_UNIT_MEASUREMENT_QUANTITY HASH_GET_STORE_CUSTOMER_SALES_ORDER: ClassVar[str] = '/store/customer_sales_order_get' HASH_GET_STORE_MANUFACTURING_PURCHASE_ORDER: ClassVar[str] = '/store/manufacturing_purchase_order_get' diff --git a/models/model_view_store_manufacturing_purchase_order.py b/models/model_view_store_manufacturing_purchase_order.py index fd0fafbe..92658044 100644 --- a/models/model_view_store_manufacturing_purchase_order.py +++ b/models/model_view_store_manufacturing_purchase_order.py @@ -13,11 +13,18 @@ Data model for manufacturing purchase order view page # internal from models.model_view_store import Model_View_Store from datastores.datastore_store_manufacturing_purchase_order import DataStore_Store_Manufacturing_Purchase_Order -from business_objects.store.manufacturing_purchase_order import Manufacturing_Purchase_Order, Parameters_Manufacturing_Purchase_Order +from business_objects.store.product import Product, Parameters_Product +from business_objects.store.product_category import Product_Category_Container +from business_objects.store.manufacturing_purchase_order import Manufacturing_Purchase_Order, Parameters_Manufacturing_Purchase_Order, Manufacturing_Purchase_Order_Product_Link from forms.store.manufacturing_purchase_order import Filters_Manufacturing_Purchase_Order import lib.argument_validation as av +# external +from typing import ClassVar class Model_View_Store_Manufacturing_Purchase_Order(Model_View_Store): + FLAG_QUANTITY_PRODUCED: ClassVar[str] = Manufacturing_Purchase_Order_Product_Link.FLAG_QUANTITY_PRODUCED + FLAG_QUANTITY_USED: ClassVar[str] = Manufacturing_Purchase_Order_Product_Link.FLAG_QUANTITY_USED + category_list_filters: Product_Category_Container = None currencies: list = None currency_options: list = None form_filters: Filters_Manufacturing_Purchase_Order = None @@ -25,6 +32,8 @@ class Model_View_Store_Manufacturing_Purchase_Order(Model_View_Store): manufacturing_purchase_orders: list = None units_measurement: list = None units_measurement_time: list = None + variation_types: list = None + variations: list = None @property def title(self): @@ -38,6 +47,8 @@ class Model_View_Store_Manufacturing_Purchase_Order(Model_View_Store): parameters_manufacturing_purchase_order = Parameters_Manufacturing_Purchase_Order.from_filters_manufacturing_purchase_order(form_filters_old) datastore_manufacturing_purchase_order = DataStore_Store_Manufacturing_Purchase_Order() self.manufacturing_purchase_orders, errors = datastore_manufacturing_purchase_order.get_many_manufacturing_purchase_order(parameters_manufacturing_purchase_order) + self.category_list_filters, errors = DataStore_Store_Manufacturing_Purchase_Order.get_many_product(Parameters_Product.get_default()) + self.variation_types, self.variations, errors = self.get_many_product_variation() self.units_measurement = self.get_many_unit_measurement() self.units_measurement_time = [unit_measurement for unit_measurement in self.units_measurement if unit_measurement.is_unit_of_time] self.currencies = self.get_many_currency() diff --git a/models/model_view_store_supplier_purchase_order.py b/models/model_view_store_supplier_purchase_order.py index b06f0127..17ed23ef 100644 --- a/models/model_view_store_supplier_purchase_order.py +++ b/models/model_view_store_supplier_purchase_order.py @@ -12,19 +12,27 @@ Data model for supplier purchase order view page # internal from models.model_view_store import Model_View_Store +from datastores.datastore_store_supplier import DataStore_Store_Supplier from datastores.datastore_store_supplier_purchase_order import DataStore_Store_Supplier_Purchase_Order +from business_objects.store.product import Product, Parameters_Product +from business_objects.store.product_category import Product_Category_Container +from business_objects.store.supplier import Supplier, Parameters_Supplier from business_objects.store.supplier_purchase_order import Supplier_Purchase_Order, Parameters_Supplier_Purchase_Order from forms.store.supplier_purchase_order import Filters_Supplier_Purchase_Order import lib.argument_validation as av class Model_View_Store_Supplier_Purchase_Order(Model_View_Store): + category_list_filters: Product_Category_Container = None currencies: list = None currency_options: list = None form_filters: Filters_Supplier_Purchase_Order = None form_filters_old: Filters_Supplier_Purchase_Order supplier_purchase_orders: list = None + suppliers: list = None units_measurement: list = None units_measurement_time: list = None + variation_types: list = None + variations: list = None @property def title(self): @@ -38,7 +46,10 @@ class Model_View_Store_Supplier_Purchase_Order(Model_View_Store): parameters_supplier_purchase_order = Parameters_Supplier_Purchase_Order.from_filters_supplier_purchase_order(self.form_filters) datastore_supplier_purchase_order = DataStore_Store_Supplier_Purchase_Order() self.supplier_purchase_orders, errors = datastore_supplier_purchase_order.get_many_supplier_purchase_order(parameters_supplier_purchase_order) - + + self.suppliers, errors = DataStore_Store_Supplier.get_many_supplier(Parameters_Supplier.get_default()) + self.category_list_filters, errors = DataStore_Store_Supplier_Purchase_Order.get_many_product(Parameters_Product.get_default()) + self.variation_types, self.variations, errors = self.get_many_product_variation() self.units_measurement = self.get_many_unit_measurement() self.units_measurement_time = [unit_measurement for unit_measurement in self.units_measurement if unit_measurement.is_unit_of_time] self.currencies = self.get_many_currency() diff --git a/static/MySQL/0000_combine.sql b/static/MySQL/0000_combine.sql index 910a2fec..b09e4ea4 100644 --- a/static/MySQL/0000_combine.sql +++ b/static/MySQL/0000_combine.sql @@ -43,6 +43,7 @@ DROP TABLE IF EXISTS tmp_Shop_Supplier_Purchase_Order; DROP TABLE IF EXISTS tmp_Supplier_Purchase_Order; DROP TABLE IF EXISTS tmp_Shop_Supplier; DROP TABLE IF EXISTS tmp_Supplier; +DROP TABLE IF EXISTS tmp_Supplier_Address; DROP TABLE IF EXISTS tmp_Shop_Manufacturing_Purchase_Order_Product_Link; DROP TABLE IF EXISTS tmp_Manufacturing_Purchase_Order_Product_Link; DROP TABLE IF EXISTS tmp_Shop_Manufacturing_Purchase_Order; @@ -305,6 +306,7 @@ DROP PROCEDURE IF EXISTS p_get_many_user; DROP PROCEDURE IF EXISTS p_shop_get_many_user_basket; DROP PROCEDURE IF EXISTS p_shop_edit_user_basket; DROP PROCEDURE IF EXISTS p_shop_save_supplier; +DROP PROCEDURE IF EXISTS p_shop_save_supplier_test; DROP PROCEDURE IF EXISTS p_shop_get_many_supplier; DROP PROCEDURE IF EXISTS p_shop_save_supplier_purchase_order; DROP PROCEDURE IF EXISTS p_shop_get_many_supplier_purchase_order; @@ -1315,7 +1317,7 @@ CREATE TABLE IF NOT EXISTS Shop_Product_Permutation ( id_currency_cost INT NOT NULL, profit_local_min FLOAT NOT NULL, -- id_currency_profit_min INT NOT NULL, - latency_manufacture_days INT NOT NULL, + latency_manufacture INT NOT NULL, id_unit_measurement_quantity INT NOT NULL, CONSTRAINT FK_Shop_Product_Permutation_id_unit_quantity FOREIGN KEY (id_unit_measurement_quantity) @@ -1391,7 +1393,7 @@ CREATE TABLE IF NOT EXISTS Shop_Product_Permutation_Temp ( , cost_local FLOAT NOT NULL , id_currency_cost INT NOT NULL , profit_local_min FLOAT NOT NULL - , latency_manufacture_days INT NOT NULL + , latency_manufacture INT NOT NULL , id_unit_measurement_quantity INT NOT NULL , count_unit_measurement_per_quantity_step FLOAT NOT NULL , quantity_min FLOAT NOT NULL @@ -2431,31 +2433,32 @@ CREATE TABLE IF NOT EXISTS Shop_User_Order_Status_Audit ( SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Shop_Supplier'; CREATE TABLE IF NOT EXISTS Shop_Supplier ( - id_supplier INT NOT NULL AUTO_INCREMENT PRIMARY KEY, - name_company VARCHAR(255) NOT NULL, - name_contact VARCHAR(255) NULL, - department_contact VARCHAR(255) NULL, + id_supplier INT NOT NULL AUTO_INCREMENT PRIMARY KEY + , name_company VARCHAR(255) NOT NULL + , name_contact VARCHAR(255) NULL + , department_contact VARCHAR(255) NULL /* id_address INT NOT NULL, CONSTRAINT FK_Shop_Supplier_id_address FOREIGN KEY (id_address) REFERENCES Shop_Address(id_address), */ - phone_number VARCHAR(50) NULL, - fax VARCHAR(50) NULL, - email VARCHAR(255) NOT NULL, - website VARCHAR(255) NULL, - id_currency INT NOT NULL, - CONSTRAINT FK_Shop_Supplier_id_currency + , phone_number VARCHAR(50) NULL + , fax VARCHAR(50) NULL + , email VARCHAR(255) NOT NULL + , website VARCHAR(255) NULL + , id_currency INT NOT NULL + , CONSTRAINT FK_Shop_Supplier_id_currency FOREIGN KEY (id_currency) - REFERENCES Shop_Currency(id_currency), - active BIT NOT NULL DEFAULT 1, - created_on DATETIME, - created_by INT, - id_change_set INT, - CONSTRAINT FK_Shop_Supplier_id_change_set + REFERENCES Shop_Currency(id_currency) + , active BIT NOT NULL DEFAULT 1 + , created_on DATETIME + , created_by INT + , id_change_set INT + , CONSTRAINT FK_Shop_Supplier_id_change_set FOREIGN KEY (id_change_set) - REFERENCES Shop_User_Change_Set(id_change_set) + REFERENCES Shop_Sales_And_Purchasing_Change_Set(id_change_set) + , id_supplier_temp INT NOT NULL ); # Supplier Audits @@ -2525,23 +2528,7 @@ CREATE TABLE Shop_Supplier_Address ( , id_change_set INT , CONSTRAINT FK_Shop_Supplier_Address_id_change_set FOREIGN KEY (id_change_set) - REFERENCES partsltd_prod.Shop_User_Change_Set(id_change_set) -); -# Supplier Addresses Staging - -SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Shop_Supplier_Address_Temp'; - -CREATE TABLE Shop_Supplier_Address_Temp ( - id_address INT NOT NULL AUTO_INCREMENT PRIMARY KEY - , id_supplier INT NOT NULL - , id_region INT NOT NULL - , postcode VARCHAR(20) NOT NULL - , address_line_1 VARCHAR(256) NOT NULL - , address_line_2 VARCHAR(256) NOT NULL - , city VARCHAR(256) NOT NULL - , county VARCHAR(256) NOT NULL - , active BIT NOT NULL DEFAULT 1 - , GUID BINARY(36) NOT NULL + REFERENCES partsltd_prod.Shop_Sales_And_Purchasing_Change_Set(id_change_set) ); # Supplier Address Audits @@ -2563,6 +2550,22 @@ CREATE TABLE IF NOT EXISTS Shop_Supplier_Address_Audit ( REFERENCES Shop_User_Change_Set(id_change_set) ON UPDATE RESTRICT ); +# Supplier Addresses Staging + +SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Shop_Supplier_Address_Temp'; + +CREATE TABLE Shop_Supplier_Address_Temp ( + id_address INT NOT NULL AUTO_INCREMENT PRIMARY KEY + , id_supplier INT NOT NULL + , id_region INT NOT NULL + , postcode VARCHAR(20) NOT NULL + , address_line_1 VARCHAR(256) NOT NULL + , address_line_2 VARCHAR(256) NOT NULL + , city VARCHAR(256) NOT NULL + , county VARCHAR(256) NOT NULL + , active BIT NOT NULL DEFAULT 1 + , GUID BINARY(36) NOT NULL +); # Supplier Purchase Order @@ -2571,6 +2574,7 @@ SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning CREATE TABLE IF NOT EXISTS Shop_Supplier_Purchase_Order ( id_order INT NOT NULL AUTO_INCREMENT PRIMARY KEY, + id_order_temp INT NULL, id_supplier_ordered INT NOT NULL, CONSTRAINT FK_Shop_Supplier_Purchase_Order_id_supplier_ordered FOREIGN KEY (id_supplier_ordered) @@ -2730,6 +2734,7 @@ SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order ( id_order INT NOT NULL AUTO_INCREMENT PRIMARY KEY, + id_order_temp INT NULL, /* cost_total_local FLOAT NOT NULL, id_currency_cost INT NOT NULL, @@ -2816,38 +2821,41 @@ CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Temp ( # Manufacturing Purchase Order Product Link - SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Shop_Manufacturing_Purchase_Order_Product_Link'; CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Product_Link ( - id_link INT NOT NULL AUTO_INCREMENT PRIMARY KEY, - id_order INT NOT NULL, - CONSTRAINT FK_Manufacturing_Purchase_Order_Product_Link_id_order + id_link INT NOT NULL AUTO_INCREMENT PRIMARY KEY + , id_order INT NOT NULL + , CONSTRAINT FK_Manufacturing_Purchase_Order_Product_Link_id_order FOREIGN KEY (id_order) - REFERENCES Shop_Manufacturing_Purchase_Order(id_order), - id_permutation INT NOT NULL, - CONSTRAINT FK_Manufacturing_Purchase_Order_Product_Link_id_permutation + REFERENCES Shop_Manufacturing_Purchase_Order(id_order) + , id_permutation INT NOT NULL + , CONSTRAINT FK_Manufacturing_Purchase_Order_Product_Link_id_permutation FOREIGN KEY (id_permutation) - REFERENCES Shop_Product_Permutation(id_permutation), - cost_unit_local_VAT_excl FLOAT NOT NULL, - cost_unit_local_VAT_incl FLOAT NOT NULL, - price_unit_local_VAT_excl FLOAT NOT NULL, - price_unit_local_VAT_incl FLOAT NOT NULL, - id_unit_quantity INT NOT NULL, - CONSTRAINT FK_Manufacturing_Purchase_Order_id_unit_quantity + REFERENCES Shop_Product_Permutation(id_permutation) + , cost_unit_local_VAT_excl FLOAT NULL + , cost_unit_local_VAT_incl FLOAT NULL + , price_unit_local_VAT_excl FLOAT NULL + , price_unit_local_VAT_incl FLOAT NULL + , id_unit_quantity INT NOT NULL + , CONSTRAINT FK_Manufacturing_Purchase_Order_id_unit_quantity FOREIGN KEY (id_unit_quantity) - REFERENCES Shop_Unit_Measurement(id_unit_measurement), - quantity_used FLOAT NOT NULL, - quantity_produced FLOAT NOT NULL, - latency_manufacture_days INT NOT NULL, - display_order INT NOT NULL, - active BIT NOT NULL, - created_on DATETIME, - created_by INT, - updated_last_on DATETIME NULL, - created_last_by VARCHAR(100) NULL, - id_change_set INT NULL, - CONSTRAINT FK_Manufacturing_Purchase_Order_id_change_set + REFERENCES Shop_Unit_Measurement(id_unit_measurement) + , quantity_used FLOAT NULL + , quantity_produced FLOAT NULL + , id_unit_latency_manufacture INT NULL + , CONSTRAINT FK_MPO_id_unit_latency_manufacture + FOREIGN KEY (id_unit_latency_manufacture) + REFERENCES Shop_Unit_Measurement(id_unit_measurement) + , latency_manufacture INT NULL + , display_order INT NOT NULL + , active BIT NOT NULL + , created_on DATETIME + , created_by INT + , updated_last_on DATETIME NULL + , created_last_by VARCHAR(100) NULL + , id_change_set INT NULL + , CONSTRAINT FK_Manufacturing_Purchase_Order_id_change_set FOREIGN KEY (id_change_set) REFERENCES Shop_Sales_And_Purchasing_Change_Set(id_change_set) ); @@ -2886,9 +2894,10 @@ CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Product_Link_Temp ( id_order INT NOT NULL, id_permutation INT NOT NULL, id_unit_quantity INT NOT NULL, - quantity_used FLOAT NOT NULL, - latency_manufacture_days INT NOT NULL, - quantity_produced FLOAT NOT NULL, + quantity_used FLOAT NULL, + quantity_produced FLOAT NULL, + id_unit_latency_manufacture INT NULL, + latency_manufacture INT NULL, display_order INT NOT NULL, active BIT NOT NULL, cost_unit_local_VAT_excl FLOAT NULL, @@ -4109,9 +4118,9 @@ BEGIN WHERE NOT (OLD.price_GBP_min <=> NEW.price_GBP_min) UNION */ - # Changed latency_manufacture_days - SELECT NEW.id_permutation, 'latency_manufacture_days', CONVERT(OLD.latency_manufacture_days, CHAR), CONVERT(NEW.latency_manufacture_days, CHAR), NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + # Changed latency_manufacture + SELECT NEW.id_permutation, 'latency_manufacture', CONVERT(OLD.latency_manufacture, CHAR), CONVERT(NEW.latency_manufacture, CHAR), NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION # Changed id_unit_measurement_quantity SELECT NEW.id_permutation, 'id_unit_measurement_quantity', CONVERT(OLD.id_unit_measurement_quantity, CHAR), CONVERT(NEW.id_unit_measurement_quantity, CHAR), NEW.id_change_set @@ -5487,6 +5496,10 @@ BEGIN # Changed id_currency SELECT NEW.id_supplier, 'id_currency', OLD.id_currency, NEW.id_currency, NEW.id_change_set WHERE NOT OLD.id_currency <=> NEW.id_currency + UNION + # Changed id_supplier_temp + SELECT NEW.id_supplier, 'id_supplier_temp', OLD.id_supplier_temp, NEW.id_supplier_temp, NEW.id_change_set + WHERE NOT OLD.id_supplier_temp <=> NEW.id_supplier_temp ; END // DELIMITER ;; @@ -5731,6 +5744,10 @@ BEGIN value_new, id_change_set ) + # Changed id_order_temp + SELECT NEW.id_order, 'id_order_temp', OLD.id_order_temp, NEW.id_order_temp, NEW.id_change_set + WHERE NOT OLD.id_order_temp <=> NEW.id_order_temp + UNION # Changed id_supplier_ordered SELECT NEW.id_order, 'id_supplier_ordered', OLD.id_supplier_ordered, NEW.id_supplier_ordered, NEW.id_change_set WHERE NOT OLD.id_supplier_ordered <=> NEW.id_supplier_ordered @@ -5876,7 +5893,11 @@ BEFORE INSERT ON Shop_Manufacturing_Purchase_Order FOR EACH ROW BEGIN SET NEW.created_on := IFNULL(NEW.created_on, NOW()); - SET NEW.created_by := IFNULL(NEW.created_by, IFNULL((SELECT id_user FROM Shop_User WHERE firstname = CURRENT_USER()), -1)); + -- SET NEW.created_by := IFNULL(NEW.created_by, IFNULL((SELECT id_user FROM Shop_User WHERE firstname = CURRENT_USER()), -1)); + IF NOT EXISTS (SELECT * FROM partsltd_prod.Shop_User U WHERE U.id_user = NEW.created_on LIMIT 1) THEN + SIGNAL SQLSTATE '45000' + SET MESSAGE_TEXT = 'Valid created by User ID must be provided.'; + END IF; END // DELIMITER ;; @@ -5890,6 +5911,10 @@ BEGIN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'New change Set ID must be provided.'; END IF; + IF NOT EXISTS (SELECT * FROM partsltd_prod.Shop_User U WHERE U.id_user = NEW.created_on LIMIT 1) THEN + SIGNAL SQLSTATE '45000' + SET MESSAGE_TEXT = 'Valid created by User ID must be provided.'; + END IF; INSERT INTO Shop_Manufacturing_Purchase_Order_Audit ( id_order, @@ -5898,6 +5923,10 @@ BEGIN value_new, id_change_set ) + # Changed id_order_temp + SELECT NEW.id_order, 'id_order_temp', OLD.id_order_temp, NEW.id_order_temp, NEW.id_change_set + WHERE NOT OLD.id_order_temp <=> NEW.id_order_temp + UNION # Changed id_currency SELECT NEW.id_order, 'id_currency', OLD.id_currency, NEW.id_currency, NEW.id_change_set WHERE NOT OLD.id_currency <=> NEW.id_currency @@ -5997,9 +6026,13 @@ BEGIN SELECT NEW.id_order, 'price_unit_local_VAT_incl', OLD.price_unit_local_VAT_incl, NEW.price_unit_local_VAT_incl, NEW.id_change_set WHERE NOT OLD.price_unit_local_VAT_incl <=> NEW.price_unit_local_VAT_incl UNION - # Changed latency_manufacture_days - SELECT NEW.id_link, 'latency_manufacture_days', OLD.latency_manufacture_days, NEW.latency_manufacture_days, NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + # Changed id_unit_latency_manufacture + SELECT NEW.id_link, 'id_unit_latency_manufacture', OLD.id_unit_latency_manufacture, NEW.id_unit_latency_manufacture, NEW.id_change_set + WHERE NOT OLD.id_unit_latency_manufacture <=> NEW.id_unit_latency_manufacture + UNION + # Changed latency_manufacture + SELECT NEW.id_link, 'latency_manufacture', OLD.latency_manufacture, NEW.latency_manufacture, NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION # Changed display_order SELECT NEW.id_link, 'display_order', OLD.display_order, NEW.display_order, NEW.id_change_set @@ -6237,27 +6270,25 @@ BEGIN SET v_time_end := CURRENT_TIMESTAMP(6); SELECT a_time_start - , UNIX_DATETIME(a_time_start) + , UNIX_TIMESTAMP(a_time_start) , MICROSECOND(a_time_start) / 1000 , v_time_end - , UNIX_DATETIME(v_time_end) + , UNIX_TIMESTAMP(v_time_end) , MICROSECOND(v_time_end) / 1000 , v_time_end - a_time_start AS timestamp_delta - , UNIX_DATETIME(v_time_end - a_time_start) AS UNIX_DATETIME_timestamp_delta + , UNIX_TIMESTAMP(v_time_end - a_time_start) AS UNIX_TIMESTAMP_timestamp_delta , MICROSECOND(v_time_end - a_time_start) AS MICROSECOND_timestamp_delta -- , TIME_FORMAT(TIMEDIFF(v_time_end, a_time_start), '%H:%i:%s') AS time_difference , CONCAT( TIME_FORMAT(TIMEDIFF(v_time_end, a_time_start), '%H hours, %i minutes, %s seconds'), ', ', - DATETIMEDIFF(MICROSECOND, a_time_start, v_time_end) % 1000000 / 1000, ' milliseconds' + TIMESTAMPDIFF(MICROSECOND, a_time_start, v_time_end) % 1000000 / 1000, ' milliseconds' ) AS time_difference ; END // DELIMITER ;; - - /* CALL partsltd_prod.p_debug_timing_reporting ( CURRENT_TIMESTAMP(6) @@ -9054,8 +9085,8 @@ BEGIN ) ) AND ( - a_get_products_quantity_stock_below_min = 1 - AND PP.quantity_stock < PP.quantity_min + a_get_products_quantity_stock_below_min = 0 + OR PP.quantity_stock < PP.quantity_min ) AND ( a_get_inactive_permutation = 1 @@ -9230,7 +9261,7 @@ BEGIN , cost_local , id_currency_cost , profit_local_min - , latency_manufacture_days + , latency_manufacture , id_unit_measurement_quantity , count_unit_measurement_per_quantity_step , quantity_min @@ -9256,7 +9287,7 @@ BEGIN , PP.cost_local , PP.id_currency_cost , PP.profit_local_min - , PP.latency_manufacture_days + , PP.latency_manufacture , PP.id_unit_measurement_quantity , PP.count_unit_measurement_per_quantity_step , PP.quantity_min @@ -9732,7 +9763,7 @@ BEGIN C.code AS code_currency_cost, C.symbol AS symbol_currency_cost, PP.profit_local_min, - PP.latency_manufacture_days, + PP.latency_manufacture, PP.id_unit_measurement_quantity, UM_Q.symbol AS symbol_unit_measurement_quantity, UM_Q.symbol_is_suffix_not_prefix AS symbol_is_suffix_not_prefix_unit_measurement_quantity, @@ -9837,8 +9868,13 @@ BEGIN -- WHERE guid = v_guid ; + IF a_debug = 1 THEN + SELECT * FROM tmp_Category; + SELECT * FROM tmp_Product; + SELECT * FROM tmp_Permutation; + SELECT * FROM tmp_Image; + END IF; - -- Clean up DROP TEMPORARY TABLE IF EXISTS tmp_Split; DROP TEMPORARY TABLE IF EXISTS tmp_Image; DROP TEMPORARY TABLE IF EXISTS tmp_Category; @@ -9871,7 +9907,7 @@ CALL partsltd_prod.p_shop_get_many_product ( , 0 # a_get_inactive_image , '' # a_ids_image , 0 # a_get_products_quantity_stock_below_minimum - , 0 # a_debug + , 1 # a_debug ); select * FROM partsltd_prod.Shop_Calc_User_Temp; @@ -10287,7 +10323,7 @@ BEGIN , cost_local FLOAT NOT NULL , id_currency_cost INT NOT NULL , profit_local_min FLOAT NOT NULL - , latency_manufacture_days INT NOT NULL + , latency_manufacture INT NOT NULL , id_unit_measurement_quantity INT NOT NULL , count_unit_measurement_per_quantity_step FLOAT NOT NULL , quantity_min FLOAT NOT NULL @@ -10325,7 +10361,7 @@ BEGIN , cost_local , id_currency_cost , profit_local_min - , latency_manufacture_days + , latency_manufacture , id_unit_measurement_quantity , count_unit_measurement_per_quantity_step , quantity_min @@ -10349,7 +10385,7 @@ BEGIN , IFNULL(PP_T.cost_local, PP.cost_local) AS cost_local , IFNULL(PP_T.id_currency_cost, PP.id_currency_cost) AS a_id_currency_cost , IFNULL(PP_T.profit_local_min, PP.profit_local_min) AS profit_local_min - , IFNULL(PP_T.latency_manufacture_days, PP.latency_manufacture_days) AS latency_manufacture_days + , IFNULL(PP_T.latency_manufacture, PP.latency_manufacture) AS latency_manufacture , IFNULL(PP_T.id_unit_measurement_quantity, PP.id_unit_measurement_quantity) AS id_unit_measurement_quantity , IFNULL(PP_T.count_unit_measurement_per_quantity_step, PP.count_unit_measurement_per_quantity_step) AS count_unit_measurement_per_quantity_step , IFNULL(PP_T.quantity_min, PP.quantity_min) AS quantity_min @@ -10423,12 +10459,12 @@ BEGIN WHERE ISNULL(t_P.profit_local_min) ; END IF; - -- latency_manufacture_days - IF EXISTS (SELECT * FROM tmp_Permutation t_P WHERE ISNULL(t_P.latency_manufacture_days) LIMIT 1) THEN + -- latency_manufacture + IF EXISTS (SELECT * FROM tmp_Permutation t_P WHERE ISNULL(t_P.latency_manufacture) LIMIT 1) THEN INSERT INTO tmp_Msg_Error ( guid , id_type - , latency_manufacture_days + , latency_manufacture , msg ) SELECT @@ -10437,7 +10473,7 @@ BEGIN , v_code_type_error_bad_data , CONCAT('The following product permutation(s) do not have a manufacturing latency: ', GROUP_CONCAT(IFNULL(t_P.name_error, 'NULL') SEPARATOR ', ')) AS msg FROM tmp_Permutation t_P - WHERE ISNULL(t_P.latency_manufacture_days) + WHERE ISNULL(t_P.latency_manufacture) ; END IF; -- id_unit_measurement_quantity @@ -10609,7 +10645,7 @@ BEGIN , PP.cost_local = t_P.cost_local , PP.id_currency_cost = t_P.id_currency_cost , PP.profit_local_min = t_P.profit_local_min - , PP.latency_manufacture_days = t_P.latency_manufacture_days + , PP.latency_manufacture = t_P.latency_manufacture , PP.id_unit_measurement_quantity = t_P.id_unit_measurement_quantity , PP.count_unit_measurement_per_quantity_step = t_P.count_unit_measurement_per_quantity_step , PP.quantity_min = t_P.quantity_min @@ -10633,7 +10669,7 @@ BEGIN , cost_local , id_currency_cost , profit_local_min - , latency_manufacture_days + , latency_manufacture , id_unit_measurement_quantity , count_unit_measurement_per_quantity_step , quantity_min @@ -10656,7 +10692,7 @@ BEGIN , t_P.cost_local AS cost_local , t_P.id_currency_cost AS id_currency_cost , t_P.profit_local_min AS profit_local_min - , t_P.latency_manufacture_days AS latency_manufacture_days + , t_P.latency_manufacture AS latency_manufacture , t_P.id_unit_measurement_quantity AS id_unit_measurement_quantity , t_P.count_unit_measurement_per_quantity_step AS count_unit_measurement_per_quantity_step , t_P.quantity_min AS quantity_min @@ -10705,7 +10741,7 @@ INSERT INTO Shop_Product_Permutation_Temp ( cost_local, id_currency_cost, profit_local_min, - latency_manufacture_days, + latency_manufacture, id_unit_measurement_quantity, count_unit_measurement_per_quantity_step, quantity_min, @@ -10729,7 +10765,7 @@ VALUES , 5.0 -- cost_local, , 1 -- id_currency_cost, , 3.0 -- profit_local_min, - , 14 -- latency_manufacture_days, + , 14 -- latency_manufacture, , 1 -- id_unit_measurement_quantity, , 1.0 -- count_unit_measurement_quantity, , 3.0 -- quantity_min, @@ -12594,7 +12630,7 @@ INSERT INTO Shop_Product_Permutation_Temp ( cost_local, id_currency_cost, profit_local_min, - latency_manufacture_days, + latency_manufacture, id_unit_measurement_quantity, count_unit_measurement_per_quantity_step, quantity_min, @@ -12618,7 +12654,7 @@ VALUES , 5.0 -- cost_local, , 1 -- id_currency_cost, , 3.0 -- profit_local_min, - , 14 -- latency_manufacture_days, + , 14 -- latency_manufacture, , 1 -- id_unit_measurement_quantity, , 1.0 -- count_unit_measurement_quantity, , 3.0 -- quantity_min, @@ -13454,7 +13490,7 @@ BEGIN CURRENCY.code AS code_currency_cost, CURRENCY.symbol AS symbol_currency_cost, PP.profit_local_min, - t_P.latency_manufacture_days, + t_P.latency_manufacture, t_P.quantity_min, t_P.quantity_max, t_P.quantity_step, @@ -15578,9 +15614,11 @@ BEGIN , msg ) SELECT - NULL + id_type , @errno , @text + FROM partsltd_prod.Shop_Msg_Error_Type MET + WHERE code = 'MYSQL_ERROR' ; SELECT * FROM tmp_Msg_Error; @@ -15599,11 +15637,12 @@ BEGIN SET a_comment := TRIM(IFNULL(a_comment, '')); DROP TEMPORARY TABLE IF EXISTS tmp_Supplier; + DROP TEMPORARY TABLE IF EXISTS tmp_Supplier_Address; DROP TEMPORARY TABLE IF EXISTS tmp_Msg_Error; CREATE TEMPORARY TABLE tmp_Supplier ( - id_supplier INT NOT NULL - , id_address INT NOT NULL + id_supplier_temp INT NOT NULL + , id_supplier INT NULL , id_currency INT NOT NULL , name_company VARCHAR(255) NOT NULL , name_contact VARCHAR(255) NULL @@ -15617,6 +15656,20 @@ BEGIN , is_new BIT NOT NULL ); + CREATE TEMPORARY TABLE tmp_Supplier_Address ( + id_address INT NOT NULL + , id_supplier INT NOT NULL + , id_region INT NOT NULL + , postcode VARCHAR(20) NOT NULL + , address_line_1 VARCHAR(256) NOT NULL + , address_line_2 VARCHAR(256) NOT NULL + , city VARCHAR(256) NOT NULL + , county VARCHAR(256) NOT NULL + , active BIT NOT NULL + , name_error VARCHAR(1000) NOT NULL + , is_new BIT NOT NULL + ); + CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error ( display_order INT NOT NULL PRIMARY KEY AUTO_INCREMENT , id_type INT NOT NULL @@ -15626,8 +15679,8 @@ BEGIN INSERT INTO tmp_Supplier ( - id_supplier - , id_address + id_supplier_temp + , id_supplier , id_currency , name_company , name_contact @@ -15642,7 +15695,7 @@ BEGIN ) SELECT S_T.id_supplier - , S_T.id_address + , S_T.id_supplier , S_T.id_currency , S_T.name_company , S_T.name_contact @@ -15658,7 +15711,38 @@ BEGIN WHERE GUID = a_guid ; + INSERT INTO tmp_Supplier_Address ( + id_address + , id_supplier + , id_region + , postcode + , address_line_1 + , address_line_2 + , city + , county + , active + , name_error + , is_new + ) + SELECT + SA_T.id_address + , SA_T.id_supplier + , SA_T.id_region + , SA_T.postcode + , SA_T.address_line_1 + , SA_T.address_line_2 + , SA_T.city + , SA_T.county + , SA_T.active + , IFNULL(SA_T.postcode, IFNULL(SA_T.city, IFNULL(SA_T.county, IFNULL(SA_T.address_line_1, IFNULL(SA_T.address_line_2, '(No Supplier)'))))) AS name_error + , IFNULL(SA_T.id_address, 0) < 1 AS is_new + FROM partsltd_prod.Shop_Supplier_Address_Temp SA_T + WHERE GUID = a_guid + ; + -- Validation + -- Suppliers + /* # id_address IF EXISTS ( SELECT * @@ -15692,6 +15776,7 @@ BEGIN ) ; END IF; + */ # id_currency IF EXISTS ( SELECT * @@ -15755,11 +15840,111 @@ BEGIN WHERE ISNULL(t_S.email) ; END IF; + # duplicate + IF EXISTS (SELECT COUNT(*) FROM tmp_Supplier t_S GROUP BY t_S.id_supplier HAVING COUNT(*) > 1) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT('The following supplier(s) are duplicates: ', GROUP_CONCAT(IFNULL(t_S.name_error, 'NULL') SEPARATOR ', ')) AS msg + FROM tmp_Supplier t_S + GROUP BY t_S.id_supplier + HAVING COUNT(*) > 1 + ; + END IF; + + -- Addresses + # id_supplier + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Address t_SA + LEFT JOIN partsltd_prod.Shop_Supplier S ON t_SA.id_supplier = S.id_supplier + WHERE 1=1 + AND ( + t_SA.id_supplier = 0 + OR S.active = 0 + ) + LIMIT 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT( + 'The following supplier address(es) have an invalid or inactive Supplier: ' + , GROUP_CONCAT(t_S.name_error SEPARATOR ', ') + ) AS msg + FROM tmp_Supplier t_S + LEFT JOIN partsltd_prod.Shop_Supplier S ON t_SA.id_supplier = S.id_supplier + WHERE 1=1 + AND ( + t_SA.id_supplier = 0 + OR S.active = 0 + ) + ; + END IF; + # id_region + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Address t_SA + LEFT JOIN partsltd_prod.Shop_Region R ON t_SA.id_region = R.id_region + WHERE 1=1 + AND ( + t_SA.id_region = 0 + OR R.active = 0 + ) + LIMIT 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT( + 'The following supplier address(es) have an invalid or inactive Supplier: ' + , GROUP_CONCAT(t_S.name_error SEPARATOR ', ') + ) AS msg + FROM tmp_Supplier t_S + LEFT JOIN partsltd_prod.Shop_Region R ON t_SA.id_region = R.id_region + WHERE 1=1 + AND ( + t_SA.id_region = 0 + OR R.active = 0 + ) + ; + END IF; + # duplicate + IF EXISTS (SELECT COUNT(*) FROM tmp_Supplier_Address t_SA GROUP BY t_SA.id_address HAVING COUNT(*) > 1) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT('The following supplier address(es) are duplicates: ', GROUP_CONCAT(IFNULL(t_S.name_error, 'NULL') SEPARATOR ', ')) AS msg + FROM tmp_Supplier_Address t_SA + GROUP BY t_SA.id_address + HAVING COUNT(*) > 1 + ; + END IF; -- Permissions IF a_debug = 1 THEN SELECT - v_guid + a_guid , a_id_user , FALSE -- get inactive users , v_id_permission_supplier @@ -15771,7 +15956,7 @@ BEGIN END IF; CALL p_shop_calc_user( - v_guid + a_guid , a_id_user , FALSE -- get inactive users , v_id_permission_supplier @@ -15784,7 +15969,7 @@ BEGIN SELECT * from partsltd_prod.Shop_Calc_User_Temp WHERE GUID = a_guid; END IF; - IF NOT EXISTS (SELECT can_view FROM partsltd_prod.Shop_Calc_User_Temp UE_T WHERE UE_T.GUID = v_guid) THEN + IF NOT EXISTS (SELECT can_view FROM partsltd_prod.Shop_Calc_User_Temp UE_T WHERE UE_T.GUID = a_guid) THEN DELETE FROM tmp_Msg_Error; INSERT INTO tmp_Msg_Error ( @@ -15800,7 +15985,10 @@ BEGIN ; END IF; - CALL partsltd_prod.p_shop_clear_calc_user( a_guid ); + CALL partsltd_prod.p_shop_clear_calc_user( + a_guid + , 0 -- a_debug + ); IF EXISTS ( SELECT * FROM tmp_Msg_Error LIMIT 1 ) THEN DELETE FROM tmp_Supplier; @@ -15824,8 +16012,7 @@ BEGIN SET v_id_change_set := LAST_INSERT_ID(); INSERT INTO partsltd_prod.Shop_Supplier ( - -- id_supplier, - id_address + id_supplier_temp , id_currency , name_company , name_contact @@ -15838,7 +16025,7 @@ BEGIN , id_change_set ) SELECT - t_S.id_address + t_S.id_supplier , t_S.id_currency , t_S.name_company , t_S.name_contact @@ -15848,18 +16035,31 @@ BEGIN , t_S.email , t_S.website , t_S.active - v_id_change_set + , v_id_change_set FROM tmp_Supplier t_S WHERE t_S.is_new = 1 ; + UPDATE tmp_Supplier t_S + INNER JOIN partsltd_prod.Shop_Supplier S ON t_S.id_supplier_temp = S.id_supplier_temp + SET + t_S.id_supplier = S.id_supplier + WHERE t_S.is_new = 1 + ; + + UPDATE tmp_Supplier_Address t_SA + INNER JOIN tmp_Supplier t_S ON t_SA.id_supplier = t_S.id_supplier_temp + SET + t_SA.id_supplier = t_S.id_supplier + WHERE t_S.is_new = 1 + ; + UPDATE partsltd_prod.Shop_Supplier S INNER JOIN tmp_Supplier t_S ON S.id_supplier = t_S.id_supplier AND t_S.is_new = 0 SET - S.id_address = t_S.id_address - , S.id_currency = t_S.id_currency + S.id_currency = t_S.id_currency , S.name_company = t_S.name_company , S.name_contact = t_S.name_contact , S.department_contact = t_S.department_contact @@ -15883,6 +16083,47 @@ BEGIN S.id_change_set = v_id_change_set */ ; + + INSERT INTO partsltd_prod.Shop_Supplier_Address ( + id_supplier + , id_region + , postcode + , address_line_1 + , address_line_2 + , city + , county + , active + , id_change_set + ) + SELECT + t_SA.id_supplier + , t_SA.id_region + , t_SA.postcode + , t_SA.address_line_1 + , t_SA.address_line_2 + , t_SA.city + , t_SA.county + , t_SA.active + , v_id_change_set + FROM tmp_Supplier_Address t_SA + WHERE t_SA.is_new = 1 + ; + + UPDATE partsltd_prod.Shop_Supplier_Address SA + INNER JOIN tmp_Supplier_Address t_SA + ON SA.id_address = t_SA.id_address + AND t_SA.is_new = 0 + SET + SA.id_supplier = t_SA.id_supplier + , SA.id_region = t_SA.id_region + , SA.postcode = t_SA.postcode + , SA.address_line_1 = t_SA.address_line_1 + , SA.address_line_2 = t_SA.address_line_2 + , SA.city = t_SA.city + , SA.county = t_SA.county + , SA.active = t_SA.active + , SA.id_change_set = v_id_change_set + ; COMMIT; END IF; @@ -15893,11 +16134,14 @@ BEGIN ; IF a_debug = 1 THEN + SELECT 'A_DEBUG'; SELECT * from tmp_Supplier; + SELECT * from tmp_Supplier_Address; END IF; - DROP TEMPORARY TABLE tmp_Supplier; - DROP TEMPORARY TABLE tmp_Msg_Error; + DROP TEMPORARY TABLE IF EXISTS tmp_Supplier; + DROP TEMPORARY TABLE IF EXISTS tmp_Supplier_Address; + DROP TEMPORARY TABLE IF EXISTS tmp_Msg_Error; IF a_debug = 1 THEN CALL partsltd_prod.p_debug_timing_reporting ( v_time_start ); @@ -15908,7 +16152,140 @@ DELIMITER ;; -- SELECT * FROM Shop_Supplier; +delete from shop_supplier_audit where id_supplier = 9; +delete from shop_supplier where id_supplier = 9; +delete from shop_supplier_address_audit where id_address = -4; +delete from shop_supplier_address where id_address = -4; +-- Clear previous proc +DROP PROCEDURE IF EXISTS partsltd_prod.p_shop_save_supplier_test; + + +DELIMITER // +CREATE PROCEDURE p_shop_save_supplier_test () +BEGIN + + DECLARE v_guid BINARY(36); + DECLARE v_time_start TIMESTAMP(6); + + SET v_time_start := CURRENT_TIMESTAMP(6); + SET v_guid := 'nips'; + + SELECT * + FROM partsltd_prod.Shop_Supplier + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Address + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Address_Temp + ; + + START TRANSACTION; + + INSERT INTO partsltd_prod.Shop_Supplier_Temp ( + id_supplier + , id_currency + , name_company + , name_contact + , department_contact + , phone_number + , fax + , email + , website + , active + , guid + ) + VALUES ( + -3 + , 1 + , 'Asda' + , '' + , NULL + , '' + , '123' + , 'test mail' + , 'test url' + , 1 -- active + , v_guid + ); + + INSERT INTO partsltd_prod.Shop_Supplier_Address_Temp ( + id_address + , id_supplier + , id_region + , postcode + , address_line_1 + , address_line_2 + , city + , county + , active + , GUID + ) + VALUES ( + -4 + , -3 + , 1 + , 'test postcode' + , 'test' + , 'test' + , 'test' + , 'cunty' + , 1 + , v_guid + ) + ; + + COMMIT; + + SELECT * + FROM partsltd_prod.Shop_Supplier_Temp + WHERE GUID = v_guid + ; + + SELECT * + FROM partsltd_prod.Shop_Supplier_Address_Temp + WHERE GUID = v_guid + ; + + CALL partsltd_prod.p_shop_save_supplier ( + 'Test save Supplier' -- comment + , v_guid -- guid + , 1 -- id_user + , 1 -- debug + ); + + SELECT * + FROM partsltd_prod.Shop_Supplier_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Address_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Address + ; + + CALL partsltd_prod.p_debug_timing_reporting ( v_time_start ); +END // +DELIMITER ;; + +CALL partsltd_prod.p_shop_save_supplier_test (); + +DELETE FROM partsltd_prod.Shop_Supplier_Temp; +DELETE FROM partsltd_prod.Shop_Supplier_Address_Temp; + +DROP TABLE IF EXISTS tmp_Msg_Error; +/* + +Cannot add or update a child row: a foreign key constraint fails (`partsltd_prod`.`shop_supplier_address`, CONSTRAINT `FK_Shop_Supplier_Address_id_supplier` FOREIGN KEY (`id_supplier`) REFERENCES `shop_supplier` (`id_supplier`) ON UPDATE RESTRICT) + +*/ DROP PROCEDURE IF EXISTS p_shop_get_many_supplier; @@ -16105,8 +16482,6 @@ BEGIN # Suppliers SELECT t_S.id_supplier, - S.id_address, - -- SA.postcode, S.id_currency, C.symbol AS symbol_currency, C.code AS code_currency, @@ -16120,24 +16495,24 @@ BEGIN S.active FROM tmp_Supplier t_S INNER JOIN partsltd_prod.Shop_Supplier S ON t_S.id_supplier = S.id_supplier - LEFT JOIN partsltd_prod.Shop_Supplier_Address SA ON S.id_address = SA.id_address LEFT JOIN partsltd_prod.Shop_Currency C ON S.id_currency = C.id_currency ; # Supplier Addresses SELECT t_S.id_supplier - , S.id_address + , SA.id_address , SA.id_region , R.name AS name_region + , SA.postcode , SA.address_line_1 , SA.address_line_2 , SA.city , SA.county - , SA.postcode + , SA.active FROM tmp_Supplier t_S INNER JOIN partsltd_prod.Shop_Supplier S ON t_S.id_supplier = S.id_supplier - LEFT JOIN partsltd_prod.Shop_Supplier_Address SA ON S.id_address = SA.id_address + INNER JOIN partsltd_prod.Shop_Supplier_Address SA ON S.id_supplier = SA.id_supplier LEFT JOIN partsltd_prod.Shop_Region R ON SA.id_region = R.id_region ; @@ -16252,6 +16627,7 @@ BEGIN -- Temporary tables CREATE TEMPORARY TABLE tmp_Supplier_Purchase_Order ( id_order INT NOT NULL PRIMARY KEY + , id_order_temp INT NOT NULL , id_supplier_ordered INT NOT NULL , id_currency_cost INT NOT NULL -- , cost_total_local FLOAT NOT NULL @@ -16286,11 +16662,13 @@ BEGIN INSERT INTO tmp_Supplier_Purchase_Order ( id_order + , id_order_temp , id_supplier_ordered , id_currency_cost ) SELECT SPO_T.id_order + , SPO_T.id_order , IFNULL(IFNULL(SPO_T.id_supplier_ordered, SPO.id_supplier_ordered), 0) AS id_supplier_ordered , IFNULL(IFNULL(SPO_T.id_currency_cost, SPO.id_currency_cost), 0) AS id_currency_cost FROM partsltd_prod.Shop_Supplier_Purchase_Order_Temp SPO_T @@ -16347,11 +16725,13 @@ BEGIN INSERT INTO tmp_Supplier_Purchase_Order ( id_order + , id_order_temp , id_supplier_ordered , id_currency_cost ) SELECT SPO_T.id_order + , SPO_T.id_order , IFNULL(IFNULL(SPO_T.id_supplier_ordered, SPO.id_supplier_ordered), 0) AS id_supplier_ordered , IFNULL(IFNULL(SPO_T.id_currency_cost, SPO.id_currency_cost), 0) AS id_currency_cost FROM partsltd_prod.Shop_Supplier_Purchase_Order SPO @@ -16730,7 +17110,8 @@ BEGIN SET v_id_change_set := LAST_INSERT_ID(); INSERT INTO partsltd_prod.Shop_Supplier_Purchase_Order ( - id_supplier_ordered + id_order_temp + , id_supplier_ordered , id_currency_cost , cost_total_local_VAT_excl , cost_total_local_VAT_incl @@ -16740,7 +17121,8 @@ BEGIN , active ) SELECT - t_SPO.id_supplier_ordered + t_SPO.id_order_temp + , t_SPO.id_supplier_ordered , t_SPO.id_currency_cost , SUM(t_SPOPL.cost_total_local_VAT_excl) , SUM(t_SPOPL.cost_total_local_VAT_incl) @@ -16752,6 +17134,36 @@ BEGIN INNER JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL ON t_SPO.id_order = t_SPOPL.id_order WHERE t_SPOPL.is_new = 1 ; + + UPDATE partsltd_prod.Shop_Supplier_Purchase_Order SPO + INNER JOIN tmp_Supplier_Purchase_Order t_SPO + ON SPO.id_order = t_SPO.id_order + AND t_SPO.is_new = 0 + INNER JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL ON t_SPO.id_order = t_SPOPL.id_order + SET + SPO.id_supplier_ordered = t_SPO.id_supplier_ordered + , SPO.id_currency_cost = id_currency_cost + , SPO.cost_total_local_VAT_excl = SUM(t_SPOPL.cost_total_local_VAT_excl) + , SPO.cost_total_local_VAT_incl = SUM(t_SPOPL.cost_total_local_VAT_incl) + , SPO.active = a_active + , SPO.id_change_set = v_id_change_set + ; + + + UPDATE tmp_Supplier_Purchase_Order t_SPO + INNER JOIN partsltd_prod.Shop_Supplier_Purchase_Order SPO ON t_SPO.id_order_temp = SPO.id_order_temp + SET + t_SPO.id_order = SPO.id_order + WHERE t_SPO.is_new = 1 + ; + + UPDATE tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + INNER JOIN tmp_Supplier_Purchase_Order t_SPO ON t_SPOPL.id_order = t_SPO.id_order_temp + SET + t_SPOPL.id_order = t_SPO.id_order + WHERE t_SPO.is_new = 1 + ; + INSERT INTO Shop_Supplier_Purchase_Order_Product_Link ( id_order @@ -16785,20 +17197,6 @@ BEGIN FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL WHERE t_SPOPL.is_new = 1 ; - - UPDATE partsltd_prod.Shop_Supplier_Purchase_Order SPO - INNER JOIN tmp_Supplier_Purchase_Order t_SPO - ON SPO.id_order = t_SPO.id_order - AND t_SPO.is_new = 0 - INNER JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL ON t_SPO.id_order = t_SPOPL.id_order - SET - SPO.id_supplier_ordered = t_SPO.id_supplier_ordered - , SPO.id_currency_cost = id_currency_cost - , SPO.cost_total_local_VAT_excl = SUM(t_SPOPL.cost_total_local_VAT_excl) - , SPO.cost_total_local_VAT_incl = SUM(t_SPOPL.cost_total_local_VAT_incl) - , SPO.active = a_active - , SPO.id_change_set = v_id_change_set - ; UPDATE partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link SPOPL INNER JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL @@ -17293,13 +17691,13 @@ BEGIN VALUES ( v_id_type_error_no_permission , v_code_type_error_no_permission - , CONCAT('You do not have view permissions for ', (SELECT name FROM partsltd_prod.Shop_Permission WHERE id_permission = v_id_permission_supplier LIMIT 1)) + , CONCAT('You do not have view permissions for ', (SELECT name FROM partsltd_prod.Shop_Permission WHERE id_permission = v_ids_permission_supplier_purchase_order LIMIT 1)) ) ; END IF; IF EXISTS ( SELECT * FROM tmp_Msg_Error LIMIT 1 ) THEN - DELETE FROM tmp_Supplier_Purchase_Order_Product_Link; + DELETE FROM tmp_Permutation; DELETE FROM tmp_Supplier_Purchase_Order; END IF; @@ -17391,7 +17789,7 @@ DELIMITER ;; CALL p_shop_get_many_supplier_purchase_order ( - 1, # a_id_user + 0, # a_id_user 1, # a_get_all_supplier 0, # a_get_inactive_supplier '', # a_ids_supplier @@ -17490,10 +17888,11 @@ BEGIN , id_order INT NOT NULL , id_permutation INT NOT NULL , id_currency_cost INT NOT NULL - , quantity_ordered FLOAT NOT NULL + , quantity_used FLOAT NOT NULL , id_unit_quantity INT NOT NULL - , quantity_received FLOAT NULL - , latency_delivery_days INT NOT NULL + , quantity_produced FLOAT NULL + , id_unit_latency_manufacture INT NULL + , latency_manufacture INT NULL , display_order INT NOT NULL , active BIT NOT NULL , name_error VARCHAR(200) NOT NULL @@ -17528,10 +17927,11 @@ BEGIN , id_order , id_permutation , id_currency_cost - , quantity_ordered , id_unit_quantity - , quantity_received - , latency_delivery_days + , quantity_used + , quantity_produced + , id_unit_latency_manufacture + , latency_manufacture , display_order , active , name_error @@ -17547,22 +17947,23 @@ BEGIN , IFNULL(IFNULL(SPOPL_T.id_order, MPOPL.id_order), 0) AS id_order , IFNULL(IFNULL(SPOPL_T.id_permutation, MPOPL.id_permutation), 0) AS id_permutation , IFNULL(IFNULL(SPOPL_T.id_currency_cost, MPOPL.id_currency_cost), 0) AS id_currency_cost - , IFNULL(IFNULL(SPOPL_T.quantity_ordered, MPOPL.quantity_ordered), 0) AS quantity_ordered , IFNULL(IFNULL(SPOPL_T.id_unit_quantity, MPOPL.id_unit_quantity), 0) AS id_unit_quantity - , IFNULL(SPOPL_T.quantity_received, MPOPL.quantity_received) AS quantity_received - , IFNULL(SPOPL_T.latency_delivery_days, MPOPL.latency_delivery_days) AS latency_delivery_days - , RANK() OVER (PARTITION BY IFNULL(IFNULL(SPOPL_T.id_order, MPOPL.id_order), 0) ORDER BY IFNULL(IFNULL(SPOPL_T.display_order, MPOPL.display_order), 0)) AS display_order + , SPOPL_T.quantity_used AS quantity_used + , SPOPL_T.quantity_produced AS quantity_produced + , SPOPL_T.id_unit_latency_manufacture AS id_unit_latency_manufacture + , SPOPL_T.latency_manufacture AS latency_manufacture + , IFNULL(SPOPL_T.display_order, RANK() OVER (PARTITION BY IFNULL(IFNULL(SPOPL_T.id_order, MPOPL.id_order), 0) ORDER BY IFNULL(IFNULL(SPOPL_T.display_order, MPOPL.display_order), 0))) AS display_order , IFNULL(IFNULL(SPOPL_T.active, MPOPL.active), 1) AS active , CONCAT( fn_shop_get_product_permutation_name(SPOPL_T.id_permutation) , ' - x' - , IFNULL(SPOPL_T.quantity_ordered, '(No Quantity)') + , IFNULL(SPOPL_T.quantity_used, '(No Quantity)') ) AS name_error , IFNULL(SPOPL_T.id_link, 0) < 1 AS is_new - , IFNULL(IFNULL(SPOPL_T.cost_total_local_VAT_excl, MPOPL.cost_total_local_VAT_excl), 0) AS cost_total_local_VAT_excl - , IFNULL(IFNULL(SPOPL_T.cost_total_local_VAT_incl, MPOPL.cost_total_local_VAT_incl), 0) AS cost_total_local_VAT_incl - , IFNULL(SPOPL_T.cost_total_local_VAT_excl / SPOPL_T.quantity_ordered, MPOPL.cost_unit_local_VAT_excl) AS cost_unit_local_VAT_excl - , IFNULL(SPOPL_T.cost_total_local_VAT_incl / SPOPL_T.quantity_ordered, MPOPL.cost_unit_local_VAT_incl) AS cost_unit_local_VAT_incl + , SPOPL_T.cost_total_local_VAT_excl AS cost_total_local_VAT_excl + , SPOPL_T.cost_total_local_VAT_incl AS cost_total_local_VAT_incl + , SPOPL_T.cost_total_local_VAT_excl / SPOPL_T.quantity_used AS cost_unit_local_VAT_excl + , SPOPL_T.cost_total_local_VAT_incl / SPOPL_T.quantity_used AS cost_unit_local_VAT_incl , NOT ISNULL(t_MPO.id_order) AS has_order FROM partsltd_prod.Shop_Manufacturing_Purchase_Order_Product_Link_Temp SPOPL_T LEFT JOIN partsltd_prod.Shop_Manufacturing_Purchase_Order_Product_Link MPOPL ON SPOPL_T.id_link = MPOPL.id_link @@ -17685,8 +18086,8 @@ BEGIN SELECT * FROM tmp_Manufacturing_Purchase_Order_Product_Link WHERE - ISNULL(t_MPOPL.quantity_ordered) - OR t_MPOPL.quantity_ordered <= 0 + ISNULL(t_MPOPL.quantity_used) + OR t_MPOPL.quantity_used <= 0 ) THEN INSERT INTO tmp_Msg_Error ( id_type, code, msg @@ -17700,15 +18101,15 @@ BEGIN ) FROM tmp_Manufacturing_Purchase_Order_Product_Link t_MPOPL WHERE - ISNULL(t_MPOPL.quantity_ordered) - OR t_MPOPL.quantity_ordered <= 0 + ISNULL(t_MPOPL.quantity_used) + OR t_MPOPL.quantity_used <= 0 ; END IF; # Invalid quantity received IF EXISTS ( SELECT * FROM tmp_Manufacturing_Purchase_Order_Product_Link - WHERE t_MPOPL.quantity_received < 0 + WHERE t_MPOPL.quantity_produced < 0 ) THEN INSERT INTO tmp_Msg_Error ( id_type, code, msg @@ -17718,17 +18119,52 @@ BEGIN v_code_error_type_bad_data, CONCAT( 'A valid quantity received is required for the following Manufacturing Purchase Order Item(s): ' - , GROUP_CONCAT(t_MPOPL.name_error, ' - ', t_MPOPL.quantity_received SEPARATOR ', ') + , GROUP_CONCAT(t_MPOPL.name_error, ' - ', t_MPOPL.quantity_produced SEPARATOR ', ') ) FROM tmp_Manufacturing_Purchase_Order_Product_Link t_MPOPL - WHERE t_MPOPL.quantity_received < 0 + WHERE t_MPOPL.quantity_produced < 0 ; END IF; - # Invalid delivery latency + # id_unit_latency_manufacture + IF EXISTS ( + SELECT * + FROM tmp_Manufacturing_Purchase_Order t_MPO + LEFT JOIN partsltd_prod.Shop_Unit_Measurement UM ON t_MPO.id_unit_latency_manufacture = UM.id_unit_measurement + WHERE 1=1 + AND ( + NOT ISNULL(t_MPO.id_unit_latency_manufacture) + OR ISNULL(UM.id_unit_measurement) + OR UM.active = 0 + ) + LIMIT 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT( + 'A valid unit measurement of manufacture latency is required for the following Manufacturing Purchase Order(s): ' + , GROUP_CONCAT(CONCAT(IFNULL(t_MPO.id_stock, '(No Manufacturing Purchase Order)'), ' - ', t_MPO.id_unit_latency_manufacture) SEPARATOR ', ') + ) AS msg + FROM tmp_Stock_Item t_SPO + LEFT JOIN partsltd_prod.Shop_Unit_Measurement UM ON t_MPO.id_unit_latency_manufacture = UM.id_unit_measurement + WHERE 1=1 + AND ( + NOT ISNULL(t_MPO.id_unit_latency_manufacture) + OR ISNULL(UM.id_unit_measurement) + OR UM.active = 0 + ) + ; + END IF; + # Invalid manufacture latency IF EXISTS ( SELECT * FROM tmp_Manufacturing_Purchase_Order_Product_Link - WHERE t_MPOPL.latency_delivery_days < 0 + WHERE t_MPOPL.latency_manufacture < 0 ) THEN INSERT INTO tmp_Msg_Error ( id_type, code, msg @@ -17737,11 +18173,11 @@ BEGIN v_id_error_type_bad_data, v_code_error_type_bad_data, CONCAT( - 'A valid delivery latency is required for the following Manufacturing Purchase Order Item(s): ' - , GROUP_CONCAT(t_MPOPL.name_error, ' - ', t_MPOPL.latency_delivery_days SEPARATOR ', ') + 'A valid manufacture latency is required for the following Manufacturing Purchase Order Item(s): ' + , GROUP_CONCAT(t_MPOPL.name_error, ' - ', t_MPOPL.latency_manufacture SEPARATOR ', ') ) FROM tmp_Manufacturing_Purchase_Order_Product_Link t_MPOPL - WHERE t_MPOPL.latency_delivery_days < 0 + WHERE t_MPOPL.latency_manufacture < 0 ; END IF; @@ -17913,9 +18349,10 @@ BEGIN , id_permutation , id_currency_cost , id_unit_quantity - , quantity_ordered - , quantity_received - , latency_delivery_days + , quantity_used + , quantity_produced + , id_unit_latency_manufacture + , latency_manufacture , display_order , active , cost_total_local_VAT_excl @@ -17928,9 +18365,10 @@ BEGIN , t_MPOPL.id_permutation , t_MPOPL.id_currency_cost , t_MPOPL.id_unit_quantity - , t_MPOPL.quantity_ordered - , t_MPOPL.quantity_received - , t_MPOPL.latency_delivery_days + , t_MPOPL.quantity_used + , t_MPOPL.quantity_produced + , t_MPOPL.id_unit_latency_manufacture + , t_MPOPL.latency_manufacture , t_MPOPL.display_order , t_MPOPL.active , t_MPOPL.cost_total_local_VAT_excl @@ -17959,18 +18397,19 @@ BEGIN ON MPOPL.id_link = t_MPOPL.id_link AND t_MPOPL.is_new = 0 SET - MPOPL.id_order = t_MPOPL.id_order, - MPOPL.id_permutation = t_MPOPL.id_permutation, - MPOPL.id_currency_cost = t_MPOPL.id_currency_cost, - MPOPL.id_unit_quantity = t_MPOPL.id_unit_quantity, - MPOPL.quantity_ordered = t_MPOPL.quantity_ordered, - MPOPL.quantity_received = t_MPOPL.quantity_received, - MPOPL.latency_delivery_days = t_MPOPL.latency_delivery_days, - MPOPL.display_order = t_MPOPL.display_order, - MPOPL.active = t_MPOPL.active, - MPOPL.cost_total_local_VAT_excl = t_MPOPL.cost_total_local_VAT_excl, - MPOPL.cost_total_local_VAT_incl = t_MPOPL.cost_total_local_VAT_incl, - MPOPL.id_change_set = v_id_change_set + MPOPL.id_order = t_MPOPL.id_order + , MPOPL.id_permutation = t_MPOPL.id_permutation + , MPOPL.id_currency_cost = t_MPOPL.id_currency_cost + , MPOPL.id_unit_quantity = t_MPOPL.id_unit_quantity + , MPOPL.quantity_used = t_MPOPL.quantity_used + , MPOPL.quantity_produced = t_MPOPL.quantity_produced + , MPOPL.id_unit_latency_manufacture = t_MPOPL.id_unit_latency_manufacture + , MPOPL.latency_manufacture = t_MPOPL.latency_manufacture + , MPOPL.display_order = t_MPOPL.display_order + , MPOPL.active = t_MPOPL.active + , MPOPL.cost_total_local_VAT_excl = t_MPOPL.cost_total_local_VAT_excl + , MPOPL.cost_total_local_VAT_incl = t_MPOPL.cost_total_local_VAT_incl + , MPOPL.id_change_set = v_id_change_set ; DELETE SPO_T @@ -18021,10 +18460,10 @@ INSERT INTO Shop_Manufacturing_Purchase_Order_Product_Link_Temp ( id_permutation, cost_total_local, id_currency_cost, - quantity_ordered, + quantity_used, id_unit_quantity, - quantity_received, - latency_delivery_days, + quantity_produced, + latency_manufacture, display_order, active ) @@ -18036,10 +18475,10 @@ VALUES 1, # id_permutation, 100, # cost_total_local, 1, # id_currency_cost, - 1, # quantity_ordered, + 1, # quantity_used, 1, # id_unit_quantity, - 1, # quantity_received, - 14, # latency_delivery_days , + 1, # quantity_produced, + 14, # latency_manufacture , 1, # display_order 1 # active ) @@ -18408,7 +18847,8 @@ BEGIN , MPOPL.id_unit_quantity , MPOPL.quantity_used , MPOPL.quantity_produced - , MPOPL.latency_manufacture_days + , MPOPL.id_unit_latency_manufacture + , MPOPL.latency_manufacture , MPOPL.display_order , MPOPL.cost_unit_local_VAT_excl , MPOPL.cost_unit_local_VAT_incl @@ -19790,7 +20230,7 @@ BEGIN price_GBP_min FLOAT NOT NULL, */ /* - latency_manufacture_days INT NOT NULL, + latency_manufacture INT NOT NULL, quantity_min FLOAT NOT NULL, quantity_max FLOAT NOT NULL, quantity_step FLOAT NOT NULL, @@ -19985,7 +20425,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, * - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -20017,7 +20457,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, * - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -20621,7 +21061,7 @@ INSERT INTO Shop_Product_Permutation ( id_currency_cost, profit_local_min, # id_currency_profit_min, - latency_manufacture_days, + latency_manufacture, id_unit_measurement_quantity, count_unit_measurement_per_quantity_step, quantity_min, @@ -21053,7 +21493,8 @@ VALUES # Supplier INSERT INTO Shop_Supplier ( - name_company + id_supplier_temp + , name_company , name_contact , department_contact -- , id_address @@ -21065,7 +21506,8 @@ INSERT INTO Shop_Supplier ( ) VALUES ( - 'Precision And Research Technology Systems Limited' + -1 + , 'Precision And Research Technology Systems Limited' , 'Teddy Middleton-Smith' , 'Executive Management' -- , 1 @@ -21079,7 +21521,8 @@ VALUES # Suppliers INSERT INTO Shop_Supplier ( - name_company + id_supplier_temp + , name_company , name_contact , department_contact -- , id_address @@ -21091,7 +21534,8 @@ INSERT INTO Shop_Supplier ( ) VALUES ( - 'Malt Kiln Farm Shop' + -2 + , 'Malt Kiln Farm Shop' , NULL , NULL -- , 1 @@ -21103,7 +21547,6 @@ VALUES ) ; - # Supplier Addresses INSERT INTO Shop_Supplier_Address ( id_supplier @@ -21127,7 +21570,7 @@ VALUES , 1 ), ( - 1 + 2 , 1 , 'CV22 6DN' , '53 Alfred Green Close' diff --git a/static/MySQL/0001_destroy.sql b/static/MySQL/0001_destroy.sql index 38c42774..ac88b893 100644 --- a/static/MySQL/0001_destroy.sql +++ b/static/MySQL/0001_destroy.sql @@ -43,6 +43,7 @@ DROP TABLE IF EXISTS tmp_Shop_Supplier_Purchase_Order; DROP TABLE IF EXISTS tmp_Supplier_Purchase_Order; DROP TABLE IF EXISTS tmp_Shop_Supplier; DROP TABLE IF EXISTS tmp_Supplier; +DROP TABLE IF EXISTS tmp_Supplier_Address; DROP TABLE IF EXISTS tmp_Shop_Manufacturing_Purchase_Order_Product_Link; DROP TABLE IF EXISTS tmp_Manufacturing_Purchase_Order_Product_Link; DROP TABLE IF EXISTS tmp_Shop_Manufacturing_Purchase_Order; @@ -305,6 +306,7 @@ DROP PROCEDURE IF EXISTS p_get_many_user; DROP PROCEDURE IF EXISTS p_shop_get_many_user_basket; DROP PROCEDURE IF EXISTS p_shop_edit_user_basket; DROP PROCEDURE IF EXISTS p_shop_save_supplier; +DROP PROCEDURE IF EXISTS p_shop_save_supplier_test; DROP PROCEDURE IF EXISTS p_shop_get_many_supplier; DROP PROCEDURE IF EXISTS p_shop_save_supplier_purchase_order; DROP PROCEDURE IF EXISTS p_shop_get_many_supplier_purchase_order; diff --git a/static/MySQL/1206_tbl_Shop_Product_Permutation.sql b/static/MySQL/1206_tbl_Shop_Product_Permutation.sql index 8421a391..36099278 100644 --- a/static/MySQL/1206_tbl_Shop_Product_Permutation.sql +++ b/static/MySQL/1206_tbl_Shop_Product_Permutation.sql @@ -18,7 +18,7 @@ CREATE TABLE IF NOT EXISTS Shop_Product_Permutation ( id_currency_cost INT NOT NULL, profit_local_min FLOAT NOT NULL, -- id_currency_profit_min INT NOT NULL, - latency_manufacture_days INT NOT NULL, + latency_manufacture INT NOT NULL, id_unit_measurement_quantity INT NOT NULL, CONSTRAINT FK_Shop_Product_Permutation_id_unit_quantity FOREIGN KEY (id_unit_measurement_quantity) diff --git a/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql b/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql index 8ab698c7..9974d9de 100644 --- a/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql +++ b/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql @@ -12,7 +12,7 @@ CREATE TABLE IF NOT EXISTS Shop_Product_Permutation_Temp ( , cost_local FLOAT NOT NULL , id_currency_cost INT NOT NULL , profit_local_min FLOAT NOT NULL - , latency_manufacture_days INT NOT NULL + , latency_manufacture INT NOT NULL , id_unit_measurement_quantity INT NOT NULL , count_unit_measurement_per_quantity_step FLOAT NOT NULL , quantity_min FLOAT NOT NULL diff --git a/static/MySQL/1400_tbl_Shop_Supplier.sql b/static/MySQL/1400_tbl_Shop_Supplier.sql index 201de6db..d8b5f1bc 100644 --- a/static/MySQL/1400_tbl_Shop_Supplier.sql +++ b/static/MySQL/1400_tbl_Shop_Supplier.sql @@ -4,29 +4,30 @@ SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Shop_Supplier'; CREATE TABLE IF NOT EXISTS Shop_Supplier ( - id_supplier INT NOT NULL AUTO_INCREMENT PRIMARY KEY, - name_company VARCHAR(255) NOT NULL, - name_contact VARCHAR(255) NULL, - department_contact VARCHAR(255) NULL, + id_supplier INT NOT NULL AUTO_INCREMENT PRIMARY KEY + , name_company VARCHAR(255) NOT NULL + , name_contact VARCHAR(255) NULL + , department_contact VARCHAR(255) NULL /* id_address INT NOT NULL, CONSTRAINT FK_Shop_Supplier_id_address FOREIGN KEY (id_address) REFERENCES Shop_Address(id_address), */ - phone_number VARCHAR(50) NULL, - fax VARCHAR(50) NULL, - email VARCHAR(255) NOT NULL, - website VARCHAR(255) NULL, - id_currency INT NOT NULL, - CONSTRAINT FK_Shop_Supplier_id_currency + , phone_number VARCHAR(50) NULL + , fax VARCHAR(50) NULL + , email VARCHAR(255) NOT NULL + , website VARCHAR(255) NULL + , id_currency INT NOT NULL + , CONSTRAINT FK_Shop_Supplier_id_currency FOREIGN KEY (id_currency) - REFERENCES Shop_Currency(id_currency), - active BIT NOT NULL DEFAULT 1, - created_on DATETIME, - created_by INT, - id_change_set INT, - CONSTRAINT FK_Shop_Supplier_id_change_set + REFERENCES Shop_Currency(id_currency) + , active BIT NOT NULL DEFAULT 1 + , created_on DATETIME + , created_by INT + , id_change_set INT + , CONSTRAINT FK_Shop_Supplier_id_change_set FOREIGN KEY (id_change_set) - REFERENCES Shop_User_Change_Set(id_change_set) + REFERENCES Shop_Sales_And_Purchasing_Change_Set(id_change_set) + , id_supplier_temp INT NOT NULL ); diff --git a/static/MySQL/1403_tbl_Shop_Supplier_Address.sql b/static/MySQL/1403_tbl_Shop_Supplier_Address.sql index 14d1284c..f7228310 100644 --- a/static/MySQL/1403_tbl_Shop_Supplier_Address.sql +++ b/static/MySQL/1403_tbl_Shop_Supplier_Address.sql @@ -25,5 +25,5 @@ CREATE TABLE Shop_Supplier_Address ( , id_change_set INT , CONSTRAINT FK_Shop_Supplier_Address_id_change_set FOREIGN KEY (id_change_set) - REFERENCES partsltd_prod.Shop_User_Change_Set(id_change_set) + REFERENCES partsltd_prod.Shop_Sales_And_Purchasing_Change_Set(id_change_set) ); \ No newline at end of file diff --git a/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql b/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql index a0b30786..a34314cb 100644 --- a/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql +++ b/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql @@ -7,6 +7,7 @@ SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning CREATE TABLE IF NOT EXISTS Shop_Supplier_Purchase_Order ( id_order INT NOT NULL AUTO_INCREMENT PRIMARY KEY, + id_order_temp INT NULL, id_supplier_ordered INT NOT NULL, CONSTRAINT FK_Shop_Supplier_Purchase_Order_id_supplier_ordered FOREIGN KEY (id_supplier_ordered) diff --git a/static/MySQL/1411_tbl_Shop_Supplier_Purchase_Order_Temp.sql b/static/MySQL/1411_tbl_Shop_Supplier_Purchase_Order_Temp.sql index 95c2af27..c5f23e41 100644 --- a/static/MySQL/1411_tbl_Shop_Supplier_Purchase_Order_Temp.sql +++ b/static/MySQL/1411_tbl_Shop_Supplier_Purchase_Order_Temp.sql @@ -1,11 +1,14 @@ # Supplier Purchase Order Staging +DROP TABLE IF EXISTS Shop_Supplier_Purchase_Order_Temp; + SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Shop_Supplier_Purchase_Order_Temp'; CREATE TABLE IF NOT EXISTS Shop_Supplier_Purchase_Order_Temp ( - id_order INT NOT NULL, - id_supplier_ordered INT NOT NULL, - id_currency_cost INT NOT NULL, - active BIT NULL + id_order INT NOT NULL + , id_supplier_ordered INT NOT NULL + , id_currency_cost INT NOT NULL + , active BIT NULL + , GUID BINARY(36) NOT NULL ); diff --git a/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql b/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql index 82948379..5b4d9375 100644 --- a/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql +++ b/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql @@ -10,8 +10,9 @@ SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning CREATE TABLE IF NOT EXISTS Shop_Supplier_Purchase_Order_Product_Link_Temp ( id_link INT NOT NULL PRIMARY KEY , id_order INT NOT NULL - , id_permutation INT NOT NULL - , id_currency_cost INT NOT NULL + , id_product INT NULL + , id_permutation INT NULL + , csv_list_variations VARCHAR(4000) NULL , id_unit_quantity INT NOT NULL , quantity_ordered FLOAT NOT NULL , quantity_received FLOAT NULL diff --git a/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql b/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql index 7d347b42..2b383b09 100644 --- a/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql +++ b/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql @@ -5,6 +5,7 @@ SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order ( id_order INT NOT NULL AUTO_INCREMENT PRIMARY KEY, + id_order_temp INT NULL, /* cost_total_local FLOAT NOT NULL, id_currency_cost INT NOT NULL, diff --git a/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql b/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql index 7bcb3ebd..dcaaaa8d 100644 --- a/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql +++ b/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql @@ -2,38 +2,41 @@ # Manufacturing Purchase Order Product Link - SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Shop_Manufacturing_Purchase_Order_Product_Link'; CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Product_Link ( - id_link INT NOT NULL AUTO_INCREMENT PRIMARY KEY, - id_order INT NOT NULL, - CONSTRAINT FK_Manufacturing_Purchase_Order_Product_Link_id_order + id_link INT NOT NULL AUTO_INCREMENT PRIMARY KEY + , id_order INT NOT NULL + , CONSTRAINT FK_Manufacturing_Purchase_Order_Product_Link_id_order FOREIGN KEY (id_order) - REFERENCES Shop_Manufacturing_Purchase_Order(id_order), - id_permutation INT NOT NULL, - CONSTRAINT FK_Manufacturing_Purchase_Order_Product_Link_id_permutation + REFERENCES Shop_Manufacturing_Purchase_Order(id_order) + , id_permutation INT NOT NULL + , CONSTRAINT FK_Manufacturing_Purchase_Order_Product_Link_id_permutation FOREIGN KEY (id_permutation) - REFERENCES Shop_Product_Permutation(id_permutation), - cost_unit_local_VAT_excl FLOAT NOT NULL, - cost_unit_local_VAT_incl FLOAT NOT NULL, - price_unit_local_VAT_excl FLOAT NOT NULL, - price_unit_local_VAT_incl FLOAT NOT NULL, - id_unit_quantity INT NOT NULL, - CONSTRAINT FK_Manufacturing_Purchase_Order_id_unit_quantity + REFERENCES Shop_Product_Permutation(id_permutation) + , cost_unit_local_VAT_excl FLOAT NULL + , cost_unit_local_VAT_incl FLOAT NULL + , price_unit_local_VAT_excl FLOAT NULL + , price_unit_local_VAT_incl FLOAT NULL + , id_unit_quantity INT NOT NULL + , CONSTRAINT FK_Manufacturing_Purchase_Order_id_unit_quantity FOREIGN KEY (id_unit_quantity) - REFERENCES Shop_Unit_Measurement(id_unit_measurement), - quantity_used FLOAT NOT NULL, - quantity_produced FLOAT NOT NULL, - latency_manufacture_days INT NOT NULL, - display_order INT NOT NULL, - active BIT NOT NULL, - created_on DATETIME, - created_by INT, - updated_last_on DATETIME NULL, - created_last_by VARCHAR(100) NULL, - id_change_set INT NULL, - CONSTRAINT FK_Manufacturing_Purchase_Order_id_change_set + REFERENCES Shop_Unit_Measurement(id_unit_measurement) + , quantity_used FLOAT NULL + , quantity_produced FLOAT NULL + , id_unit_latency_manufacture INT NULL + , CONSTRAINT FK_MPO_id_unit_latency_manufacture + FOREIGN KEY (id_unit_latency_manufacture) + REFERENCES Shop_Unit_Measurement(id_unit_measurement) + , latency_manufacture INT NULL + , display_order INT NOT NULL + , active BIT NOT NULL + , created_on DATETIME + , created_by INT + , updated_last_on DATETIME NULL + , created_last_by VARCHAR(100) NULL + , id_change_set INT NULL + , CONSTRAINT FK_Manufacturing_Purchase_Order_id_change_set FOREIGN KEY (id_change_set) REFERENCES Shop_Sales_And_Purchasing_Change_Set(id_change_set) ); diff --git a/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql b/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql index 22a99720..d9e9e149 100644 --- a/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql +++ b/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql @@ -11,9 +11,10 @@ CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Product_Link_Temp ( id_order INT NOT NULL, id_permutation INT NOT NULL, id_unit_quantity INT NOT NULL, - quantity_used FLOAT NOT NULL, - latency_manufacture_days INT NOT NULL, - quantity_produced FLOAT NOT NULL, + quantity_used FLOAT NULL, + quantity_produced FLOAT NULL, + id_unit_latency_manufacture INT NULL, + latency_manufacture INT NULL, display_order INT NOT NULL, active BIT NOT NULL, cost_unit_local_VAT_excl FLOAT NULL, diff --git a/static/MySQL/3206_tri_Shop_Product_Permutation.sql b/static/MySQL/3206_tri_Shop_Product_Permutation.sql index 4ef35e7f..30dc5400 100644 --- a/static/MySQL/3206_tri_Shop_Product_Permutation.sql +++ b/static/MySQL/3206_tri_Shop_Product_Permutation.sql @@ -93,9 +93,9 @@ BEGIN WHERE NOT (OLD.price_GBP_min <=> NEW.price_GBP_min) UNION */ - # Changed latency_manufacture_days - SELECT NEW.id_permutation, 'latency_manufacture_days', CONVERT(OLD.latency_manufacture_days, CHAR), CONVERT(NEW.latency_manufacture_days, CHAR), NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + # Changed latency_manufacture + SELECT NEW.id_permutation, 'latency_manufacture', CONVERT(OLD.latency_manufacture, CHAR), CONVERT(NEW.latency_manufacture, CHAR), NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION # Changed id_unit_measurement_quantity SELECT NEW.id_permutation, 'id_unit_measurement_quantity', CONVERT(OLD.id_unit_measurement_quantity, CHAR), CONVERT(NEW.id_unit_measurement_quantity, CHAR), NEW.id_change_set diff --git a/static/MySQL/3400_tri_Shop_Supplier.sql b/static/MySQL/3400_tri_Shop_Supplier.sql index 97469e06..229400c9 100644 --- a/static/MySQL/3400_tri_Shop_Supplier.sql +++ b/static/MySQL/3400_tri_Shop_Supplier.sql @@ -72,6 +72,10 @@ BEGIN # Changed id_currency SELECT NEW.id_supplier, 'id_currency', OLD.id_currency, NEW.id_currency, NEW.id_change_set WHERE NOT OLD.id_currency <=> NEW.id_currency + UNION + # Changed id_supplier_temp + SELECT NEW.id_supplier, 'id_supplier_temp', OLD.id_supplier_temp, NEW.id_supplier_temp, NEW.id_change_set + WHERE NOT OLD.id_supplier_temp <=> NEW.id_supplier_temp ; END // DELIMITER ;; diff --git a/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql b/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql index bb8c8cf6..bf1d7bfe 100644 --- a/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql +++ b/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql @@ -35,6 +35,10 @@ BEGIN value_new, id_change_set ) + # Changed id_order_temp + SELECT NEW.id_order, 'id_order_temp', OLD.id_order_temp, NEW.id_order_temp, NEW.id_change_set + WHERE NOT OLD.id_order_temp <=> NEW.id_order_temp + UNION # Changed id_supplier_ordered SELECT NEW.id_order, 'id_supplier_ordered', OLD.id_supplier_ordered, NEW.id_supplier_ordered, NEW.id_change_set WHERE NOT OLD.id_supplier_ordered <=> NEW.id_supplier_ordered diff --git a/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql b/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql index 33292cec..06cb2696 100644 --- a/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql +++ b/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql @@ -13,7 +13,11 @@ BEFORE INSERT ON Shop_Manufacturing_Purchase_Order FOR EACH ROW BEGIN SET NEW.created_on := IFNULL(NEW.created_on, NOW()); - SET NEW.created_by := IFNULL(NEW.created_by, IFNULL((SELECT id_user FROM Shop_User WHERE firstname = CURRENT_USER()), -1)); + -- SET NEW.created_by := IFNULL(NEW.created_by, IFNULL((SELECT id_user FROM Shop_User WHERE firstname = CURRENT_USER()), -1)); + IF NOT EXISTS (SELECT * FROM partsltd_prod.Shop_User U WHERE U.id_user = NEW.created_on LIMIT 1) THEN + SIGNAL SQLSTATE '45000' + SET MESSAGE_TEXT = 'Valid created by User ID must be provided.'; + END IF; END // DELIMITER ;; @@ -27,6 +31,10 @@ BEGIN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'New change Set ID must be provided.'; END IF; + IF NOT EXISTS (SELECT * FROM partsltd_prod.Shop_User U WHERE U.id_user = NEW.created_on LIMIT 1) THEN + SIGNAL SQLSTATE '45000' + SET MESSAGE_TEXT = 'Valid created by User ID must be provided.'; + END IF; INSERT INTO Shop_Manufacturing_Purchase_Order_Audit ( id_order, @@ -35,6 +43,10 @@ BEGIN value_new, id_change_set ) + # Changed id_order_temp + SELECT NEW.id_order, 'id_order_temp', OLD.id_order_temp, NEW.id_order_temp, NEW.id_change_set + WHERE NOT OLD.id_order_temp <=> NEW.id_order_temp + UNION # Changed id_currency SELECT NEW.id_order, 'id_currency', OLD.id_currency, NEW.id_currency, NEW.id_change_set WHERE NOT OLD.id_currency <=> NEW.id_currency diff --git a/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql b/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql index 5077fb5b..b51277f9 100644 --- a/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql +++ b/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql @@ -71,9 +71,13 @@ BEGIN SELECT NEW.id_order, 'price_unit_local_VAT_incl', OLD.price_unit_local_VAT_incl, NEW.price_unit_local_VAT_incl, NEW.id_change_set WHERE NOT OLD.price_unit_local_VAT_incl <=> NEW.price_unit_local_VAT_incl UNION - # Changed latency_manufacture_days - SELECT NEW.id_link, 'latency_manufacture_days', OLD.latency_manufacture_days, NEW.latency_manufacture_days, NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + # Changed id_unit_latency_manufacture + SELECT NEW.id_link, 'id_unit_latency_manufacture', OLD.id_unit_latency_manufacture, NEW.id_unit_latency_manufacture, NEW.id_change_set + WHERE NOT OLD.id_unit_latency_manufacture <=> NEW.id_unit_latency_manufacture + UNION + # Changed latency_manufacture + SELECT NEW.id_link, 'latency_manufacture', OLD.latency_manufacture, NEW.latency_manufacture, NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION # Changed display_order SELECT NEW.id_link, 'display_order', OLD.display_order, NEW.display_order, NEW.id_change_set diff --git a/static/MySQL/6206_fn_shop_get_product_permutation_name.sql b/static/MySQL/6206_fn_shop_get_product_permutation_name.sql index a5b8545a..fb975848 100644 --- a/static/MySQL/6206_fn_shop_get_product_permutation_name.sql +++ b/static/MySQL/6206_fn_shop_get_product_permutation_name.sql @@ -12,18 +12,21 @@ BEGIN SET name := ( SELECT CONCAT( - P.name + IFNULL(PC.name, '(No Category)') + , ' - ' + , IFNULL(P.name, '(No Product)') , CASE WHEN P.has_variations = 1 THEN CONCAT(' - ', GROUP_CONCAT(CONCAT(VT.name, ': ', V.name) SEPARATOR ', ')) ELSE '' END ) FROM Shop_Product_Permutation PP INNER JOIN Shop_Product P ON PP.id_product = P.id_product - INNER JOIN Shop_Product_Permutation_Variation_Link PPVL ON PP.id_permutation = PPVL.id_permutation - INNER JOIN Shop_Variation V ON PPVL.id_variation = V.id_variation - INNER JOIN Shop_Variation_Type VT ON V.id_type = VT.id_type + INNER JOIN Shop_Product_Category PC ON P.id_category = PC.id_category + LEFT JOIN Shop_Product_Permutation_Variation_Link PPVL ON PP.id_permutation = PPVL.id_permutation + LEFT JOIN Shop_Variation V ON PPVL.id_variation = V.id_variation + LEFT JOIN Shop_Variation_Type VT ON V.id_type = VT.id_type WHERE PP.id_permutation = id_product_permutation - GROUP BY P.id_product, P.name, P.has_variations, VT.display_order, VT.name, V.display_order, V.name + GROUP BY PC.id_category, PC.name, P.id_product, P.name, P.has_variations, VT.display_order, VT.name, V.display_order, V.name LIMIT 1 ); @@ -31,3 +34,10 @@ BEGIN END // DELIMITER ; + + +SELECT + fn_shop_get_product_permutation_name( + 3 -- id_product_permutation + ) +; \ No newline at end of file diff --git a/static/MySQL/7204_p_shop_calc_product_permutation.sql b/static/MySQL/7204_p_shop_calc_product_permutation.sql index f2e29caf..0652d628 100644 --- a/static/MySQL/7204_p_shop_calc_product_permutation.sql +++ b/static/MySQL/7204_p_shop_calc_product_permutation.sql @@ -549,7 +549,7 @@ BEGIN , cost_local , id_currency_cost , profit_local_min - , latency_manufacture_days + , latency_manufacture , id_unit_measurement_quantity , count_unit_measurement_per_quantity_step , quantity_min @@ -575,7 +575,7 @@ BEGIN , PP.cost_local , PP.id_currency_cost , PP.profit_local_min - , PP.latency_manufacture_days + , PP.latency_manufacture , PP.id_unit_measurement_quantity , PP.count_unit_measurement_per_quantity_step , PP.quantity_min diff --git a/static/MySQL/7204_p_shop_get_many_product.sql b/static/MySQL/7204_p_shop_get_many_product.sql index 90e7388a..46308a04 100644 --- a/static/MySQL/7204_p_shop_get_many_product.sql +++ b/static/MySQL/7204_p_shop_get_many_product.sql @@ -342,7 +342,7 @@ BEGIN C.code AS code_currency_cost, C.symbol AS symbol_currency_cost, PP.profit_local_min, - PP.latency_manufacture_days, + PP.latency_manufacture, PP.id_unit_measurement_quantity, UM_Q.symbol AS symbol_unit_measurement_quantity, UM_Q.symbol_is_suffix_not_prefix AS symbol_is_suffix_not_prefix_unit_measurement_quantity, diff --git a/static/MySQL/7206_p_shop_save_product_permutation.sql b/static/MySQL/7206_p_shop_save_product_permutation.sql index cfb59e1a..e24a9839 100644 --- a/static/MySQL/7206_p_shop_save_product_permutation.sql +++ b/static/MySQL/7206_p_shop_save_product_permutation.sql @@ -74,7 +74,7 @@ BEGIN , cost_local FLOAT NOT NULL , id_currency_cost INT NOT NULL , profit_local_min FLOAT NOT NULL - , latency_manufacture_days INT NOT NULL + , latency_manufacture INT NOT NULL , id_unit_measurement_quantity INT NOT NULL , count_unit_measurement_per_quantity_step FLOAT NOT NULL , quantity_min FLOAT NOT NULL @@ -112,7 +112,7 @@ BEGIN , cost_local , id_currency_cost , profit_local_min - , latency_manufacture_days + , latency_manufacture , id_unit_measurement_quantity , count_unit_measurement_per_quantity_step , quantity_min @@ -136,7 +136,7 @@ BEGIN , IFNULL(PP_T.cost_local, PP.cost_local) AS cost_local , IFNULL(PP_T.id_currency_cost, PP.id_currency_cost) AS a_id_currency_cost , IFNULL(PP_T.profit_local_min, PP.profit_local_min) AS profit_local_min - , IFNULL(PP_T.latency_manufacture_days, PP.latency_manufacture_days) AS latency_manufacture_days + , IFNULL(PP_T.latency_manufacture, PP.latency_manufacture) AS latency_manufacture , IFNULL(PP_T.id_unit_measurement_quantity, PP.id_unit_measurement_quantity) AS id_unit_measurement_quantity , IFNULL(PP_T.count_unit_measurement_per_quantity_step, PP.count_unit_measurement_per_quantity_step) AS count_unit_measurement_per_quantity_step , IFNULL(PP_T.quantity_min, PP.quantity_min) AS quantity_min @@ -210,12 +210,12 @@ BEGIN WHERE ISNULL(t_P.profit_local_min) ; END IF; - -- latency_manufacture_days - IF EXISTS (SELECT * FROM tmp_Permutation t_P WHERE ISNULL(t_P.latency_manufacture_days) LIMIT 1) THEN + -- latency_manufacture + IF EXISTS (SELECT * FROM tmp_Permutation t_P WHERE ISNULL(t_P.latency_manufacture) LIMIT 1) THEN INSERT INTO tmp_Msg_Error ( guid , id_type - , latency_manufacture_days + , latency_manufacture , msg ) SELECT @@ -224,7 +224,7 @@ BEGIN , v_code_type_error_bad_data , CONCAT('The following product permutation(s) do not have a manufacturing latency: ', GROUP_CONCAT(IFNULL(t_P.name_error, 'NULL') SEPARATOR ', ')) AS msg FROM tmp_Permutation t_P - WHERE ISNULL(t_P.latency_manufacture_days) + WHERE ISNULL(t_P.latency_manufacture) ; END IF; -- id_unit_measurement_quantity @@ -396,7 +396,7 @@ BEGIN , PP.cost_local = t_P.cost_local , PP.id_currency_cost = t_P.id_currency_cost , PP.profit_local_min = t_P.profit_local_min - , PP.latency_manufacture_days = t_P.latency_manufacture_days + , PP.latency_manufacture = t_P.latency_manufacture , PP.id_unit_measurement_quantity = t_P.id_unit_measurement_quantity , PP.count_unit_measurement_per_quantity_step = t_P.count_unit_measurement_per_quantity_step , PP.quantity_min = t_P.quantity_min @@ -420,7 +420,7 @@ BEGIN , cost_local , id_currency_cost , profit_local_min - , latency_manufacture_days + , latency_manufacture , id_unit_measurement_quantity , count_unit_measurement_per_quantity_step , quantity_min @@ -443,7 +443,7 @@ BEGIN , t_P.cost_local AS cost_local , t_P.id_currency_cost AS id_currency_cost , t_P.profit_local_min AS profit_local_min - , t_P.latency_manufacture_days AS latency_manufacture_days + , t_P.latency_manufacture AS latency_manufacture , t_P.id_unit_measurement_quantity AS id_unit_measurement_quantity , t_P.count_unit_measurement_per_quantity_step AS count_unit_measurement_per_quantity_step , t_P.quantity_min AS quantity_min @@ -492,7 +492,7 @@ INSERT INTO Shop_Product_Permutation_Temp ( cost_local, id_currency_cost, profit_local_min, - latency_manufacture_days, + latency_manufacture, id_unit_measurement_quantity, count_unit_measurement_per_quantity_step, quantity_min, @@ -516,7 +516,7 @@ VALUES , 5.0 -- cost_local, , 1 -- id_currency_cost, , 3.0 -- profit_local_min, - , 14 -- latency_manufacture_days, + , 14 -- latency_manufacture, , 1 -- id_unit_measurement_quantity, , 1.0 -- count_unit_measurement_quantity, , 3.0 -- quantity_min, diff --git a/static/MySQL/7220_p_shop_save_stock_item.sql b/static/MySQL/7220_p_shop_save_stock_item.sql index cf6c2abe..d8ade266 100644 --- a/static/MySQL/7220_p_shop_save_stock_item.sql +++ b/static/MySQL/7220_p_shop_save_stock_item.sql @@ -629,7 +629,7 @@ INSERT INTO Shop_Product_Permutation_Temp ( cost_local, id_currency_cost, profit_local_min, - latency_manufacture_days, + latency_manufacture, id_unit_measurement_quantity, count_unit_measurement_per_quantity_step, quantity_min, @@ -653,7 +653,7 @@ VALUES , 5.0 -- cost_local, , 1 -- id_currency_cost, , 3.0 -- profit_local_min, - , 14 -- latency_manufacture_days, + , 14 -- latency_manufacture, , 1 -- id_unit_measurement_quantity, , 1.0 -- count_unit_measurement_quantity, , 3.0 -- quantity_min, diff --git a/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql b/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql index 40174c26..e7decea6 100644 --- a/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql +++ b/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql @@ -691,7 +691,7 @@ BEGIN CURRENCY.code AS code_currency_cost, CURRENCY.symbol AS symbol_currency_cost, PP.profit_local_min, - t_P.latency_manufacture_days, + t_P.latency_manufacture, t_P.quantity_min, t_P.quantity_max, t_P.quantity_step, diff --git a/static/MySQL/7400_p_shop_save_supplier.sql b/static/MySQL/7400_p_shop_save_supplier.sql index 6c9fcc89..09eb3319 100644 --- a/static/MySQL/7400_p_shop_save_supplier.sql +++ b/static/MySQL/7400_p_shop_save_supplier.sql @@ -68,11 +68,12 @@ BEGIN SET a_comment := TRIM(IFNULL(a_comment, '')); DROP TEMPORARY TABLE IF EXISTS tmp_Supplier; + DROP TEMPORARY TABLE IF EXISTS tmp_Supplier_Address; DROP TEMPORARY TABLE IF EXISTS tmp_Msg_Error; CREATE TEMPORARY TABLE tmp_Supplier ( - id_supplier INT NOT NULL - , id_address INT NOT NULL + id_supplier_temp INT NOT NULL + , id_supplier INT NULL , id_currency INT NOT NULL , name_company VARCHAR(255) NOT NULL , name_contact VARCHAR(255) NULL @@ -96,6 +97,8 @@ BEGIN , city VARCHAR(256) NOT NULL , county VARCHAR(256) NOT NULL , active BIT NOT NULL + , name_error VARCHAR(1000) NOT NULL + , is_new BIT NOT NULL ); CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error ( @@ -107,8 +110,8 @@ BEGIN INSERT INTO tmp_Supplier ( - id_supplier - , id_address + id_supplier_temp + , id_supplier , id_currency , name_company , name_contact @@ -123,7 +126,7 @@ BEGIN ) SELECT S_T.id_supplier - , S_T.id_address + , S_T.id_supplier , S_T.id_currency , S_T.name_company , S_T.name_contact @@ -269,7 +272,7 @@ BEGIN ; END IF; # duplicate - IF EXISTS (SELECT COUNT(*) FROM tmp_Supplier t_S WHERE COUNT(*) > 1 GROUP BY t_S.id_supplier) THEN + IF EXISTS (SELECT COUNT(*) FROM tmp_Supplier t_S GROUP BY t_S.id_supplier HAVING COUNT(*) > 1) THEN INSERT INTO tmp_Msg_Error ( id_type , code @@ -280,8 +283,8 @@ BEGIN , v_code_type_error_bad_data , CONCAT('The following supplier(s) are duplicates: ', GROUP_CONCAT(IFNULL(t_S.name_error, 'NULL') SEPARATOR ', ')) AS msg FROM tmp_Supplier t_S - WHERE COUNT(*) > 1 GROUP BY t_S.id_supplier + HAVING COUNT(*) > 1 ; END IF; @@ -353,7 +356,7 @@ BEGIN ; END IF; # duplicate - IF EXISTS (SELECT COUNT(*) FROM tmp_Supplier_Address t_SA WHERE COUNT(*) > 1 GROUP BY t_SA.id_address) THEN + IF EXISTS (SELECT COUNT(*) FROM tmp_Supplier_Address t_SA GROUP BY t_SA.id_address HAVING COUNT(*) > 1) THEN INSERT INTO tmp_Msg_Error ( id_type , code @@ -364,15 +367,15 @@ BEGIN , v_code_type_error_bad_data , CONCAT('The following supplier address(es) are duplicates: ', GROUP_CONCAT(IFNULL(t_S.name_error, 'NULL') SEPARATOR ', ')) AS msg FROM tmp_Supplier_Address t_SA - WHERE COUNT(*) > 1 GROUP BY t_SA.id_address + HAVING COUNT(*) > 1 ; END IF; -- Permissions IF a_debug = 1 THEN SELECT - v_guid + a_guid , a_id_user , FALSE -- get inactive users , v_id_permission_supplier @@ -384,7 +387,7 @@ BEGIN END IF; CALL p_shop_calc_user( - v_guid + a_guid , a_id_user , FALSE -- get inactive users , v_id_permission_supplier @@ -397,7 +400,7 @@ BEGIN SELECT * from partsltd_prod.Shop_Calc_User_Temp WHERE GUID = a_guid; END IF; - IF NOT EXISTS (SELECT can_view FROM partsltd_prod.Shop_Calc_User_Temp UE_T WHERE UE_T.GUID = v_guid) THEN + IF NOT EXISTS (SELECT can_view FROM partsltd_prod.Shop_Calc_User_Temp UE_T WHERE UE_T.GUID = a_guid) THEN DELETE FROM tmp_Msg_Error; INSERT INTO tmp_Msg_Error ( @@ -413,7 +416,10 @@ BEGIN ; END IF; - CALL partsltd_prod.p_shop_clear_calc_user( a_guid ); + CALL partsltd_prod.p_shop_clear_calc_user( + a_guid + , 0 -- a_debug + ); IF EXISTS ( SELECT * FROM tmp_Msg_Error LIMIT 1 ) THEN DELETE FROM tmp_Supplier; @@ -437,7 +443,7 @@ BEGIN SET v_id_change_set := LAST_INSERT_ID(); INSERT INTO partsltd_prod.Shop_Supplier ( - id_address + id_supplier_temp , id_currency , name_company , name_contact @@ -450,7 +456,7 @@ BEGIN , id_change_set ) SELECT - t_S.id_address + t_S.id_supplier , t_S.id_currency , t_S.name_company , t_S.name_contact @@ -460,18 +466,31 @@ BEGIN , t_S.email , t_S.website , t_S.active - v_id_change_set + , v_id_change_set FROM tmp_Supplier t_S WHERE t_S.is_new = 1 ; + UPDATE tmp_Supplier t_S + INNER JOIN partsltd_prod.Shop_Supplier S ON t_S.id_supplier_temp = S.id_supplier_temp + SET + t_S.id_supplier = S.id_supplier + WHERE t_S.is_new = 1 + ; + + UPDATE tmp_Supplier_Address t_SA + INNER JOIN tmp_Supplier t_S ON t_SA.id_supplier = t_S.id_supplier_temp + SET + t_SA.id_supplier = t_S.id_supplier + WHERE t_S.is_new = 1 + ; + UPDATE partsltd_prod.Shop_Supplier S INNER JOIN tmp_Supplier t_S ON S.id_supplier = t_S.id_supplier AND t_S.is_new = 0 SET - S.id_address = t_S.id_address - , S.id_currency = t_S.id_currency + S.id_currency = t_S.id_currency , S.name_company = t_S.name_company , S.name_contact = t_S.name_contact , S.department_contact = t_S.department_contact @@ -497,8 +516,7 @@ BEGIN ; INSERT INTO partsltd_prod.Shop_Supplier_Address ( - id_address - , id_supplier + id_supplier , id_region , postcode , address_line_1 @@ -506,10 +524,10 @@ BEGIN , city , county , active + , id_change_set ) SELECT - t_SA.id_address - , t_SA.id_supplier + t_SA.id_supplier , t_SA.id_region , t_SA.postcode , t_SA.address_line_1 @@ -517,6 +535,7 @@ BEGIN , t_SA.city , t_SA.county , t_SA.active + , v_id_change_set FROM tmp_Supplier_Address t_SA WHERE t_SA.is_new = 1 ; @@ -526,8 +545,7 @@ BEGIN ON SA.id_address = t_SA.id_address AND t_SA.is_new = 0 SET - SA.id_address = t_SA.id_address - , SA.id_supplier = t_SA.id_supplier + SA.id_supplier = t_SA.id_supplier , SA.id_region = t_SA.id_region , SA.postcode = t_SA.postcode , SA.address_line_1 = t_SA.address_line_1 @@ -535,6 +553,7 @@ BEGIN , SA.city = t_SA.city , SA.county = t_SA.county , SA.active = t_SA.active + , SA.id_change_set = v_id_change_set ; COMMIT; END IF; @@ -546,11 +565,14 @@ BEGIN ; IF a_debug = 1 THEN + SELECT 'A_DEBUG'; SELECT * from tmp_Supplier; + SELECT * from tmp_Supplier_Address; END IF; - DROP TEMPORARY TABLE tmp_Supplier; - DROP TEMPORARY TABLE tmp_Msg_Error; + DROP TEMPORARY TABLE IF EXISTS tmp_Supplier; + DROP TEMPORARY TABLE IF EXISTS tmp_Supplier_Address; + DROP TEMPORARY TABLE IF EXISTS tmp_Msg_Error; IF a_debug = 1 THEN CALL partsltd_prod.p_debug_timing_reporting ( v_time_start ); @@ -561,3 +583,7 @@ DELIMITER ;; -- SELECT * FROM Shop_Supplier; +delete from shop_supplier_audit where id_supplier = 9; +delete from shop_supplier where id_supplier = 9; +delete from shop_supplier_address_audit where id_address = -4; +delete from shop_supplier_address where id_address = -4; \ No newline at end of file diff --git a/static/MySQL/7400_p_shop_save_supplier_temp.sql b/static/MySQL/7400_p_shop_save_supplier_temp.sql new file mode 100644 index 00000000..0b2ea5d7 --- /dev/null +++ b/static/MySQL/7400_p_shop_save_supplier_temp.sql @@ -0,0 +1,131 @@ + + +-- Clear previous proc +DROP PROCEDURE IF EXISTS partsltd_prod.p_shop_save_supplier_test; + + +DELIMITER // +CREATE PROCEDURE p_shop_save_supplier_test () +BEGIN + + DECLARE v_guid BINARY(36); + DECLARE v_time_start TIMESTAMP(6); + + SET v_time_start := CURRENT_TIMESTAMP(6); + SET v_guid := 'nips'; + + SELECT * + FROM partsltd_prod.Shop_Supplier + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Address + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Address_Temp + ; + + START TRANSACTION; + + INSERT INTO partsltd_prod.Shop_Supplier_Temp ( + id_supplier + , id_currency + , name_company + , name_contact + , department_contact + , phone_number + , fax + , email + , website + , active + , guid + ) + VALUES ( + -3 + , 1 + , 'Asda' + , '' + , NULL + , '' + , '123' + , 'test mail' + , 'test url' + , 1 -- active + , v_guid + ); + + INSERT INTO partsltd_prod.Shop_Supplier_Address_Temp ( + id_address + , id_supplier + , id_region + , postcode + , address_line_1 + , address_line_2 + , city + , county + , active + , GUID + ) + VALUES ( + -4 + , -3 + , 1 + , 'test postcode' + , 'test' + , 'test' + , 'test' + , 'cunty' + , 1 + , v_guid + ) + ; + + COMMIT; + + SELECT * + FROM partsltd_prod.Shop_Supplier_Temp + WHERE GUID = v_guid + ; + + SELECT * + FROM partsltd_prod.Shop_Supplier_Address_Temp + WHERE GUID = v_guid + ; + + CALL partsltd_prod.p_shop_save_supplier ( + 'Test save Supplier' -- comment + , v_guid -- guid + , 1 -- id_user + , 1 -- debug + ); + + SELECT * + FROM partsltd_prod.Shop_Supplier_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Address_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Address + ; + + CALL partsltd_prod.p_debug_timing_reporting ( v_time_start ); +END // +DELIMITER ;; + +CALL partsltd_prod.p_shop_save_supplier_test (); + +DELETE FROM partsltd_prod.Shop_Supplier_Temp; +DELETE FROM partsltd_prod.Shop_Supplier_Address_Temp; + +DROP TABLE IF EXISTS tmp_Msg_Error; +/* + +Cannot add or update a child row: a foreign key constraint fails (`partsltd_prod`.`shop_supplier_address`, CONSTRAINT `FK_Shop_Supplier_Address_id_supplier` FOREIGN KEY (`id_supplier`) REFERENCES `shop_supplier` (`id_supplier`) ON UPDATE RESTRICT) + +*/ \ No newline at end of file diff --git a/static/MySQL/7401_p_shop_get_many_supplier.sql b/static/MySQL/7401_p_shop_get_many_supplier.sql index 99e921e2..1df38a87 100644 --- a/static/MySQL/7401_p_shop_get_many_supplier.sql +++ b/static/MySQL/7401_p_shop_get_many_supplier.sql @@ -196,8 +196,8 @@ BEGIN SELECT t_S.id_supplier, S.id_currency, - C.symbol AS symbol_currency, C.code AS code_currency, + C.symbol AS symbol_currency, S.name_company, S.name_contact, S.department_contact, diff --git a/static/MySQL/7403_p_shop_save_supplier_purchase_order.sql b/static/MySQL/7403_p_shop_save_supplier_purchase_order.sql new file mode 100644 index 00000000..8ee883ff --- /dev/null +++ b/static/MySQL/7403_p_shop_save_supplier_purchase_order.sql @@ -0,0 +1,843 @@ + + + + +-- Clear previous proc +DROP PROCEDURE IF EXISTS p_shop_save_supplier_purchase_order; + +DROP TABLE IF EXISTS tmp_Supplier_Purchase_Order_Product_Link; +DROP TABLE IF EXISTS tmp_Msg_Error; + +DELIMITER // +CREATE PROCEDURE p_shop_save_supplier_purchase_order ( + IN a_comment VARCHAR(500) + , IN a_guid BINARY(36) + , IN a_id_user INT + , IN a_debug BIT +) +BEGIN + DECLARE v_code_type_error_bad_data VARCHAR(50); + DECLARE v_code_type_error_no_permission VARCHAR(50); + DECLARE v_code_type_error_warning VARCHAR(50); + DECLARE v_id_access_level_edit INT; + DECLARE v_id_change_set INT; + DECLARE v_id_permission_supplier_purchase_order VARCHAR(100); + DECLARE v_id_type_error_bad_data INT; + DECLARE v_id_type_error_no_permission INT; + DECLARE v_id_type_error_warning INT; + DECLARE v_ids_product_permission TEXT; + DECLARE v_time_start TIMESTAMP(6); + + DECLARE exit handler for SQLEXCEPTION + BEGIN + GET DIAGNOSTICS CONDITION 1 + @sqlstate = RETURNED_SQLSTATE + , @errno = MYSQL_ERRNO + , @text = MESSAGE_TEXT + ; + + ROLLBACK; + + CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error ( + display_order INT NOT NULL PRIMARY KEY AUTO_INCREMENT + , id_type INT NULL + , code VARCHAR(50) NOT NULL + , msg VARCHAR(4000) NOT NULL + ); + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + MET.id_type + , @errno + , @text + FROM partsltd_prod.Shop_Msg_Error_Type MET + WHERE code = 'MYSQL_ERROR' + ; + SELECT * + FROM tmp_Msg_Error; + DROP TABLE IF EXISTS tmp_Msg_Error; + END; + + SET v_time_start := CURRENT_TIMESTAMP(6); + SET v_code_type_error_bad_data := (SELECT code FROM partsltd_prod.Shop_Msg_Error_Type WHERE code = 'BAD_DATA' LIMIT 1); + SET v_id_type_error_bad_data := (SELECT id_type FROM partsltd_prod.Shop_Msg_Error_Type WHERE code = v_code_type_error_bad_data LIMIT 1); + SET v_code_type_error_no_permission := (SELECT code FROM partsltd_prod.Shop_Msg_Error_Type WHERE code = 'NO_PERMISSION' LIMIT 1); + SET v_id_type_error_no_permission := (SELECT id_type FROM partsltd_prod.Shop_Msg_Error_Type WHERE code = v_code_type_error_no_permission LIMIT 1); + SET v_code_type_error_warning := (SELECT code FROM partsltd_prod.Shop_Msg_Error_Type WHERE code = 'WARNING' LIMIT 1); + SET v_id_type_error_warning := (SELECT id_type FROM partsltd_prod.Shop_Msg_Error_Type WHERE code = v_code_type_error_warning LIMIT 1); + SET v_id_permission_supplier_purchase_order := (SELECT GROUP_CONCAT(id_permission SEPARATOR ',') FROM partsltd_prod.Shop_Permission WHERE code IN ('STORE_SUPPLIER', 'STORE_SUPPLIER_PURCHASE_ORDER', 'STORE_PRODUCT')); + SET v_id_access_level_edit := (SELECT id_access_level FROM partsltd_prod.Shop_Access_Level WHERE code = 'EDIT' LIMIT 1); + + CALL p_validate_guid ( a_guid ); + SET a_comment := TRIM(IFNULL(a_comment, '')); + + DROP TEMPORARY TABLE IF EXISTS tmp_Supplier_Purchase_Order; + DROP TEMPORARY TABLE IF EXISTS tmp_Supplier_Purchase_Order_Product_Link; + DROP TEMPORARY TABLE IF EXISTS tmp_Msg_Error; + + -- Temporary tables + CREATE TEMPORARY TABLE tmp_Supplier_Purchase_Order ( + id_order INT NOT NULL PRIMARY KEY + , id_order_temp INT NOT NULL + , id_supplier_ordered INT NOT NULL + , id_currency_cost INT NOT NULL + , cost_total_local_VAT_excl FLOAT NULL + , cost_total_local_VAT_incl FLOAT NULL + , active BIT NOT NULL + , is_new BIT NOT NULL + , name_error VARCHAR(1000) NOT NULL + ); + + CREATE TEMPORARY TABLE tmp_Supplier_Purchase_Order_Product_Link ( + id_link INT NOT NULL PRIMARY KEY + , id_order INT NOT NULL + , id_permutation INT NOT NULL + -- , id_currency_cost INT NOT NULL + , quantity_ordered FLOAT NOT NULL + , id_unit_quantity INT NOT NULL + , quantity_received FLOAT NULL + , latency_delivery_days INT NOT NULL + , display_order INT NOT NULL + , active BIT NOT NULL + , cost_total_local_VAT_excl FLOAT NOT NULL + , cost_total_local_VAT_incl FLOAT NOT NULL + , cost_unit_local_VAT_excl FLOAT NOT NULL + , cost_unit_local_VAT_incl FLOAT NOT NULL + , has_order BIT NULL + , is_new BIT NOT NULL + , name_error VARCHAR(1000) NULL + ); + + CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error ( + display_order INT NOT NULL PRIMARY KEY AUTO_INCREMENT + , id_type INT NOT NULL + , code VARCHAR(50) NOT NULL + , msg VARCHAR(4000) NOT NULL + ); + + INSERT INTO tmp_Supplier_Purchase_Order ( + id_order + , id_order_temp + , id_supplier_ordered + , id_currency_cost + , active + , is_new + , name_error + ) + SELECT + SPO_T.id_order + , SPO_T.id_order + , IFNULL(IFNULL(SPO_T.id_supplier_ordered, SPO.id_supplier_ordered), 0) AS id_supplier_ordered + , IFNULL(IFNULL(SPO_T.id_currency_cost, SPO.id_currency_cost), 0) AS id_currency_cost + , IFNULL(IFNULL(SPO_T.active, SPO.active), 1) AS active + , ISNULL(SPO.id_order) AS is_new + , CONCAT( + IFNULL(S.name_company, '(No Supplier)') + , ' - ' + , IFNULL(SPO.created_on, '(No creation date)') + , ' - ' + , IFNULL(C.symbol, '(No Currency)') + , ' ' + , IFNULL(IFNULL(SPO.cost_total_local_vat_excl, SPO.cost_total_local_vat_incl), '(No cost)') + ) AS name_error + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Temp SPO_T + LEFT JOIN partsltd_prod.Shop_Supplier_Purchase_Order SPO ON SPO_T.id_order = SPO.id_order + LEFT JOIN partsltd_prod.Shop_Supplier S ON SPO_T.id_supplier_ordered = S.id_supplier + LEFT JOIN partsltd_prod.Shop_Currency C ON SPO_T.id_currency_cost = C.id_currency + WHERE SPO_T.GUID = a_guid + ; + + INSERT INTO tmp_Supplier_Purchase_Order_Product_Link ( + id_link + , id_order + , id_permutation + -- , id_currency_cost + , id_unit_quantity + , quantity_ordered + , quantity_received + , latency_delivery_days + , display_order + , cost_total_local_VAT_excl + , cost_total_local_VAT_incl + , cost_unit_local_VAT_excl + , cost_unit_local_VAT_incl + , active + , has_order + , is_new + ) + SELECT + IFNULL(SPOPL_T.id_link, 0) AS id_link + , IFNULL(IFNULL(SPOPL_T.id_order, SPOPL.id_order), 0) AS id_order + , IFNULL( + IFNULL( + IFNULL( + SPOPL_T.id_permutation + , CASE WHEN NOT ISNULL(SPOPL_T.id_product) AND NOT ISNULL(SPOPL_T.csv_list_variations) THEN + partsltd_prod.fn_shop_get_id_product_permutation_from_variation_csv_list(SPOPL_T.id_product, SPOPL_T.csv_list_variations) + ELSE NULL END + ) + , SPOPL.id_permutation + ) + , 0 + ) AS id_permutation + -- , IFNULL(IFNULL(SPOPL_T.id_currency_cost, SPOPL.id_currency_cost), 0) AS id_currency_cost + , IFNULL(IFNULL(SPOPL_T.id_unit_quantity, SPOPL.id_unit_quantity), 0) AS id_unit_quantity + , IFNULL(IFNULL(SPOPL_T.quantity_ordered, SPOPL.quantity_ordered), 0) AS quantity_ordered + , IFNULL(SPOPL_T.quantity_received, SPOPL.quantity_received) AS quantity_received + , IFNULL(SPOPL_T.latency_delivery_days, SPOPL.latency_delivery_days) AS latency_delivery_days + , RANK() OVER (PARTITION BY IFNULL(IFNULL(SPOPL_T.id_order, SPOPL.id_order), 0) ORDER BY IFNULL(IFNULL(SPOPL_T.display_order, SPOPL.display_order), 0)) AS display_order + , IFNULL(IFNULL(SPOPL_T.cost_total_local_VAT_excl, SPOPL.cost_total_local_VAT_excl), 0) AS cost_total_local_VAT_excl + , IFNULL(IFNULL(SPOPL_T.cost_total_local_VAT_incl, SPOPL.cost_total_local_VAT_incl), 0) AS cost_total_local_VAT_incl + , IFNULL(SPOPL_T.cost_total_local_VAT_excl / SPOPL_T.quantity_ordered, SPOPL.cost_unit_local_VAT_excl) AS cost_unit_local_VAT_excl + , IFNULL(SPOPL_T.cost_total_local_VAT_incl / SPOPL_T.quantity_ordered, SPOPL.cost_unit_local_VAT_incl) AS cost_unit_local_VAT_incl + , IFNULL(IFNULL(SPOPL_T.active, SPOPL.active), 1) AS active + , NOT ISNULL(t_SPO.id_order) AS has_order + , IFNULL(SPOPL_T.id_link, 0) < 1 AS is_new + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link_Temp SPOPL_T + LEFT JOIN partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link SPOPL ON SPOPL_T.id_link = SPOPL.id_link + LEFT JOIN tmp_Supplier_Purchase_Order t_SPO ON SPOPL_T.id_order = t_SPO.id_order + WHERE SPOPL_T.GUID = a_guid + ; + + UPDATE tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + INNER JOIN partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link_Temp SPOPL_T ON t_SPOPL.id_order = SPOPL_T.id_order + LEFT JOIN partsltd_prod.Shop_Product P ON SPOPL_T.id_product = P.id_product + LEFT JOIN partsltd_prod.Shop_Product_Category PC ON P.id_category = PC.id_category + SET + name_error = CONCAT( + CASE WHEN ISNULL(t_SPOPL.id_permutation) THEN + CASE WHEN ISNULL(SPOPL_T.id_product) THEN + '(No Product Permutation)' + ELSE + CONCAT( + PC.name + , ' - ' + , P.name + ) + END + ELSE + fn_shop_get_product_permutation_name(t_SPOPL.id_permutation) + END + , ' - x' + , IFNULL(t_SPOPL.quantity_ordered, '(No Quantity)') + ) + ; + + INSERT INTO tmp_Supplier_Purchase_Order ( + id_order + , id_order_temp + , id_supplier_ordered + , id_currency_cost + , active + , is_new + ) + SELECT + SPO.id_order + , SPO.id_order + , IFNULL(SPO.id_supplier_ordered, 0) AS id_supplier_ordered + , IFNULL(SPO.id_currency_cost, 0) AS id_currency_cost + , SPO.active AS active + , 0 AS is_new + FROM partsltd_prod.Shop_Supplier_Purchase_Order SPO + INNER JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + ON SPO.id_order = t_SPOPL.id_order + AND t_SPOPL.has_order = 0 + ; + + UPDATE tmp_Supplier_Purchase_Order t_SPO + INNER JOIN ( + SELECT + t_SPOPL.id_order + , SUM(t_SPOPL.cost_total_local_VAT_excl) AS cost_total_local_VAT_excl + , SUM(t_SPOPL.cost_total_local_VAT_incl) AS cost_total_local_VAT_incl + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + GROUP BY t_SPOPL.id_order + ) SUM_t_SPOPL ON t_SPO.id_order = SUM_t_SPOPL.id_order + SET + t_SPO.cost_total_local_VAT_excl = SUM_t_SPOPL.cost_total_local_VAT_excl + , t_SPO.cost_total_local_VAT_incl = SUM_t_SPOPL.cost_total_local_VAT_incl + ; + + -- Validation + -- Supplier Purchase Order + # id_order + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order t_SPO + LEFT JOIN partsltd_prod.Shop_Supplier_Purchase_Order SPO ON t_SPO.id_order = SPO.id_order + WHERE 1=1 + AND t_SPO.id_order > 0 + AND ISNULL(SPO.id_order) + LIMIT 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT( + 'A valid ID is required for the following Supplier Purchase Order(s): ' + , GROUP_CONCAT(CONCAT(IFNULL(t_SPO.id_stock, '(No Supplier Purchase Order)')) SEPARATOR ', ') + ) AS msg + FROM tmp_Stock_Item t_SPO + LEFT JOIN partsltd_prod.Shop_Supplier_Purchase_Order SPO ON t_SPO.id_order = SPO.id_order + WHERE 1=1 + AND t_SPO.id_stock > 0 + AND ISNULL(SPO.id_stock) + ; + END IF; + # id_supplier_ordered + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order t_SPO + LEFT JOIN partsltd_prod.Shop_Supplier S ON t_SPO.id_supplier_ordered = S.id_supplier + WHERE 1=1 + AND ( + ISNULL(S.id_supplier) + OR S.active = 0 + ) + LIMIT 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT( + 'A valid supplier is required for the following Supplier Purchase Order(s): ' + , GROUP_CONCAT(CONCAT(IFNULL(t_SPO.id_stock, '(No Supplier Purchase Order)'), ' - ', t_SPO.id_supplier_ordered) SEPARATOR ', ') + ) AS msg + FROM tmp_Stock_Item t_SPO + LEFT JOIN partsltd_prod.Shop_Supplier S ON t_SPO.id_supplier_ordered = S.id_supplier + WHERE 1=1 + AND ( + ISNULL(S.id_supplier) + OR S.active = 0 + ) + ; + END IF; + # id_currency_cost + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order t_SPO + LEFT JOIN partsltd_prod.Shop_Currency C ON t_SPO.id_currency_cost = C.id_currency + WHERE 1=1 + AND ( + ISNULL(C.id_currency) + OR C.active = 0 + ) + LIMIT 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT( + 'A valid currency is required for the following Supplier Purchase Order(s): ' + , GROUP_CONCAT(CONCAT(IFNULL(t_SPO.id_stock, '(No Supplier Purchase Order)'), ' - ', t_SPO.id_currency_cost) SEPARATOR ', ') + ) AS msg + FROM tmp_Stock_Item t_SPO + LEFT JOIN partsltd_prod.Shop_Currency C ON t_SPO.id_currency_cost = C.id_currency + WHERE 1=1 + AND ( + ISNULL(C.id_currency) + OR C.active = 0 + ) + ; + END IF; + # id_unit_quantity + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + LEFT JOIN partsltd_prod.Shop_Unit_Measurement UM ON t_SPOPL.id_unit_quantity = UM.id_unit_measurement + WHERE 1=1 + AND ( + ISNULL(UM.id_unit_measurement) + OR UM.active = 0 + ) + LIMIT 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT( + 'A valid unit measurement of quantity is required for the following Supplier Purchase Order(s): ' + , GROUP_CONCAT(CONCAT(IFNULL(t_SPO.id_stock, '(No Supplier Purchase Order)'), ' - ', t_SPO.id_currency_cost) SEPARATOR ', ') + ) AS msg + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + LEFT JOIN partsltd_prod.Shop_Unit_Measurement UM ON t_SPOPL.id_unit_quantity = UM.id_unit_measurement + WHERE 1=1 + AND ( + ISNULL(UM.id_unit_measurement) + OR UM.active = 0 + ) + ; + END IF; + # Invalid quantity ordered + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + WHERE + ISNULL(t_SPOPL.quantity_ordered) + OR t_SPOPL.quantity_ordered <= 0 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type, code, msg + ) + SELECT + v_id_error_type_bad_data, + v_code_error_type_bad_data, + CONCAT( + 'A valid quantity ordered is required for the following Supplier Purchase Order Item(s): ' + , GROUP_CONCAT(t_SPOPL.name_error SEPARATOR ', ') + ) + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + WHERE + ISNULL(t_SPOPL.quantity_ordered) + OR t_SPOPL.quantity_ordered <= 0 + ; + END IF; + # Invalid quantity received + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + WHERE t_SPOPL.quantity_received < 0 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type, code, msg + ) + SELECT + v_id_error_type_bad_data, + v_code_error_type_bad_data, + CONCAT( + 'A valid quantity received is required for the following Supplier Purchase Order Item(s): ' + , GROUP_CONCAT(t_SPOPL.name_error, ' - ', t_SPOPL.quantity_received SEPARATOR ', ') + ) + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + WHERE t_SPOPL.quantity_received < 0 + ; + END IF; + # Invalid delivery latency + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + WHERE t_SPOPL.latency_delivery_days < 0 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type, code, msg + ) + SELECT + v_id_error_type_bad_data, + v_code_error_type_bad_data, + CONCAT( + 'A valid delivery latency is required for the following Supplier Purchase Order Item(s): ' + , GROUP_CONCAT(t_SPOPL.name_error, ' - ', t_SPOPL.latency_delivery_days SEPARATOR ', ') + ) + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + WHERE t_SPOPL.latency_delivery_days < 0 + ; + END IF; + + -- Duplicates + IF EXISTS ( + SELECT + id_permutation + , name_error + , COUNT(*) + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + GROUP BY id_permutation, name_error + HAVING COUNT(*) > 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type, code, msg + ) + SELECT + v_id_error_type_bad_data, + v_code_error_type_bad_data, + CONCAT('Duplicate records: ', GROUP_CONCAT(t_SPOPLC.name_error SEPARATOR ', ')) + FROM ( + SELECT + id_permutation + , name_error + , COUNT(*) + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + GROUP BY id_permutation, name_error + HAVING COUNT(*) > 1 + ) t_SPOPLC + ; + END IF; + -- Empty Supplier Purchase Order + IF EXISTS ( SELECT * FROM tmp_Supplier_Purchase_Order t_SPO LEFT JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL ON t_SPO.id_order = t_SPOPL.id_order WHERE ISNULL(t_SPOPL.id_order) ) THEN + INSERT INTO tmp_Msg_Error ( + id_type, code, msg + ) + SELECT + v_id_error_type_bad_data, + v_code_error_type_bad_data, + CONCAT( + 'There are no items in the following Supplier Purchase Order(s): ' + , GROUP_CONCAT(t_SPO.name_error SEPARATOR ', ') + ) AS msg + FROM tmp_Supplier_Purchase_Order t_SPO + LEFT JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL ON t_SPO.id_order = t_SPOPL.id_order + WHERE ISNULL(t_SPOPL.id_order) + ; + END IF; + + -- Supplier Purchase Order Items without Order + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + LEFT JOIN tmp_Supplier_Purchase_Order t_SPO ON t_SPOPL.id_order = t_SPO.id_order + WHERE ISNULL(t_SPO.id_order) + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type, code, msg + ) + SELECT + v_id_error_type_bad_data, + v_code_error_type_bad_data, + CONCAT( + 'There is no order for the following Supplier Purchase Order Item(s): ' + , GROUP_CONCAT(t_SPOPL.name_error SEPARATOR ', ') + ) AS msg + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + LEFT JOIN tmp_Supplier_Purchase_Order t_SPO ON t_SPOPL.id_order = t_SPO.id_order + WHERE ISNULL(t_SPO.id_order) + ; + END IF; + + -- Permissions + SET v_ids_product_permission := ( + SELECT + GROUP_CONCAT(DISTINCT PP.id_product SEPARATOR ',') + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + INNER JOIN partsltd_prod.Shop_Product_Permutation PP ON t_SPOPL.id_permutation = PP.id_permutation + ); + IF a_debug = 1 THEN + SELECT + a_guid + , a_id_user + , FALSE -- get inactive users + , v_id_permission_supplier_purchase_order + , v_id_access_level_edit + , v_ids_product_permission -- ids_product + , 0 -- a_debug + ; + SELECT * from partsltd_prod.Shop_Calc_User_Temp; + END IF; + + CALL p_shop_calc_user( + a_guid + , a_id_user + , FALSE -- get inactive users + , v_id_permission_supplier_purchase_order + , v_id_access_level_edit + , v_ids_product_permission -- ids_product + , 0 -- a_debug + ); + + IF a_debug = 1 THEN + SELECT * from partsltd_prod.Shop_Calc_User_Temp WHERE GUID = a_guid; + END IF; + + IF NOT EXISTS (SELECT can_view FROM partsltd_prod.Shop_Calc_User_Temp UE_T WHERE UE_T.GUID = a_guid) THEN + DELETE FROM tmp_Msg_Error; + + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + VALUES ( + v_id_type_error_no_permission + , v_code_type_error_no_permission + , CONCAT('You do not have view permissions for ', (SELECT name FROM partsltd_prod.Shop_Permission WHERE id_permission = v_id_permission_supplier LIMIT 1)) + ) + ; + END IF; + + CALL partsltd_prod.p_shop_clear_calc_user( + a_guid + , 0 -- a_debug + ); + + IF EXISTS ( + SELECT * + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + INNER JOIN partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link SPOPL ON t_SPOPL.id_link = SPOPL.id_link + INNER JOIN partsltd_prod.Shop_Stock_Item SI ON SPOPL.id_permutation = SI.id_permutation + WHERE + t_SPOPL.is_new = 0 + AND t_SPOPL.quantity_received <> SPOPL.quantity_received + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_warning + , v_code_type_error_warning + , CONCAT( + 'The quantity received has changed on the following orders. Please update the stock items appropriately.' + , GROUP_CONCAT( + CONCAT( + t_SPOPL.name_error + , ' - from ' + , SPOPL.quantity_received + , ' to ' + , t_SPOPL.quantity_received + ) SEPARATOR ', ' + ) + ) AS msg + ; + END IF; + + IF EXISTS ( SELECT * FROM tmp_Msg_Error LIMIT 1 ) THEN + DELETE FROM tmp_Supplier_Purchase_Order; + DELETE FROM tmp_Supplier_Purchase_Order_Product_Link; + END IF; + + -- Transaction + IF NOT EXISTS (SELECT * FROM tmp_Msg_Error) THEN + START TRANSACTION; + INSERT INTO Shop_Sales_And_Purchasing_Change_Set ( + comment + , updated_last_by + , updated_last_on + ) + VALUES ( + a_comment + , a_id_user + , v_time_start + ); + + SET v_id_change_set := LAST_INSERT_ID(); + + INSERT INTO partsltd_prod.Shop_Supplier_Purchase_Order ( + id_order_temp + , id_supplier_ordered + , id_currency_cost + , cost_total_local_VAT_excl + , cost_total_local_VAT_incl + , active + , created_by + , created_on + , id_change_set + ) + SELECT + t_SPO.id_order_temp + , t_SPO.id_supplier_ordered + , t_SPO.id_currency_cost + , t_SPO.cost_total_local_VAT_excl + , t_SPO.cost_total_local_VAT_incl + , t_SPO.active + , a_id_user + , v_time_start + , v_id_change_set + FROM tmp_Supplier_Purchase_Order t_SPO + INNER JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL ON t_SPO.id_order = t_SPOPL.id_order + WHERE t_SPOPL.is_new = 1 + GROUP BY t_SPO.id_order + ; + + UPDATE partsltd_prod.Shop_Supplier_Purchase_Order SPO + INNER JOIN tmp_Supplier_Purchase_Order t_SPO + ON SPO.id_order = t_SPO.id_order + AND t_SPO.is_new = 0 + INNER JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL ON t_SPO.id_order = t_SPOPL.id_order + SET + SPO.id_supplier_ordered = t_SPO.id_supplier_ordered + , SPO.id_currency_cost = t_SPO.id_currency_cost + , SPO.cost_total_local_VAT_excl = t_SPO.cost_total_local_VAT_excl + , SPO.cost_total_local_VAT_incl = t_SPO.cost_total_local_VAT_incl + , SPO.active = t_SPO.active + , SPO.id_change_set = v_id_change_set + ; + + + UPDATE tmp_Supplier_Purchase_Order t_SPO + INNER JOIN partsltd_prod.Shop_Supplier_Purchase_Order SPO ON t_SPO.id_order_temp = SPO.id_order_temp + SET + t_SPO.id_order = SPO.id_order + WHERE t_SPO.is_new = 1 + ; + + UPDATE tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + INNER JOIN tmp_Supplier_Purchase_Order t_SPO ON t_SPOPL.id_order = t_SPO.id_order_temp + SET + t_SPOPL.id_order = t_SPO.id_order + WHERE t_SPO.is_new = 1 + ; + + + INSERT INTO Shop_Supplier_Purchase_Order_Product_Link ( + id_order + , id_permutation + , id_unit_quantity + , quantity_ordered + , quantity_received + , latency_delivery_days + , display_order + , active + , cost_total_local_VAT_excl + , cost_total_local_VAT_incl + , cost_unit_local_VAT_excl + , cost_unit_local_VAT_incl + , created_by + , created_on + , id_change_set + ) + SELECT + t_SPOPL.id_order + , t_SPOPL.id_permutation + , t_SPOPL.id_unit_quantity + , t_SPOPL.quantity_ordered + , t_SPOPL.quantity_received + , t_SPOPL.latency_delivery_days + , t_SPOPL.display_order + , t_SPOPL.active + , t_SPOPL.cost_total_local_VAT_excl + , t_SPOPL.cost_total_local_VAT_incl + , t_SPOPL.cost_unit_local_VAT_excl + , t_SPOPL.cost_unit_local_VAT_incl + , a_id_user + , v_time_start + , v_id_change_set + FROM tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + WHERE t_SPOPL.is_new = 1 + ; + + UPDATE partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link SPOPL + INNER JOIN tmp_Supplier_Purchase_Order_Product_Link t_SPOPL + ON SPOPL.id_link = t_SPOPL.id_link + AND t_SPOPL.is_new = 0 + SET + SPOPL.id_order = t_SPOPL.id_order + , SPOPL.id_permutation = t_SPOPL.id_permutation + , SPOPL.id_unit_quantity = t_SPOPL.id_unit_quantity + , SPOPL.quantity_ordered = t_SPOPL.quantity_ordered + , SPOPL.quantity_received = t_SPOPL.quantity_received + , SPOPL.latency_delivery_days = t_SPOPL.latency_delivery_days + , SPOPL.display_order = t_SPOPL.display_order + , SPOPL.active = t_SPOPL.active + , SPOPL.cost_total_local_VAT_excl = t_SPOPL.cost_total_local_VAT_excl + , SPOPL.cost_total_local_VAT_incl = t_SPOPL.cost_total_local_VAT_incl + , SPOPL.cost_unit_local_VAT_excl = t_SPOPL.cost_unit_local_VAT_excl + , SPOPL.cost_unit_local_VAT_incl = t_SPOPL.cost_unit_local_VAT_incl + , SPOPL.id_change_set = v_id_change_set + ; + + DELETE SPO_T + FROM Shop_Supplier_Purchase_Order_Temp SPO_T + WHERE SPO_T.GUID = a_guid + ; + DELETE SPOPL_T + FROM Shop_Supplier_Purchase_Order_Product_Link_Temp SPOPL_T + WHERE SPOPL_T.GUID = a_guid + ; + + COMMIT; + END IF; + + # Errors + SELECT * + FROM tmp_Msg_Error t_ME + INNER JOIN partsltd_prod.Shop_Msg_Error_Type MET ON t_ME.id_type = MET.id_type + ; + + IF a_debug = 1 THEN + SELECT * from tmp_Supplier_Purchase_Order; + SELECT * from tmp_Supplier_Purchase_Order_Product_Link; + END IF; + + DROP TEMPORARY TABLE tmp_Supplier_Purchase_Order; + DROP TEMPORARY TABLE tmp_Supplier_Purchase_Order_Product_Link; + DROP TEMPORARY TABLE tmp_Msg_Error; + + IF a_debug = 1 THEN + CALL partsltd_prod.p_debug_timing_reporting ( v_time_start ); + END IF; +END // +DELIMITER ;; + + +/* + +DELETE FROM Shop_Supplier_Purchase_Order_Product_Link_Audit; +DELETE FROM Shop_Supplier_Purchase_Order_Product_Link; +DELETE FROM Shop_Supplier_Purchase_Order_Product_Link_Temp; +DELETE FROM Shop_Supplier_Purchase_Order_Audit; +DELETE FROM Shop_Supplier_Purchase_Order; + +INSERT INTO Shop_Supplier_Purchase_Order_Product_Link_Temp ( + guid, + id_link, + id_order, + id_permutation, + cost_total_local, + id_currency_cost, + quantity_ordered, + id_unit_quantity, + quantity_received, + latency_delivery_days, + display_order, + active +) +VALUES + ( + 'NIPS', # guid + -1, # id_link, + -1, # id_order, + 1, # id_permutation, + 100, # cost_total_local, + 1, # id_currency_cost, + 1, # quantity_ordered, + 1, # id_unit_quantity, + 1, # quantity_received, + 14, # latency_delivery_days , + 1, # display_order + 1 # active + ) +; + +SELECT * FROM Shop_Supplier_Purchase_Order_Product_Link_Temp; + +CALL p_shop_save_supplier_purchase_order ( + 'NIPS', # a_guid + 'auth0|6582b95c895d09a70ba10fef', # a_id_user + -1, # a_id_order + 1, # a_id_supplier_ordered + 1 # a_id_currency_cost +); + +SELECT * FROM Shop_Supplier_Purchase_Order_Product_Link_Temp; + +DELETE FROM Shop_Supplier_Purchase_Order_Product_Link_Audit; +DELETE FROM Shop_Supplier_Purchase_Order_Product_Link; +DELETE FROM Shop_Supplier_Purchase_Order_Product_Link_Temp; +DELETE FROM Shop_Supplier_Purchase_Order_Audit; +DELETE FROM Shop_Supplier_Purchase_Order; + + +*/ + diff --git a/static/MySQL/7403_p_shop_save_supplier_purchase_order_test.sql b/static/MySQL/7403_p_shop_save_supplier_purchase_order_test.sql new file mode 100644 index 00000000..9206e14a --- /dev/null +++ b/static/MySQL/7403_p_shop_save_supplier_purchase_order_test.sql @@ -0,0 +1,127 @@ + + +-- Clear previous proc +DROP PROCEDURE IF EXISTS partsltd_prod.p_shop_save_supplier_purchase_order_test; + + +DELIMITER // +CREATE PROCEDURE p_shop_save_supplier_purchase_order_test () +BEGIN + + DECLARE v_guid BINARY(36); + DECLARE v_time_start TIMESTAMP(6); + + SET v_time_start := CURRENT_TIMESTAMP(6); + SET v_guid := 'nips'; + + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link_Temp + ; + + START TRANSACTION; + + DELETE FROM partsltd_prod.Shop_Supplier_Purchase_Order_Temp; + DELETE FROM partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link_Temp; + + INSERT INTO partsltd_prod.Shop_Supplier_Purchase_Order_Temp ( + id_order + , id_supplier_ordered + , id_currency_cost + , active + , GUID + ) + VALUES ( + -1 + , 1 + , 1 + , 1 + , v_guid + ) + ; + + INSERT INTO partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link_Temp ( + id_link + , id_order + , id_permutation + , id_unit_quantity + , quantity_ordered + , quantity_received + , latency_delivery_days + , display_order + , active + , cost_total_local_VAT_excl + , cost_total_local_VAT_incl + , GUID + ) + VALUES ( + -1 + , -1 + , 3 + , 3 + , 3 + , 1 + , 7 + , 1 + , 1 + , 5 + , 6 + , v_guid + ) + ; + + COMMIT; + + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Temp + WHERE GUID = v_guid + ; + + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link_Temp + WHERE GUID = v_guid + ; + + CALL partsltd_prod.p_shop_save_supplier_purchase_order ( + 'Test save Supplier Purchase Order' -- comment + , v_guid -- guid + , 1 -- id_user + , 1 -- debug + ); + + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link_Temp + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order + ; + SELECT * + FROM partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link + ; + + CALL partsltd_prod.p_debug_timing_reporting ( v_time_start ); +END // +DELIMITER ;; + +CALL partsltd_prod.p_shop_save_supplier_purchase_order_test (); + +DELETE FROM partsltd_prod.Shop_Supplier_Purchase_Order_Temp; +DELETE FROM partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link_Temp; + +DROP TABLE IF EXISTS tmp_Msg_Error; +/* + +Cannot add or update a child row: a foreign key constraint fails (`partsltd_prod`.`shop_supplier_address`, CONSTRAINT `FK_Shop_Supplier_Address_id_supplier` FOREIGN KEY (`id_supplier`) REFERENCES `shop_supplier` (`id_supplier`) ON UPDATE RESTRICT) + +*/ \ No newline at end of file diff --git a/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql b/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql index 3c3bf201..5d808804 100644 --- a/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql +++ b/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql @@ -379,13 +379,13 @@ BEGIN VALUES ( v_id_type_error_no_permission , v_code_type_error_no_permission - , CONCAT('You do not have view permissions for ', (SELECT name FROM partsltd_prod.Shop_Permission WHERE id_permission = v_id_permission_supplier LIMIT 1)) + , CONCAT('You do not have view permissions for ', (SELECT name FROM partsltd_prod.Shop_Permission WHERE id_permission = v_ids_permission_supplier_purchase_order LIMIT 1)) ) ; END IF; IF EXISTS ( SELECT * FROM tmp_Msg_Error LIMIT 1 ) THEN - DELETE FROM tmp_Supplier_Purchase_Order_Product_Link; + DELETE FROM tmp_Permutation; DELETE FROM tmp_Supplier_Purchase_Order; END IF; @@ -414,7 +414,10 @@ BEGIN SELECT t_SPO.id_order , SPO.id_supplier_ordered + , S.name_company , SPO.id_currency_cost + , C.symbol + , C.code , SPO.cost_total_local_VAT_excl , SPO.cost_total_local_VAT_incl , SPO.active @@ -426,12 +429,16 @@ BEGIN ) AS name FROM tmp_Supplier_Purchase_Order t_SPO INNER JOIN partsltd_prod.Shop_Supplier_Purchase_Order SPO ON SPO.id_order = t_SPO.id_order + LEFT JOIN partsltd_prod.Shop_Supplier S ON SPO.id_supplier_ordered = S.id_supplier + LEFT JOIN partsltd_prod.Shop_Currency C ON SPO.id_currency_cost = C.id_currency ; # Supplier Purchase Order Product Link SELECT SPOPL.id_link , SPOPL.id_order + , P.id_category + , P.id_product , SPOPL.id_permutation , fn_shop_get_product_permutation_name(SPOPL.id_permutation) AS name_permutation -- , SPOPL.id_currency_cost @@ -447,6 +454,8 @@ BEGIN , SPOPL.active FROM tmp_Supplier_Purchase_Order t_SPO INNER JOIN partsltd_prod.Shop_Supplier_Purchase_Order_Product_Link SPOPL ON t_SPO.id_order = SPOPL.id_order + LEFT JOIN partsltd_prod.Shop_Product_Permutation PP ON SPOPL.id_permutation = PP.id_permutation + LEFT JOIN partsltd_prod.Shop_Product P ON PP.id_product = P.id_product ; # Errors diff --git a/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql b/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql index 0028d757..b402ab8d 100644 --- a/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql +++ b/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql @@ -48,9 +48,11 @@ BEGIN , msg ) SELECT - NULL + MET.id_type , @errno , @text + FROM partsltd_prod.Shop_Msg_Error_Type MET + WHERE code = 'MYSQL_ERROR' ; SELECT * FROM tmp_Msg_Error; @@ -68,13 +70,16 @@ BEGIN CALL p_validate_guid ( a_guid ); SET a_comment := TRIM(IFNULL(a_comment, '')); - DROP TEMPORARY TABLE IF EXISTS tmp_Manufacturing; + DROP TEMPORARY TABLE IF EXISTS tmp_Manufacturing_Purchase_Order; + DROP TEMPORARY TABLE IF EXISTS tmp_Manufacturing_Purchase_Order_Product_Link; DROP TEMPORARY TABLE IF EXISTS tmp_Msg_Error; -- Temporary tables CREATE TEMPORARY TABLE tmp_Manufacturing_Purchase_Order ( id_order INT NOT NULL PRIMARY KEY , id_currency_cost INT NOT NULL + , is_new BIT NOT NULL + , name_error VARCHAR(1000) NOT NULL ); CREATE TEMPORARY TABLE tmp_Manufacturing_Purchase_Order_Product_Link ( @@ -82,10 +87,11 @@ BEGIN , id_order INT NOT NULL , id_permutation INT NOT NULL , id_currency_cost INT NOT NULL - , quantity_ordered FLOAT NOT NULL + , quantity_used FLOAT NOT NULL , id_unit_quantity INT NOT NULL - , quantity_received FLOAT NULL - , latency_delivery_days INT NOT NULL + , quantity_produced FLOAT NULL + , id_unit_latency_manufacture INT NULL + , latency_manufacture INT NULL , display_order INT NOT NULL , active BIT NOT NULL , name_error VARCHAR(200) NOT NULL @@ -94,6 +100,8 @@ BEGIN , cost_unit_local_VAT_excl FLOAT NOT NULL , cost_unit_local_VAT_incl FLOAT NOT NULL , has_order BIT NULL + , is_new BIT NOT NULL + , name_error VARCHAR(1000) NOT NULL ); CREATE TEMPORARY TABLE IF NOT EXISTS tmp_Msg_Error ( @@ -120,10 +128,11 @@ BEGIN , id_order , id_permutation , id_currency_cost - , quantity_ordered , id_unit_quantity - , quantity_received - , latency_delivery_days + , quantity_used + , quantity_produced + , id_unit_latency_manufacture + , latency_manufacture , display_order , active , name_error @@ -139,22 +148,23 @@ BEGIN , IFNULL(IFNULL(SPOPL_T.id_order, MPOPL.id_order), 0) AS id_order , IFNULL(IFNULL(SPOPL_T.id_permutation, MPOPL.id_permutation), 0) AS id_permutation , IFNULL(IFNULL(SPOPL_T.id_currency_cost, MPOPL.id_currency_cost), 0) AS id_currency_cost - , IFNULL(IFNULL(SPOPL_T.quantity_ordered, MPOPL.quantity_ordered), 0) AS quantity_ordered , IFNULL(IFNULL(SPOPL_T.id_unit_quantity, MPOPL.id_unit_quantity), 0) AS id_unit_quantity - , IFNULL(SPOPL_T.quantity_received, MPOPL.quantity_received) AS quantity_received - , IFNULL(SPOPL_T.latency_delivery_days, MPOPL.latency_delivery_days) AS latency_delivery_days - , RANK() OVER (PARTITION BY IFNULL(IFNULL(SPOPL_T.id_order, MPOPL.id_order), 0) ORDER BY IFNULL(IFNULL(SPOPL_T.display_order, MPOPL.display_order), 0)) AS display_order + , SPOPL_T.quantity_used AS quantity_used + , SPOPL_T.quantity_produced AS quantity_produced + , SPOPL_T.id_unit_latency_manufacture AS id_unit_latency_manufacture + , SPOPL_T.latency_manufacture AS latency_manufacture + , IFNULL(SPOPL_T.display_order, RANK() OVER (PARTITION BY IFNULL(IFNULL(SPOPL_T.id_order, MPOPL.id_order), 0) ORDER BY IFNULL(IFNULL(SPOPL_T.display_order, MPOPL.display_order), 0))) AS display_order , IFNULL(IFNULL(SPOPL_T.active, MPOPL.active), 1) AS active , CONCAT( fn_shop_get_product_permutation_name(SPOPL_T.id_permutation) , ' - x' - , IFNULL(SPOPL_T.quantity_ordered, '(No Quantity)') + , IFNULL(SPOPL_T.quantity_used, '(No Quantity)') ) AS name_error , IFNULL(SPOPL_T.id_link, 0) < 1 AS is_new - , IFNULL(IFNULL(SPOPL_T.cost_total_local_VAT_excl, MPOPL.cost_total_local_VAT_excl), 0) AS cost_total_local_VAT_excl - , IFNULL(IFNULL(SPOPL_T.cost_total_local_VAT_incl, MPOPL.cost_total_local_VAT_incl), 0) AS cost_total_local_VAT_incl - , IFNULL(SPOPL_T.cost_total_local_VAT_excl / SPOPL_T.quantity_ordered, MPOPL.cost_unit_local_VAT_excl) AS cost_unit_local_VAT_excl - , IFNULL(SPOPL_T.cost_total_local_VAT_incl / SPOPL_T.quantity_ordered, MPOPL.cost_unit_local_VAT_incl) AS cost_unit_local_VAT_incl + , SPOPL_T.cost_total_local_VAT_excl AS cost_total_local_VAT_excl + , SPOPL_T.cost_total_local_VAT_incl AS cost_total_local_VAT_incl + , SPOPL_T.cost_total_local_VAT_excl / SPOPL_T.quantity_used AS cost_unit_local_VAT_excl + , SPOPL_T.cost_total_local_VAT_incl / SPOPL_T.quantity_used AS cost_unit_local_VAT_incl , NOT ISNULL(t_MPO.id_order) AS has_order FROM partsltd_prod.Shop_Manufacturing_Purchase_Order_Product_Link_Temp SPOPL_T LEFT JOIN partsltd_prod.Shop_Manufacturing_Purchase_Order_Product_Link MPOPL ON SPOPL_T.id_link = MPOPL.id_link @@ -277,8 +287,8 @@ BEGIN SELECT * FROM tmp_Manufacturing_Purchase_Order_Product_Link WHERE - ISNULL(t_MPOPL.quantity_ordered) - OR t_MPOPL.quantity_ordered <= 0 + ISNULL(t_MPOPL.quantity_used) + OR t_MPOPL.quantity_used <= 0 ) THEN INSERT INTO tmp_Msg_Error ( id_type, code, msg @@ -292,15 +302,15 @@ BEGIN ) FROM tmp_Manufacturing_Purchase_Order_Product_Link t_MPOPL WHERE - ISNULL(t_MPOPL.quantity_ordered) - OR t_MPOPL.quantity_ordered <= 0 + ISNULL(t_MPOPL.quantity_used) + OR t_MPOPL.quantity_used <= 0 ; END IF; # Invalid quantity received IF EXISTS ( SELECT * FROM tmp_Manufacturing_Purchase_Order_Product_Link - WHERE t_MPOPL.quantity_received < 0 + WHERE t_MPOPL.quantity_produced < 0 ) THEN INSERT INTO tmp_Msg_Error ( id_type, code, msg @@ -310,17 +320,52 @@ BEGIN v_code_error_type_bad_data, CONCAT( 'A valid quantity received is required for the following Manufacturing Purchase Order Item(s): ' - , GROUP_CONCAT(t_MPOPL.name_error, ' - ', t_MPOPL.quantity_received SEPARATOR ', ') + , GROUP_CONCAT(t_MPOPL.name_error, ' - ', t_MPOPL.quantity_produced SEPARATOR ', ') ) FROM tmp_Manufacturing_Purchase_Order_Product_Link t_MPOPL - WHERE t_MPOPL.quantity_received < 0 + WHERE t_MPOPL.quantity_produced < 0 ; END IF; - # Invalid delivery latency + # id_unit_latency_manufacture + IF EXISTS ( + SELECT * + FROM tmp_Manufacturing_Purchase_Order t_MPO + LEFT JOIN partsltd_prod.Shop_Unit_Measurement UM ON t_MPO.id_unit_latency_manufacture = UM.id_unit_measurement + WHERE 1=1 + AND ( + NOT ISNULL(t_MPO.id_unit_latency_manufacture) + OR ISNULL(UM.id_unit_measurement) + OR UM.active = 0 + ) + LIMIT 1 + ) THEN + INSERT INTO tmp_Msg_Error ( + id_type + , code + , msg + ) + SELECT + v_id_type_error_bad_data + , v_code_type_error_bad_data + , CONCAT( + 'A valid unit measurement of manufacture latency is required for the following Manufacturing Purchase Order(s): ' + , GROUP_CONCAT(CONCAT(IFNULL(t_MPO.id_stock, '(No Manufacturing Purchase Order)'), ' - ', t_MPO.id_unit_latency_manufacture) SEPARATOR ', ') + ) AS msg + FROM tmp_Stock_Item t_SPO + LEFT JOIN partsltd_prod.Shop_Unit_Measurement UM ON t_MPO.id_unit_latency_manufacture = UM.id_unit_measurement + WHERE 1=1 + AND ( + NOT ISNULL(t_MPO.id_unit_latency_manufacture) + OR ISNULL(UM.id_unit_measurement) + OR UM.active = 0 + ) + ; + END IF; + # Invalid manufacture latency IF EXISTS ( SELECT * FROM tmp_Manufacturing_Purchase_Order_Product_Link - WHERE t_MPOPL.latency_delivery_days < 0 + WHERE t_MPOPL.latency_manufacture < 0 ) THEN INSERT INTO tmp_Msg_Error ( id_type, code, msg @@ -329,11 +374,11 @@ BEGIN v_id_error_type_bad_data, v_code_error_type_bad_data, CONCAT( - 'A valid delivery latency is required for the following Manufacturing Purchase Order Item(s): ' - , GROUP_CONCAT(t_MPOPL.name_error, ' - ', t_MPOPL.latency_delivery_days SEPARATOR ', ') + 'A valid manufacture latency is required for the following Manufacturing Purchase Order Item(s): ' + , GROUP_CONCAT(t_MPOPL.name_error, ' - ', t_MPOPL.latency_manufacture SEPARATOR ', ') ) FROM tmp_Manufacturing_Purchase_Order_Product_Link t_MPOPL - WHERE t_MPOPL.latency_delivery_days < 0 + WHERE t_MPOPL.latency_manufacture < 0 ; END IF; @@ -415,7 +460,7 @@ BEGIN ); IF a_debug = 1 THEN SELECT - v_guid + a_guid , a_id_user , FALSE -- get inactive users , v_ids_permission_manufacturing_purchase_order @@ -427,7 +472,7 @@ BEGIN END IF; CALL p_shop_calc_user( - v_guid + a_guid , a_id_user , FALSE -- get inactive users , v_ids_permission_manufacturing_purchase_order @@ -440,7 +485,7 @@ BEGIN SELECT * from partsltd_prod.Shop_Calc_User_Temp WHERE GUID = a_guid; END IF; - IF NOT EXISTS (SELECT can_view FROM partsltd_prod.Shop_Calc_User_Temp UE_T WHERE UE_T.GUID = v_guid) THEN + IF NOT EXISTS (SELECT can_view FROM partsltd_prod.Shop_Calc_User_Temp UE_T WHERE UE_T.GUID = a_guid) THEN DELETE FROM tmp_Msg_Error; INSERT INTO tmp_Msg_Error ( @@ -505,9 +550,10 @@ BEGIN , id_permutation , id_currency_cost , id_unit_quantity - , quantity_ordered - , quantity_received - , latency_delivery_days + , quantity_used + , quantity_produced + , id_unit_latency_manufacture + , latency_manufacture , display_order , active , cost_total_local_VAT_excl @@ -520,9 +566,10 @@ BEGIN , t_MPOPL.id_permutation , t_MPOPL.id_currency_cost , t_MPOPL.id_unit_quantity - , t_MPOPL.quantity_ordered - , t_MPOPL.quantity_received - , t_MPOPL.latency_delivery_days + , t_MPOPL.quantity_used + , t_MPOPL.quantity_produced + , t_MPOPL.id_unit_latency_manufacture + , t_MPOPL.latency_manufacture , t_MPOPL.display_order , t_MPOPL.active , t_MPOPL.cost_total_local_VAT_excl @@ -551,18 +598,19 @@ BEGIN ON MPOPL.id_link = t_MPOPL.id_link AND t_MPOPL.is_new = 0 SET - MPOPL.id_order = t_MPOPL.id_order, - MPOPL.id_permutation = t_MPOPL.id_permutation, - MPOPL.id_currency_cost = t_MPOPL.id_currency_cost, - MPOPL.id_unit_quantity = t_MPOPL.id_unit_quantity, - MPOPL.quantity_ordered = t_MPOPL.quantity_ordered, - MPOPL.quantity_received = t_MPOPL.quantity_received, - MPOPL.latency_delivery_days = t_MPOPL.latency_delivery_days, - MPOPL.display_order = t_MPOPL.display_order, - MPOPL.active = t_MPOPL.active, - MPOPL.cost_total_local_VAT_excl = t_MPOPL.cost_total_local_VAT_excl, - MPOPL.cost_total_local_VAT_incl = t_MPOPL.cost_total_local_VAT_incl, - MPOPL.id_change_set = v_id_change_set + MPOPL.id_order = t_MPOPL.id_order + , MPOPL.id_permutation = t_MPOPL.id_permutation + , MPOPL.id_currency_cost = t_MPOPL.id_currency_cost + , MPOPL.id_unit_quantity = t_MPOPL.id_unit_quantity + , MPOPL.quantity_used = t_MPOPL.quantity_used + , MPOPL.quantity_produced = t_MPOPL.quantity_produced + , MPOPL.id_unit_latency_manufacture = t_MPOPL.id_unit_latency_manufacture + , MPOPL.latency_manufacture = t_MPOPL.latency_manufacture + , MPOPL.display_order = t_MPOPL.display_order + , MPOPL.active = t_MPOPL.active + , MPOPL.cost_total_local_VAT_excl = t_MPOPL.cost_total_local_VAT_excl + , MPOPL.cost_total_local_VAT_incl = t_MPOPL.cost_total_local_VAT_incl + , MPOPL.id_change_set = v_id_change_set ; DELETE SPO_T @@ -584,7 +632,8 @@ BEGIN ; IF a_debug = 1 THEN - SELECT * from tmp_Manufacturing; + SELECT * from tmp_Manufacturing_Purchase_Order; + SELECT * from tmp_Manufacturing_Purchase_Order_Product_Link; END IF; DROP TEMPORARY TABLE tmp_Manufacturing_Purchase_Order; @@ -613,10 +662,10 @@ INSERT INTO Shop_Manufacturing_Purchase_Order_Product_Link_Temp ( id_permutation, cost_total_local, id_currency_cost, - quantity_ordered, + quantity_used, id_unit_quantity, - quantity_received, - latency_delivery_days, + quantity_produced, + latency_manufacture, display_order, active ) @@ -628,10 +677,10 @@ VALUES 1, # id_permutation, 100, # cost_total_local, 1, # id_currency_cost, - 1, # quantity_ordered, + 1, # quantity_used, 1, # id_unit_quantity, - 1, # quantity_received, - 14, # latency_delivery_days , + 1, # quantity_produced, + 14, # latency_manufacture , 1, # display_order 1 # active ) diff --git a/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql b/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql index 17a8b3fa..b4a49d4a 100644 --- a/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql +++ b/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql @@ -317,6 +317,8 @@ BEGIN SELECT t_MPO.id_order , MPO.id_currency + , C.code + , C.symbol , MPO.cost_total_local_VAT_excl , MPO.cost_total_local_VAT_incl , MPO.price_total_local_VAT_excl @@ -330,6 +332,7 @@ BEGIN ) AS name FROM tmp_Manufacturing_Purchase_Order t_MPO INNER JOIN partsltd_prod.Shop_Manufacturing_Purchase_Order MPO ON MPO.id_order = t_MPO.id_order + LEFT JOIN partsltd_prod.Shop_Currency C ON MPO.id_currency_cost = C.id_currency ; # Manufacturing Purchase Order Product Link @@ -341,7 +344,8 @@ BEGIN , MPOPL.id_unit_quantity , MPOPL.quantity_used , MPOPL.quantity_produced - , MPOPL.latency_manufacture_days + , MPOPL.id_unit_latency_manufacture + , MPOPL.latency_manufacture , MPOPL.display_order , MPOPL.cost_unit_local_VAT_excl , MPOPL.cost_unit_local_VAT_incl diff --git a/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql b/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql index b74dbcc4..c8373587 100644 --- a/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql +++ b/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql @@ -203,7 +203,7 @@ BEGIN price_GBP_min FLOAT NOT NULL, */ /* - latency_manufacture_days INT NOT NULL, + latency_manufacture INT NOT NULL, quantity_min FLOAT NOT NULL, quantity_max FLOAT NOT NULL, quantity_step FLOAT NOT NULL, @@ -398,7 +398,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, * - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -430,7 +430,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, * - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, diff --git a/static/MySQL/9000_populate.sql b/static/MySQL/9000_populate.sql index bf140f04..b44df681 100644 --- a/static/MySQL/9000_populate.sql +++ b/static/MySQL/9000_populate.sql @@ -258,7 +258,7 @@ INSERT INTO Shop_Product_Permutation ( id_currency_cost, profit_local_min, # id_currency_profit_min, - latency_manufacture_days, + latency_manufacture, id_unit_measurement_quantity, count_unit_measurement_per_quantity_step, quantity_min, @@ -690,7 +690,8 @@ VALUES # Supplier INSERT INTO Shop_Supplier ( - name_company + id_supplier_temp + , name_company , name_contact , department_contact -- , id_address @@ -702,7 +703,8 @@ INSERT INTO Shop_Supplier ( ) VALUES ( - 'Precision And Research Technology Systems Limited' + -1 + , 'Precision And Research Technology Systems Limited' , 'Teddy Middleton-Smith' , 'Executive Management' -- , 1 @@ -716,7 +718,8 @@ VALUES # Suppliers INSERT INTO Shop_Supplier ( - name_company + id_supplier_temp + , name_company , name_contact , department_contact -- , id_address @@ -728,7 +731,8 @@ INSERT INTO Shop_Supplier ( ) VALUES ( - 'Malt Kiln Farm Shop' + -2 + , 'Malt Kiln Farm Shop' , NULL , NULL -- , 1 diff --git a/static/MySQL/deprecated/dump.sql b/static/MySQL/deprecated/dump.sql index e8d243df..91f55473 100644 --- a/static/MySQL/deprecated/dump.sql +++ b/static/MySQL/deprecated/dump.sql @@ -2674,7 +2674,7 @@ CREATE TABLE `shop_product_permutation` ( `id_currency_cost_manufacturing` int NOT NULL, `profit_local_min` float NOT NULL, `id_currency_profit_min` int NOT NULL, - `latency_manufacture_days` int NOT NULL, + `latency_manufacture` int NOT NULL, `quantity_min` float NOT NULL, `quantity_max` float NOT NULL, `quantity_step` float NOT NULL, @@ -2794,9 +2794,9 @@ DELIMITER ;;; WHERE NOT (OLD.price_GBP_min <=> NEW.price_GBP_min) UNION */ - # Changed latency_manufacture_days - SELECT NEW.id_product, 'latency_manufacture_days', CONVERT(OLD.latency_manufacture_days, CHAR), CONVERT(NEW.latency_manufacture_days, CHAR), NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + # Changed latency_manufacture + SELECT NEW.id_product, 'latency_manufacture', CONVERT(OLD.latency_manufacture, CHAR), CONVERT(NEW.latency_manufacture, CHAR), NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION # Changed quantity_min SELECT NEW.id_product, 'quantity_min', CONVERT(OLD.quantity_min, CHAR), CONVERT(NEW.quantity_min, CHAR), NEW.id_change_set @@ -6110,7 +6110,7 @@ BEGIN price_GBP_full FLOAT NOT NULL, price_GBP_min FLOAT NOT NULL, */ - latency_manufacture_days INT NOT NULL, + latency_manufacture INT NOT NULL, quantity_min FLOAT NOT NULL, quantity_max FLOAT NOT NULL, quantity_step FLOAT NOT NULL, @@ -6224,7 +6224,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -6254,7 +6254,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -6705,7 +6705,7 @@ BEGIN t_P.description, P.has_variations, P.id_category, - t_P.latency_manufacture_days, + t_P.latency_manufacture, t_P.quantity_min, t_P.quantity_max, t_P.quantity_step, diff --git a/static/MySQL/deprecated/dump2.sql b/static/MySQL/deprecated/dump2.sql index dead8d8b..06ae32be 100644 --- a/static/MySQL/deprecated/dump2.sql +++ b/static/MySQL/deprecated/dump2.sql @@ -2674,7 +2674,7 @@ CREATE TABLE `shop_product_permutation` ( `id_currency_cost_manufacturing` int NOT NULL, `profit_local_min` float NOT NULL, `id_currency_profit_min` int NOT NULL, - `latency_manufacture_days` int NOT NULL, + `latency_manufacture` int NOT NULL, `quantity_min` float NOT NULL, `quantity_max` float NOT NULL, `quantity_step` float NOT NULL, @@ -2794,9 +2794,9 @@ DELIMITER ;;; WHERE NOT (OLD.price_GBP_min <=> NEW.price_GBP_min) UNION */ - # Changed latency_manufacture_days - SELECT NEW.id_product, 'latency_manufacture_days', CONVERT(OLD.latency_manufacture_days, CHAR), CONVERT(NEW.latency_manufacture_days, CHAR), NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + # Changed latency_manufacture + SELECT NEW.id_product, 'latency_manufacture', CONVERT(OLD.latency_manufacture, CHAR), CONVERT(NEW.latency_manufacture, CHAR), NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION # Changed quantity_min SELECT NEW.id_product, 'quantity_min', CONVERT(OLD.quantity_min, CHAR), CONVERT(NEW.quantity_min, CHAR), NEW.id_change_set @@ -6110,7 +6110,7 @@ BEGIN price_GBP_full FLOAT NOT NULL, price_GBP_min FLOAT NOT NULL, */ - latency_manufacture_days INT NOT NULL, + latency_manufacture INT NOT NULL, quantity_min FLOAT NOT NULL, quantity_max FLOAT NOT NULL, quantity_step FLOAT NOT NULL, @@ -6224,7 +6224,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -6254,7 +6254,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -6705,7 +6705,7 @@ BEGIN t_P.description, P.has_variations, P.id_category, - t_P.latency_manufacture_days, + t_P.latency_manufacture, t_P.quantity_min, t_P.quantity_max, t_P.quantity_step, diff --git a/static/MySQL/temp.txt b/static/MySQL/temp.txt index a78abf18..c6f60ddc 100644 --- a/static/MySQL/temp.txt +++ b/static/MySQL/temp.txt @@ -93,8 +93,8 @@ 1401_tbl_Shop_Supplier_Audit.sql 1402_tbl_Shop_Supplier_Temp.sql 1403_tbl_Shop_Supplier_Address.sql -1403_tbl_Shop_Supplier_Address_Temp.sql -1404_tbl_Shop_Supplier_Address.sql +1404_tbl_Shop_Supplier_Address_Audit.sql +1405_tbl_Shop_Supplier_Address_Temp.sql 1409_tbl_Shop_Supplier_Purchase_Order.sql 1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql 1411_tbl_Shop_Supplier_Purchase_Order_Temp.sql @@ -197,8 +197,9 @@ 7313_p_get_many_user.sql 7321_p_shop_save_user_basket.sql 7400_p_shop_save_supplier.sql +7400_p_shop_save_supplier_temp.sql 7401_p_shop_get_many_supplier.sql -7403_p_save_supplier_purchase_order.sql +7403_p_shop_save_supplier_purchase_order.sql 7404_p_shop_get_many_supplier_purchase_order.sql 7415_p_shop_save_manufacturing_purchase_order.sql 7416_p_shop_get_many_manufacturing_purchase_order.sql diff --git a/static/PostgreSQL/000_combine.sql b/static/PostgreSQL/000_combine.sql index 89e2573a..02960719 100644 --- a/static/PostgreSQL/000_combine.sql +++ b/static/PostgreSQL/000_combine.sql @@ -911,7 +911,7 @@ CREATE TABLE IF NOT EXISTS Shop_Product_Permutation ( id_currency_cost INTEGER NOT NULL, profit_local_min REAL NOT NULL, -- id_currency_profit_min INTEGER NOT NULL, - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -2216,7 +2216,7 @@ CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Product_Link ( CONSTRAINT FK_Manufacturing_Purchase_Order_id_unit_quantity FOREIGN KEY (id_unit_quantity) REFERENCES Shop_Unit_Measurement(id_unit_measurement), - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_produced REAL NOT NULL, display_order INTEGER NOT NULL, active BOOLEAN NOT NULL, @@ -2260,7 +2260,7 @@ CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Product_Link_Temp ( FOREIGN KEY (id_unit_quantity) REFERENCES Shop_Unit_Measurement(id_unit_measurement), quantity_produced REAL NULL, - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, display_order INTEGER NOT NULL, active BOOLEAN NOT NULL ); @@ -3512,9 +3512,9 @@ BEGIN WHERE NOT (OLD.price_GBP_min <=> NEW.price_GBP_min) UNION */ - -- Changed latency_manufacture_days - SELECT NEW.id_product, 'latency_manufacture_days', CONVERT(OLD.latency_manufacture_days, CHAR), CONVERT(NEW.latency_manufacture_days, CHAR), NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + -- Changed latency_manufacture + SELECT NEW.id_product, 'latency_manufacture', CONVERT(OLD.latency_manufacture, CHAR), CONVERT(NEW.latency_manufacture, CHAR), NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION -- Changed quantity_min SELECT NEW.id_product, 'quantity_min', CONVERT(OLD.quantity_min, CHAR), CONVERT(NEW.quantity_min, CHAR), NEW.id_change_set @@ -5271,9 +5271,9 @@ BEGIN SELECT NEW.id_link, 'quantity_produced', OLD.quantity_produced, NEW.quantity_produced, NEW.id_change_set WHERE NOT OLD.quantity_produced <=> NEW.quantity_produced UNION - -- Changed latency_manufacture_days - SELECT NEW.id_link, 'latency_manufacture_days', OLD.latency_manufacture_days, NEW.latency_manufacture_days, NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + -- Changed latency_manufacture + SELECT NEW.id_link, 'latency_manufacture', OLD.latency_manufacture, NEW.latency_manufacture, NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION -- Changed display_order SELECT NEW.id_link, 'display_order', OLD.display_order, NEW.display_order, NEW.id_change_set @@ -7163,7 +7163,7 @@ BEGIN FOREIGN KEY (id_unit_quantity) REFERENCES Shop_Unit_Measurement(id_unit_measurement), quantity_produced REAL NULL, - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, display_order INTEGER NOT NULL, active BOOLEAN NOT NULL, name_error VARCHAR(200) NOT NULL @@ -7246,7 +7246,7 @@ BEGIN id_unit_quantity, quantity_produced, value_produced_total_local, - latency_manufacture_days, + latency_manufacture, display_order, active, name_error @@ -7261,7 +7261,7 @@ BEGIN MPOPL_T.id_unit_quantity, MPOPL_T.quantity_produced, (PP.cost_local + PP.profit_local_min) * MPOPL_T.quantity_produced AS value_produced_total_local, - MPOPL_T.latency_manufacture_days, + MPOPL_T.latency_manufacture, MPOPL_T.display_order, MPOPL_T.active, PP.id_permutation, ' - ' || COALESCE(P.name ,'') AS name_error @@ -7281,7 +7281,7 @@ BEGIN MPOPL_T.id_unit_quantity, MPOPL_T.quantity_produced, value_produced_total_local, - MPOPL_T.latency_manufacture_days, + MPOPL_T.latency_manufacture, MPOPL_T.display_order, MPOPL_T.active, name_error @@ -7488,7 +7488,7 @@ BEGIN quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active, created_by, @@ -7503,7 +7503,7 @@ BEGIN quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active, v_id_user, @@ -7534,7 +7534,7 @@ BEGIN MPOPL.quantity_used = t_MPOPL.quantity_used, MPOPL.id_unit_quantity = t_MPOPL.id_unit_quantity, MPOPL.quantity_produced = t_MPOPL.quantity_produced, - MPOPL.latency_manufacture_days = t_MPOPL.latency_manufacture_days, + MPOPL.latency_manufacture = t_MPOPL.latency_manufacture, MPOPL.display_order = t_MPOPL.display_order, MPOPL.active = t_MPOPL.active, MPOPL.id_change_set = v_id_change_set @@ -7552,7 +7552,7 @@ BEGIN quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active, created_by, @@ -7567,7 +7567,7 @@ BEGIN quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active, v_id_user, @@ -7634,7 +7634,7 @@ INSERT INTO Shop_Manufacturing_Purchase_Order_Product_Link_Temp ( quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active ) @@ -7649,7 +7649,7 @@ VALUES 1, -- quantity_used, 1, -- id_unit_quantity, 1, -- quantity_produced, - 14, -- latency_manufacture_days , + 14, -- latency_manufacture , 1, -- display_order 1 -- active ) @@ -9749,7 +9749,7 @@ BEGIN price_GBP_full REAL NOT NULL, price_GBP_min REAL NOT NULL, */ - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -9872,7 +9872,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -9905,7 +9905,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -10412,7 +10412,7 @@ BEGIN PP.cost_local, PP.id_currency_cost, PP.profit_local_min, - t_P.latency_manufacture_days, + t_P.latency_manufacture, t_P.quantity_min, t_P.quantity_max, t_P.quantity_step, @@ -12162,7 +12162,7 @@ BEGIN price_GBP_full REAL NOT NULL, price_GBP_min REAL NOT NULL, */ - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -12318,7 +12318,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -12350,7 +12350,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -12849,7 +12849,7 @@ BEGIN price_GBP_min REAL NOT NULL, */ /* - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -12953,7 +12953,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -12985,7 +12985,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -13193,7 +13193,7 @@ BEGIN MPOPL.quantity_used, MPOPL.id_unit_quantity, MPOPL.quantity_produced, - MPOPL.latency_manufacture_days, + MPOPL.latency_manufacture, MPOPL.display_order FROM Shop_manufacturing_Purchase_Order_Product_Link MPOPL -- INNER JOIN tmp_Shop_Manufacturing_Purchase_Order_Product_Link t_MPOPL ON MPOPL.id_link = t_MPOPL.id_link @@ -13731,7 +13731,7 @@ BEGIN price_GBP_min REAL NOT NULL, */ /* - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -13887,7 +13887,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -13919,7 +13919,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -14468,7 +14468,7 @@ INSERT INTO Shop_Product_Permutation ( id_currency_cost, profit_local_min, -- id_currency_profit_min, - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, diff --git a/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql b/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql index 9b60cf1e..b7a0ebd8 100644 --- a/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql +++ b/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql @@ -18,7 +18,7 @@ CREATE TABLE IF NOT EXISTS Shop_Product_Permutation ( id_currency_cost INTEGER NOT NULL, profit_local_min REAL NOT NULL, -- id_currency_profit_min INTEGER NOT NULL, - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, diff --git a/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql b/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql index dfdba162..6ff6f469 100644 --- a/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql +++ b/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Product_Link ( CONSTRAINT FK_Manufacturing_Purchase_Order_id_unit_quantity FOREIGN KEY (id_unit_quantity) REFERENCES Shop_Unit_Measurement(id_unit_measurement), - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_produced REAL NOT NULL, display_order INTEGER NOT NULL, active BOOLEAN NOT NULL, diff --git a/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql b/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql index b62c558f..7237a1aa 100644 --- a/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql +++ b/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS Shop_Manufacturing_Purchase_Order_Product_Link_Temp ( FOREIGN KEY (id_unit_quantity) REFERENCES Shop_Unit_Measurement(id_unit_measurement), quantity_produced REAL NULL, - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, display_order INTEGER NOT NULL, active BOOLEAN NOT NULL ); diff --git a/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql b/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql index 78abd0aa..7a43d1e7 100644 --- a/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql +++ b/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql @@ -78,9 +78,9 @@ BEGIN WHERE NOT (OLD.price_GBP_min <=> NEW.price_GBP_min) UNION */ - -- Changed latency_manufacture_days - SELECT NEW.id_product, 'latency_manufacture_days', CONVERT(OLD.latency_manufacture_days, CHAR), CONVERT(NEW.latency_manufacture_days, CHAR), NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + -- Changed latency_manufacture + SELECT NEW.id_product, 'latency_manufacture', CONVERT(OLD.latency_manufacture, CHAR), CONVERT(NEW.latency_manufacture, CHAR), NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION -- Changed quantity_min SELECT NEW.id_product, 'quantity_min', CONVERT(OLD.quantity_min, CHAR), CONVERT(NEW.quantity_min, CHAR), NEW.id_change_set diff --git a/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql b/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql index d7c1ba06..ed7062e0 100644 --- a/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql +++ b/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql @@ -63,9 +63,9 @@ BEGIN SELECT NEW.id_link, 'quantity_produced', OLD.quantity_produced, NEW.quantity_produced, NEW.id_change_set WHERE NOT OLD.quantity_produced <=> NEW.quantity_produced UNION - -- Changed latency_manufacture_days - SELECT NEW.id_link, 'latency_manufacture_days', OLD.latency_manufacture_days, NEW.latency_manufacture_days, NEW.id_change_set - WHERE NOT OLD.latency_manufacture_days <=> NEW.latency_manufacture_days + -- Changed latency_manufacture + SELECT NEW.id_link, 'latency_manufacture', OLD.latency_manufacture, NEW.latency_manufacture, NEW.id_change_set + WHERE NOT OLD.latency_manufacture <=> NEW.latency_manufacture UNION -- Changed display_order SELECT NEW.id_link, 'display_order', OLD.display_order, NEW.display_order, NEW.id_change_set diff --git a/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql b/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql index abe1ca1a..5b12fecb 100644 --- a/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql +++ b/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql @@ -90,7 +90,7 @@ BEGIN FOREIGN KEY (id_unit_quantity) REFERENCES Shop_Unit_Measurement(id_unit_measurement), quantity_produced REAL NULL, - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, display_order INTEGER NOT NULL, active BOOLEAN NOT NULL, name_error VARCHAR(200) NOT NULL @@ -173,7 +173,7 @@ BEGIN id_unit_quantity, quantity_produced, value_produced_total_local, - latency_manufacture_days, + latency_manufacture, display_order, active, name_error @@ -188,7 +188,7 @@ BEGIN MPOPL_T.id_unit_quantity, MPOPL_T.quantity_produced, (PP.cost_local + PP.profit_local_min) * MPOPL_T.quantity_produced AS value_produced_total_local, - MPOPL_T.latency_manufacture_days, + MPOPL_T.latency_manufacture, MPOPL_T.display_order, MPOPL_T.active, PP.id_permutation, ' - ' || COALESCE(P.name ,'') AS name_error @@ -208,7 +208,7 @@ BEGIN MPOPL_T.id_unit_quantity, MPOPL_T.quantity_produced, value_produced_total_local, - MPOPL_T.latency_manufacture_days, + MPOPL_T.latency_manufacture, MPOPL_T.display_order, MPOPL_T.active, name_error @@ -415,7 +415,7 @@ BEGIN quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active, created_by, @@ -430,7 +430,7 @@ BEGIN quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active, v_id_user, @@ -461,7 +461,7 @@ BEGIN MPOPL.quantity_used = t_MPOPL.quantity_used, MPOPL.id_unit_quantity = t_MPOPL.id_unit_quantity, MPOPL.quantity_produced = t_MPOPL.quantity_produced, - MPOPL.latency_manufacture_days = t_MPOPL.latency_manufacture_days, + MPOPL.latency_manufacture = t_MPOPL.latency_manufacture, MPOPL.display_order = t_MPOPL.display_order, MPOPL.active = t_MPOPL.active, MPOPL.id_change_set = v_id_change_set @@ -479,7 +479,7 @@ BEGIN quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active, created_by, @@ -494,7 +494,7 @@ BEGIN quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active, v_id_user, @@ -561,7 +561,7 @@ INSERT INTO Shop_Manufacturing_Purchase_Order_Product_Link_Temp ( quantity_used, id_unit_quantity, quantity_produced, - latency_manufacture_days, + latency_manufacture, display_order, active ) @@ -576,7 +576,7 @@ VALUES 1, -- quantity_used, 1, -- id_unit_quantity, 1, -- quantity_produced, - 14, -- latency_manufacture_days , + 14, -- latency_manufacture , 1, -- display_order 1 -- active ) diff --git a/static/PostgreSQL/700_p_shop_get_many_product.sql b/static/PostgreSQL/700_p_shop_get_many_product.sql index ae671142..0e879542 100644 --- a/static/PostgreSQL/700_p_shop_get_many_product.sql +++ b/static/PostgreSQL/700_p_shop_get_many_product.sql @@ -203,7 +203,7 @@ BEGIN price_GBP_full REAL NOT NULL, price_GBP_min REAL NOT NULL, */ - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -326,7 +326,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -359,7 +359,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -866,7 +866,7 @@ BEGIN PP.cost_local, PP.id_currency_cost, PP.profit_local_min, - t_P.latency_manufacture_days, + t_P.latency_manufacture, t_P.quantity_min, t_P.quantity_max, t_P.quantity_step, diff --git a/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql b/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql index 7a146245..8ff67675 100644 --- a/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql +++ b/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql @@ -169,7 +169,7 @@ BEGIN price_GBP_full REAL NOT NULL, price_GBP_min REAL NOT NULL, */ - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -325,7 +325,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -357,7 +357,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, diff --git a/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql b/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql index 6cc77ded..adad5f6c 100644 --- a/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql +++ b/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql @@ -147,7 +147,7 @@ BEGIN price_GBP_min REAL NOT NULL, */ /* - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -251,7 +251,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -283,7 +283,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, @@ -491,7 +491,7 @@ BEGIN MPOPL.quantity_used, MPOPL.id_unit_quantity, MPOPL.quantity_produced, - MPOPL.latency_manufacture_days, + MPOPL.latency_manufacture, MPOPL.display_order FROM Shop_manufacturing_Purchase_Order_Product_Link MPOPL -- INNER JOIN tmp_Shop_Manufacturing_Purchase_Order_Product_Link t_MPOPL ON MPOPL.id_link = t_MPOPL.id_link diff --git a/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql b/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql index 36cd842e..e880a2a0 100644 --- a/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql +++ b/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql @@ -179,7 +179,7 @@ BEGIN price_GBP_min REAL NOT NULL, */ /* - latency_manufacture_days INTEGER NOT NULL, + latency_manufacture INTEGER NOT NULL, quantity_min REAL NOT NULL, quantity_max REAL NOT NULL, quantity_step REAL NOT NULL, @@ -335,7 +335,7 @@ BEGIN price_GBP_VAT_excl, price_GBP_min, */ - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, @@ -367,7 +367,7 @@ BEGIN PP.price_GBP_VAT_excl, PP.price_GBP_min, */ - PP.latency_manufacture_days, + PP.latency_manufacture, PP.quantity_min, PP.quantity_max, PP.quantity_step, diff --git a/static/PostgreSQL/900_populate.sql b/static/PostgreSQL/900_populate.sql index e0aa142a..4122763b 100644 --- a/static/PostgreSQL/900_populate.sql +++ b/static/PostgreSQL/900_populate.sql @@ -198,7 +198,7 @@ INSERT INTO Shop_Product_Permutation ( id_currency_cost, profit_local_min, -- id_currency_profit_min, - latency_manufacture_days, + latency_manufacture, quantity_min, quantity_max, quantity_step, diff --git a/static/css/components/table.css b/static/css/components/table.css index 04de4bd1..eae60f5d 100644 --- a/static/css/components/table.css +++ b/static/css/components/table.css @@ -9,7 +9,7 @@ thead, tbody { } th { - + background-color: var(--c_purple_pastel); } td { font-size: min(12px, calc(1vh * 3)); @@ -24,6 +24,17 @@ tr:not(:last-child) > td { td > table > tbody > tr > td { border: none !important; } +th.collapsed, td.collapsed { + display: table-cell !important; +} +td.dirty { + background-color: var(--c_purple_dark); +} +td:not(.dirty) { + /* color: var(--c_purple_dark); */ + background-color: var(--c_purple_pastel); +} + tr { min-height: 1px; border-bottom: 1px solid var(--c_purple_dark); diff --git a/static/css/main.css b/static/css/main.css index 0b00d5d8..04258f7b 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -579,13 +579,12 @@ li { } -.dirty { - /* color: var(--c_purple_dark); */ - border-color: var(--c_purple_dark); -} -td.dirty { +:not(input,textarea,select).dirty { background-color: var(--c_purple_dark); } +input.dirty, textarea.dirty, select.dirty { + border-color: var(--c_purple_dark); +} /* Tables */ diff --git a/static/css/pages/store/product_permutations.css b/static/css/pages/store/product_permutations.css index 5534efb3..ed9fcd28 100644 --- a/static/css/pages/store/product_permutations.css +++ b/static/css/pages/store/product_permutations.css @@ -99,7 +99,7 @@ width: 9vh; min-width: 9vh; } -#tableMain thead tr th.latency_manufacture_days, #tableMain tbody tr td.latency_manufacture_days { +#tableMain thead tr th.latency_manufacture, #tableMain tbody tr td.latency_manufacture { width: 9vh; min-width: 9vh; } diff --git a/static/css/pages/store/stock_items.css b/static/css/pages/store/stock_items.css index 07fc5c2f..ec4eb4b4 100644 --- a/static/css/pages/store/stock_items.css +++ b/static/css/pages/store/stock_items.css @@ -20,7 +20,6 @@ th, td { #tableMain thead tr th.product_variations.collapsed, #tableMain tbody tr td.product_variations.collapsed { width: 10vh; min-width: 10vh; - display: table-cell !important; } #tableMain thead tr th.product_variations, #tableMain tbody tr td.product_variations { width: 20vh; @@ -53,7 +52,6 @@ th, td { #tableMain thead tr th.storage-location.collapsed, #tableMain tbody tr td.storage-location.collapsed { width: 10vh; min-width: 10vh; - display: table-cell !important; } #tableMain thead tr th.storage-location, #tableMain tbody tr td.storage-location { width: 20vh; diff --git a/static/css/pages/store/supplier_purchase_order.css b/static/css/pages/store/supplier_purchase_order.css index 82d92096..f24ebefc 100644 --- a/static/css/pages/store/supplier_purchase_order.css +++ b/static/css/pages/store/supplier_purchase_order.css @@ -30,10 +30,63 @@ width: 10vh; min-width: 10vh; } -#tableMain tbody tr td.items, #tableMain thead tr th.items { + +#tableMain tbody tr td.order_items, #tableMain thead tr th.items { width: 40vh; min-width: 40vh; } +#tableMain thead tr th.order_items.collapsed, #tableMain tbody tr td.order_items.collapsed { + width: 15vh; + min-width: 15vh; +} +#tableMain:has(tbody tr td.order_items table thead tr th.product_variations.collapsed) thead tr th.order_items, +#tableMain:has(tbody tr td.order_items table thead tr th.product_variations.collapsed) tbody tr td.order_items { + width: 91vh; + min-width: 91vh; +} +#tableMain thead tr th.order_items, +#tableMain tbody tr td.order_items { + width: 101vh; + min-width: 101vh; +} +#tableMain tbody tr td.order_items table thead tr th, #tableMain tbody tr td.order_items table tbody tr td { + width: 12vh; + min-width: 12vh; +} +#tableMain tbody tr td.order_items table thead tr th.display_order, #tableMain tbody tr td.order_items table tbody tr td.display_order, +#tableMain tbody tr td.order_items table thead tr th.id_unit_measurement_quantity, #tableMain tbody tr td.order_items table tbody tr td.id_unit_measurement_quantity { + width: 6vh; + min-width: 6vh; +} + +#tableMain tbody tr td.order_items table thead tr th.product_variations.collapsed, #tableMain tbody tr td.order_items table tbody tr td.product_variations.collapsed { + width: 10vh; + min-width: 10vh; +} +#tableMain tbody tr td.order_items table thead tr th.product_variations, #tableMain tbody tr td.order_items table tbody tr td.product_variations { + width: 20vh; + min-width: 20vh; +} +#tableMain tbody tr td.order_items table tbody tr td.product_variations table thead tr th, #tableMain tbody tr td.order_items table tbody tr td.product_variations table tbody tr td { + width: 8vh; + min-width: 8vh; +} +#tableMain tbody tr td.order_items table tbody tr td.product_variations table thead tr th:last-of-type, #tableMain tbody tr td.order_items table tbody tr td.product_variations table tbody tr td:last-of-type { + width: 4vh; + min-width: 4vh; +} + +#tableMain tbody tr td.order_items table thead tr th.quantity_ordered, #tableMain tbody tr td.order_items table tbody tr td.quantity_ordered, +#tableMain tbody tr td.order_items table thead tr th.quantity_received, #tableMain tbody tr td.order_items table tbody tr td.quantity_received, +#tableMain tbody tr td.order_items table thead tr th.latency_delivery_days, #tableMain tbody tr td.order_items table tbody tr td.latency_delivery_days { + width: 8vh; + min-width: 8vh; +} +#tableMain tbody tr td.order_items table thead tr th.active, #tableMain tbody tr td.order_items table tbody tr td.active { + width: 4vh; + min-width: 4vh; +} + #tableMain tbody tr td.active, #tableMain thead tr th.active { width: 5vh; min-width: 5vh; diff --git a/static/dist/css/main.bundle.css b/static/dist/css/main.bundle.css index decdc7bd..e4173340 100644 --- a/static/dist/css/main.bundle.css +++ b/static/dist/css/main.bundle.css @@ -579,13 +579,12 @@ li { } -.dirty { - /* color: var(--c_purple_dark); */ - border-color: var(--c_purple_dark); -} -td.dirty { +:not(input,textarea,select).dirty { background-color: var(--c_purple_dark); } +input.dirty, textarea.dirty, select.dirty { + border-color: var(--c_purple_dark); +} /* Tables */ @@ -615,7 +614,7 @@ thead, tbody { } th { - + background-color: var(--c_purple_pastel); } td { font-size: min(12px, calc(1vh * 3)); @@ -630,6 +629,17 @@ tr:not(:last-child) > td { td > table > tbody > tr > td { border: none !important; } +th.collapsed, td.collapsed { + display: table-cell !important; +} +td.dirty { + background-color: var(--c_purple_dark); +} +td:not(.dirty) { + /* color: var(--c_purple_dark); */ + background-color: var(--c_purple_pastel); +} + tr { min-height: 1px; border-bottom: 1px solid var(--c_purple_dark); diff --git a/static/dist/css/store_product_permutations.bundle.css b/static/dist/css/store_product_permutations.bundle.css index dbd8d84b..de083a06 100644 --- a/static/dist/css/store_product_permutations.bundle.css +++ b/static/dist/css/store_product_permutations.bundle.css @@ -152,7 +152,7 @@ width: 9vh; min-width: 9vh; } -#tableMain thead tr th.latency_manufacture_days, #tableMain tbody tr td.latency_manufacture_days { +#tableMain thead tr th.latency_manufacture, #tableMain tbody tr td.latency_manufacture { width: 9vh; min-width: 9vh; } diff --git a/static/dist/css/store_stock_items.bundle.css b/static/dist/css/store_stock_items.bundle.css index ecdb2197..ee75a15b 100644 --- a/static/dist/css/store_stock_items.bundle.css +++ b/static/dist/css/store_stock_items.bundle.css @@ -73,7 +73,6 @@ th, td { #tableMain thead tr th.product_variations.collapsed, #tableMain tbody tr td.product_variations.collapsed { width: 10vh; min-width: 10vh; - display: table-cell !important; } #tableMain thead tr th.product_variations, #tableMain tbody tr td.product_variations { width: 20vh; @@ -106,7 +105,6 @@ th, td { #tableMain thead tr th.storage-location.collapsed, #tableMain tbody tr td.storage-location.collapsed { width: 10vh; min-width: 10vh; - display: table-cell !important; } #tableMain thead tr th.storage-location, #tableMain tbody tr td.storage-location { width: 20vh; diff --git a/static/dist/js/main.bundle.js b/static/dist/js/main.bundle.js index 838cf708..ab07e71e 100644 --- a/static/dist/js/main.bundle.js +++ b/static/dist/js/main.bundle.js @@ -1,2 +1,2 @@ /*! For license information please see main.bundle.js.LICENSE.txt */ -(()=>{"use strict";(()=>{function e(t){return e="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},e(t)}function t(e,t){for(var n=0;n0)if(r)t=!1;else if("string"!=typeof e[0])t=!1;else for(var n=0;n0)}},{key:"getDataContentType",value:function(t){var r=null,n="";return e.isEmpty(t)||("string"==typeof t?(r=t,n="application/x-www-form-urlencoded; charset=UTF-8"):(r=JSON.stringify(t),n="application/json; charset=UTF-8")),{Data:r,ContentType:n}}},{key:"arrayContainsItem",value:function(t,r){var n=!1;if(!e.isEmpty(t)&&!e.isEmpty(r))if(t[0]instanceof jQuery){for(var o=0;o=0;--a){var i=this.tryEntries[a],u=i.completion;if("root"===i.tryLoc)return o("end");if(i.tryLoc<=this.prev){var l=n.call(i,"catchLoc"),c=n.call(i,"finallyLoc");if(l&&c){if(this.prev=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),F(r),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;F(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:x(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}function m(e,t,r,n,o,a,i){try{var u=e[a](i),l=u.value}catch(e){return void r(e)}u.done?t(l):Promise.resolve(l).then(n,o)}function k(e){return function(){var t=this,r=arguments;return new Promise((function(n,o){var a=e.apply(t,r);function i(e){m(a,n,o,i,u,"next",e)}function u(e){m(a,n,o,i,u,"throw",e)}i(void 0)}))}}function P(e,t){for(var r=0;r1&&void 0!==c[1]?c[1]:"GET",o=c.length>2&&void 0!==c[2]?c[2]:null,a=c.length>3&&void 0!==c[3]?c[3]:null,i=e.getUrlFromHash(r,a),u={method:n,headers:{"Content-Type":"application/json","X-CSRFToken":e.getCsrfToken()}},!o||"POST"!==n&&"PUT"!==n&&"PATCH"!==n||(u.body=JSON.stringify(o)),console.log("API request:",n,i,o),t.prev=7,t.next=10,fetch(i,u);case 10:if((l=t.sent).ok){t.next=13;break}throw new Error("HTTP error! status: ".concat(l.status));case 13:return t.next=15,l.json();case 15:return t.abrupt("return",t.sent);case 18:throw t.prev=18,t.t0=t.catch(7),console.error("API request failed:",t.t0),t.t0;case 22:case"end":return t.stop()}}),t,null,[[7,18]])}))),function(e){return I.apply(this,arguments)})},{key:"getUrlFromHash",value:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;null==t&&(t=hashPageHome),console.log("getUrlFromHash:"),console.log("base url: "+_pathHost+"\nhash: "+t+"\nparams: "+r);var n=e.parameteriseUrl(_pathHost+t,r);return console.log("url: "+n),n}},{key:"parameteriseUrl",value:function(e,t){return t&&(e+="?"+new URLSearchParams(t).toString()),e}},{key:"goToUrl",value:function(e){window.location.href=e}},{key:"goToHash",value:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=e.getUrlFromHash(t,r);e.goToUrl(n)}},{key:"loginUser",value:(A=k(b().mark((function t(){var r;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(r={})[flagCallback]=l.getHashPageCurrent(),t.next=4,e.request(hashPageUserLogin,"POST",r);case 4:return t.abrupt("return",t.sent);case 5:case"end":return t.stop()}}),t)}))),function(){return A.apply(this,arguments)})},{key:"getCategories",value:(T=k(b().mark((function t(){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreProductCategory);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return T.apply(this,arguments)})},{key:"getCategoriesByFilters",value:(E=k(b().mark((function t(r){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreProductCategories,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return E.apply(this,arguments)})},{key:"saveCategories",value:(O=k(b().mark((function t(r,n,o){var a;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=l.convertForm2JSON(n),a[flagProductCategory]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreProductCategory,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return O.apply(this,arguments)})},{key:"getProducts",value:(w=k(b().mark((function t(){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreProduct);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return w.apply(this,arguments)})},{key:"getProductsByFilters",value:(C=k(b().mark((function t(r){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreProducts,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return C.apply(this,arguments)})},{key:"saveProducts",value:(S=k(b().mark((function t(r,n,o){var a;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=l.convertForm2JSON(n),a[flagProduct]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreProduct,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return S.apply(this,arguments)})},{key:"getProductPermutations",value:(m=k(b().mark((function t(){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreProductPermutation);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return m.apply(this,arguments)})},{key:"getProductPermutationsByFilters",value:(g=k(b().mark((function t(r){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreProductPermutations,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return g.apply(this,arguments)})},{key:"saveProductPermutations",value:(v=k(b().mark((function t(r,n,o){var a;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=l.convertForm2JSON(n),a[flagProductPermutation]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreProductPermutation,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return v.apply(this,arguments)})},{key:"getStockItems",value:(h=k(b().mark((function t(){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreStockItem);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return h.apply(this,arguments)})},{key:"getStockItemsByFilters",value:(y=k(b().mark((function t(r){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreStockItems,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return y.apply(this,arguments)})},{key:"saveStockItems",value:(p=k(b().mark((function t(r,n,o){var a;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=l.convertForm2JSON(n),a[flagStockItem]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreStockItem,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return p.apply(this,arguments)})},{key:"getSuppliers",value:(d=k(b().mark((function t(){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreSupplier);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return d.apply(this,arguments)})},{key:"getSuppliersByFilters",value:(f=k(b().mark((function t(r){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreSuppliers,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return f.apply(this,arguments)})},{key:"saveSuppliers",value:(s=k(b().mark((function t(r,n,o){var a;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=l.convertForm2JSON(n),a[flagSupplier]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreSupplier,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return s.apply(this,arguments)})},{key:"getSupplierPurchaseOrders",value:(c=k(b().mark((function t(){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreSupplierPurchaseOrder);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return c.apply(this,arguments)})},{key:"getSupplierPurchaseOrdersByFilters",value:(u=k(b().mark((function t(r){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreSupplierPurchaseOrders,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return u.apply(this,arguments)})},{key:"saveSupplierPurchaseOrders",value:(i=k(b().mark((function t(r,n,o){var a;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=l.convertForm2JSON(n),a[flagSupplierPurchaseOrder]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreSupplierPurchaseOrder,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return i.apply(this,arguments)})},{key:"getManufacturingPurchaseOrders",value:(a=k(b().mark((function t(){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreManufacturingPurchaseOrder);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return a.apply(this,arguments)})},{key:"getManufacturingPurchaseOrdersByFilters",value:(o=k(b().mark((function t(r){return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreManufacturingPurchaseOrders,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return o.apply(this,arguments)})},{key:"saveManufacturingPurchaseOrders",value:(n=k(b().mark((function t(r,n,o){var a;return b().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=l.convertForm2JSON(n),a[flagManufacturingPurchaseOrder]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreManufacturingPurchaseOrder,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return n.apply(this,arguments)})}],r&&P(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,r,n,o,a,i,u,c,s,f,d,p,y,h,v,g,m,S,C,w,O,E,T,A,I}();function w(e){return w="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},w(e)}function O(e,t){for(var r=0;r at "+r[keyPostcode]+"",document.querySelectorAll(idOverlayInfoBilling).css("display","none"),document.querySelectorAll(idOverlayInfoBilling).querySelector("form").classList.add(flagSubmitted)}else document.querySelectorAll(idContainerInfoDelivery).querySelector("div").innerHTML=""+r[keyNameFull]+" at "+r[keyPostcode]+"",document.querySelectorAll(idOverlayInfoDelivery).css("display","none"),document.querySelectorAll(idOverlayInfoDelivery).querySelector("form").classList.add(flagSubmitted)}},{key:"convertFormBilling2JSON",value:function(e,t){var r;r=document.querySelectorAll(t).querySelector("form"),r=document.querySelectorAll(idOverlayInfoDelivery).querySelector("form"),console.log("converting billing form to json\nform ID: "+r.id),e[flagForm]=convertForm2JSON(r);var n=[keyNameFull,keyPhoneNumber,keyPostcode,keyAddress1,keyAddress2,keyCity,keyCounty];for(var o in console.log("ajaxData:"),console.log(e),e[flagForm][keyInfoIdentical]=getElementValueCurrent(r.querySelector("#"+keyInfoIdentical)),n)t==idOverlayInfoBilling&&e[flagForm][keyInfoIdentical]?e[flagForm][n[o]]=getElementValueCurrent((void 0).querySelector("#"+n[o])):e[flagForm][n[o]]=getElementValueCurrent(r.querySelector("#"+n[o]));return console.log("ajaxData:"),console.log(e),e}},{key:"hookupButtonCheckoutSession",value:function(){var e=document.querySelectorAll(idButtonCheckout);e.classList.remove(flagInitialised),d.initialiseEventHandler(idButtonCheckout,flagInitialised,(function(){e.removeEventListener("click"),e.addEventListener("click",(function(e){var t=v.getLocalStorage(keyBasket),r={};r[keyBasket]=t,r=convertFormBilling2JSON(r,idOverlayInfoDelivery),(r=convertFormBilling2JSON(r,idOverlayInfoBilling))[key_code_currency]=getCurrencySelected(),ajaxJSONData("checkout session",mapHashToController(hashPageStoreCheckout),r,handleResponseCheckout,!1)}))}))}},{key:"handleResponseCheckout",value:function(e){window.location.href=e.data[keyUrlCheckout]}},{key:"hookupButtonFormBillingCopy",value:function(){d.initialiseEventHandler(idButtonFormBillingCopy,flagInitialised,(function(){document.querySelectorAll(idButtonFormBillingCopy).addEventListener("click",(function(e){var t=[keyNameFull,keyPhoneNumber,keyPostcode,keyAddress1,keyAddress2,keyCity,keyCounty],r=document.querySelectorAll(idOverlayInfoBilling).querySelector("form"),n=document.querySelectorAll(idOverlayInfoDelivery).querySelector("form");for(var o in t)r.querySelector("#"+t[o]).value=getElementValueCurrent(n.querySelector("#"+t[o]))}))}))}},{key:"leave",value:function(){!function(e,t,r){var n=Ge(We(e.prototype),"leave",r);return"function"==typeof n?function(e){return n.apply(r,e)}:n}(t,0,this)([])}}])}(F);function $e(e){return $e="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},$e(e)}function Ze(e,t){for(var r=0;r3&&void 0!==arguments[3]?arguments[3]:null;return{text:e[t],value:e[r],selected:e[r]==n}}},{key:"getOptionJsonFromObjectJson",value:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=t[flagNameAttrOptionText],o=t[flagNameAttrOptionValue];return console.log({objectJson:t,keyText:n,keyValue:o}),e.getOptionJsonFromObjectJsonAndKeys(t,n,o,r)}}])}();function ft(e){return ft="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},ft(e)}function dt(e,t){for(var r=0;r1&&void 0!==arguments[1]&&arguments[1];if(arguments.length>0&&void 0!==arguments[0]&&arguments[0]){var o=this.getLocalStoragePage()[flagFormFilters],a=this.getFormFilters(),i=l.convertForm2JSON(a);n.areEqualDicts(o,i)||this.callFilterTableContent(o)}else Ot(t,"sharedInitialize",this,3)([]),this.hookupFilters(),this.hookupButtonsAddSaveCancel(),this.hookupTableMain(),T.hookup((function(){r?e.saveRecordsTableDirtySinglePageApp():e.saveRecordsTableDirty()}))}},{key:"hookupFilters",value:function(){if(this.constructor===t)throw new Error("Subclass of TableBasePage must implement method hookupFilters().")}},{key:"sharedHookupFilters",value:function(){this.hookupButtonApplyFilters()}},{key:"hookupFilterActive",value:function(){this.hookupFilter(flagActive)}},{key:"hookupFilter",value:function(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e,r){return t.isDirtyFilter(r)},n=idFormFilters+" ."+e;this.hookupEventHandler("change",n,r)}},{key:"hookupFilterIsNotEmpty",value:function(){this.hookupFilter(flagIsNotEmpty)}},{key:"hookupButtonApplyFilters",value:function(){var e=this;this.hookupEventHandler("click",idButtonApplyFilters,(function(t,r){t.stopPropagation(),e.getAndLoadFilteredTableContent()}))}},{key:"getAndLoadFilteredTableContent",value:function(){var e=this.getFormFilters(),t=l.convertForm2JSON(e);this.leave(),this.callFilterTableContent(t).catch((function(e){return console.error("Error:",e)}))}},{key:"getFormFilters",value:function(){return document.querySelector(idFormFilters)}},{key:"callbackLoadTableContent",value:function(e){this.getTableMain().querySelector("tbody").querySelectorAll("tr").forEach((function(e){e.remove()}));var t=e.data[flagRows];!n.isEmpty(t)&&t.every((function(e){return e.hasOwnProperty("display_order")}))&&(t=t.sort((function(e,t){return e.display_order-t.display_order}))),t.forEach(this.loadRowTable.bind(this)),this.hookupTableMain()}},{key:"getTableMain",value:function(){return document.querySelector(idTableMain)}},{key:"loadRowTable",value:function(e){throw new Error("Subclass of TableBasePage must implement method loadRowTable().")}},{key:"getAndLoadFilteredTableContentSinglePageApp",value:function(){var e=this,t=this.getFormFilters(),r=l.convertForm2JSON(t);this.callFilterTableContent(r).then((function(t){console.log("Table data received:",t),e.callbackLoadTableContent(t)})).catch((function(e){return console.error("Error:",e)}))}},{key:"hookupButtonsAddSaveCancel",value:function(){this.hookupButtonAddRowTable(),this.hookupButtonSave(),this.hookupButtonCancel(),this.toggleShowButtonsSaveCancel(!1)}},{key:"saveRecordsTableDirty",value:function(){var e=this,t=this.getTableRecords(!0);if(0!=t.length){var r=this.getFormFilters(),n=l.getElementValueCurrent(document.querySelector(idTextareaConfirm));this.callSaveTableContent(t,r,n).then((function(t){t[flagStatus]==flagSuccess?(console.log("Records saved!"),console.log("Data received:",t),e.getAndLoadFilteredTableContent()):(console.log("error: ",t[flagMessage]),bt.show(t[flagMessage]))})).catch((function(e){return console.error("Error:",e)}))}else bt.show("No records to save")}},{key:"getTableRecords",value:function(){var e,t=this,r=arguments.length>0&&void 0!==arguments[0]&&arguments[0],n=[];return document.querySelectorAll(idTableMain+" > tbody > tr").forEach((function(o){r&&!o.classList.contains(flagDirty)||(e=t.getJsonRow(o),n.push(e))})),n}},{key:"getJsonRow",value:function(e){throw new Error("Subclass of TableBasePage must implement method getJsonRow().")}},{key:"saveRecordsTableDirtySinglePageApp",value:function(){var e=this,t=this.getTableRecords(!0);if(0!=t.length){var r=this.getFormFilters(),n=l.getElementValueCurrent(document.querySelector(idTextareaConfirm));this.callSaveTableContent(t,r,n).then((function(t){t[flagStatus]==flagSuccess?(console.log("Records saved!"),console.log("Data received:",t),e.callbackLoadTableContent(t)):(console.log("error: ",t[flagMessage]),bt.show(t[flagMessage]))})).catch((function(e){return console.error("Error:",e)}))}else bt.show("No records to save")}},{key:"hookupButtonCancel",value:function(){d.initialiseEventHandler(idFormFilters+" button."+flagCancel,flagInitialised,(function(e){e.addEventListener("click",(function(e){e.stopPropagation(),getAndLoadFilteredTableContent()})),e.classList.add(flagCollapsed)}))}},{key:"hookupButtonAddRowTable",value:function(){var e=this;this.hookupEventHandler("click",idFormFilters+" button."+flagAdd,(function(t,r){t.stopPropagation();var n=document.querySelector(idTableMain+" tbody"),o=_rowBlank.cloneNode(!0);o.classList.remove(flagInitialised),o.querySelectorAll("."+flagInitialised).forEach((function(e){e.classList.remove(flagInitialised)}));var a=document.querySelectorAll(idTableMain+" > tbody > tr").length;o.setAttribute(e.constructor.attrIdRowObject,-1-a),e.initialiseRowNew(o),n.appendChild(o),e.hookupTableMain()}))}},{key:"initialiseRowNew",value:function(e){if(this.constructor===t)throw new Error("Subclass of TableBasePage must implement method initialiseRowNew().");e.classList.remove(flagRowNew)}},{key:"hookupTableMain",value:function(){var e=this;if(this.constructor===t)throw new Error("Must implement hookupTableMain() method.");d.initialiseEventHandler(idTableMain,flagInitialised,(function(t){e.cacheRowBlank()}))}},{key:"cacheRowBlank",value:function(){var e=idTableMain+" tbody tr."+flagRowNew,t=document.querySelector(e);console.log("row blank temp: ",t),_rowBlank=t.cloneNode(!0),document.querySelectorAll(e).forEach((function(e){e.remove()}))}},{key:"hookupSlidersDisplayOrderTable",value:function(){var e=idTableMain+" tbody tr td."+flagDisplayOrder+" input."+flagSlider+"."+flagDisplayOrder;this.hookupChangeHandlerTableCells(e)}},{key:"hookupChangeHandlerTableCells",value:function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e,r){t.handleChangeElementCellTable(e,r)};d.initialiseEventHandler(e,flagInitialised,(function(e){e.addEventListener("change",(function(t){r(t,e)})),r(null,e)}))}},{key:"handleChangeElementCellTable",value:function(e,t){var r=l.getRowFromElement(t),n=l.getCellFromElement(t),o=l.hasDirtyChildrenNotDeletedContainer(r),a=t.classList.contains(flagDirty),i=l.updateAndCheckIsElementDirty(t);if(i!=a){l.handleDirtyElement(n,i);var u=l.hasDirtyChildrenNotDeletedContainer(r);if(u!=o){l.handleDirtyElement(r,u);var c=this.getTableRecords(!0).length>0;this.toggleShowButtonsSaveCancel(c)}}}},{key:"hookupChangeHandlerTableCellsWhenNotCollapsed",value:function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e,r){r.classList.contains(flagCollapsed)||t.handleChangeElementCellTable(e,r)};this.hookupEventHandler("change",e,r)}},{key:"hookupTextareasCodeTable",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" tbody tr td."+flagCode+" textarea")}},{key:"hookupTextareasNameTable",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" tbody tr td."+flagName+" textarea")}},{key:"hookupTextareasDescriptionTable",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" tbody tr td."+flagDescription+" textarea")}},{key:"hookupInputsActiveTable",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" tbody tr td."+flagActive+' input[type="checkbox"]')}},{key:"hookupTdsAccessLevel",value:function(){var e=idTableMain+" tbody td."+flagAccessLevel;this.hookupTableCellDdlPreviews(e,yt.getListFromDict(accessLevels))}},{key:"hookupTableCellDdlPreviews",value:function(e,t){var r=this,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(e,t){r.hookupTableCellDdls(e,t)};this.hookupEventHandler("click",e,(function(o,a){r.handleClickTableCellDdlPreview(o,a,t,e,(function(e,t){n(e,t)}))}))}},{key:"hookupTableCellDdls",value:function(e){var t=this;this.hookupEventHandler("change",e,(function(e,r){t.handleChangeTableCellDdl(e,r)}))}},{key:"handleClickTableCellDdlPreview",value:function(e,t,r,n){var o=this,a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:function(e,t){o.hookupTableCellDdls(e,t)};if(!t.querySelector("select")){console.log("click table cell ddl preview");var i=t.cloneNode(!0);t.parentNode.replaceChild(i,t);var u=i.getAttribute(attrValueCurrent);i.innerHTML="";var c,s,f=document.createElement("select");l.setElementValuesCurrentAndPrevious(f,l.getElementAttributeValueCurrent(i)),console.log({optionObjectList:r,cellSelector:n}),r.forEach((function(e){c=st.getOptionJsonFromObjectJson(e,u),s=l.createOption(c),f.appendChild(s)})),i.appendChild(f),a(n+" select")}}},{key:"handleChangeTableCellDdl",value:function(e,t){var r=l.getRowFromElement(t),n=l.getCellFromElement(t);console.log("td: ",n);var o=l.hasDirtyChildrenNotDeletedContainer(r),a=t.classList.contains(flagDirty),i=l.updateAndCheckIsElementDirty(t);if(console.log("isDirtyElement: ",i),console.log("wasDirtyElement: ",a),i!=a){l.handleDirtyElement(n,i);var u=t.options[t.selectedIndex];l.setElementAttributeValueCurrent(n,u.value);var c=l.hasDirtyChildrenNotDeletedContainer(r);if(console.log("isNowDirtyRow: ",c),console.log("wasDirtyRow: ",o),c!=o){l.handleDirtyElement(r,c);var s=this.getTableRecords(!0),f=s.length>0;console.log("dirty records:",s),console.log("existsDirtyRecord:",f),this.toggleShowButtonsSaveCancel(f)}}}},{key:"hookupTableCellDDlPreviewsWhenNotCollapsed",value:function(e,t){var r=this,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(e,t){r.hookupTableCellDdls(e,t)};this.hookupEventHandler("click",e,(function(o,a){var i=a.querySelector("div");i&&!i.classList.contains(flagCollapsed)&&r.handleClickTableCellDdlPreview(o,a,t,e,(function(e,t){n(e,t)}))}))}},{key:"hookupProductPermutationVariationFields",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagProductVariations,(function(t,r){return e.handleClickProductPermutationVariationsPreview(t,r)}))}},{key:"handleClickProductPermutationVariationsPreview",value:function(e,t){var r=this;console.log("click product permutation variations preview"),this.toggleColumnCollapsed(flagProductVariations,!1);var o=this.getElementProductVariations(t),a=document.createElement("table");a.classList.add(flagProductVariations);var i=document.createElement("thead"),u=document.createElement("tr"),l=document.createElement("th");l.classList.add(flagProductVariationType),l.textContent="Type";var c=document.createElement("th");c.classList.add(flagProductVariation),c.textContent="Name";var s=document.createElement("button");s.classList.add(flagAdd),s.textContent="+";var f=document.createElement("th");f.classList.add(flagAdd),f.appendChild(s),u.appendChild(l),u.appendChild(c),u.appendChild(f),i.appendChild(u),a.appendChild(i);var d=document.createElement("tbody");console.log("variations:",o),n.isEmpty(o)?o=[PageStoreProductPermutations.createOptionUnselectedProductVariation()]:o.forEach((function(e,t){r.addProductPermutationVariationRow(d,e)})),a.appendChild(d);var p=t.closest(idTableMain+" tbody tr td."+flagProductVariations);p.innerHTML="",p.appendChild(a),console.log("tblVariations: ",a);var y=idTableMain+" td."+flagProductVariations+" button."+flagAdd;this.hookupEventHandler("click",y,this.handleClickButtonProductPermutationVariationsAdd);var h=idTableMain+" td."+flagProductVariations+" button."+flagDelete;this.hookupEventHandler("click",h,this.handleClickButtonProductPermutationVariationsDelete)}},{key:"toggleColumnCollapsed",value:function(e,t){this.toggleColumnHasClassnameFlag(e,t,flagCollapsed)}},{key:"toggleColumnHeaderCollapsed",value:function(e,t){this.toggleColumnHasClassnameFlag(e,t,flagCollapsed)}},{key:"getElementProductVariations",value:function(e){var t,r,o,a=e.getAttribute(attrValueCurrent),i=[];return n.isEmpty(a)||(a=a.split(",")).forEach((function(e){2==(t=e.split(":")).length?(console.log("parts: ",t),o=productVariationTypes[t[0].trim()],r=productVariations[t[1].trim()],i.push(kt(kt({},flagProductVariationType,o),flagProductVariation,r))):console.log("error: invalid variation: ",e)})),i}},{key:"addProductPermutationVariationRow",value:function(e,t){var r,n,o,a,i,u,c=Object.keys(productVariations),s=Object.keys(productVariationTypes);console.log("permutationVariation: ",t);var f=t[flagProductVariation],d=t[flagProductVariationType],p=document.createElement("td");p.classList.add(flagProductVariationType),l.setElementAttributesValuesCurrentAndPrevious(p,d[attrIdProductVariationType]);var y=document.createElement("select");y.classList.add(flagProductVariationType),l.setElementAttributesValuesCurrentAndPrevious(y,d[attrIdProductVariationType]),o=l.createOption(null),console.log("optionProductVariationType: ",o),y.appendChild(o),s.forEach((function(e){r=productVariationTypes[e],n=st.getOptionJsonFromObjectJson(r,d[attrIdProductVariationType]),o=l.createOption(n),console.log("optionProductVariationType: ",o),y.appendChild(o)}));var h=document.createElement("td");h.classList.add(flagProductVariation),l.setElementAttributesValuesCurrentAndPrevious(h,f[attrIdProductVariation]);var v=document.createElement("select");v.classList.add(flagProductVariation),l.setElementAttributesValuesCurrentAndPrevious(v,f[attrIdProductVariation]),u=l.createOption(null),console.log("optionProductVariation: ",u),v.appendChild(u),c.forEach((function(e){a=productVariations[e],i=st.getOptionJsonFromObjectJson(a,f[attrIdProductVariation]),u=l.createOption(i),console.log("optionProductVariation: ",u),v.appendChild(u)}));var g=document.createElement("td");g.classList.add(flagDelete);var b=document.createElement("button");b.classList.add(flagDelete),b.textContent="x";var m=document.createElement("tr");p.appendChild(y),m.appendChild(p),h.appendChild(v),m.appendChild(h),g.appendChild(b),m.appendChild(g),e.appendChild(m)}},{key:"handleClickButtonProductPermutationVariationsDelete",value:function(e,t){var r=getRowFromElement(t),n=r.closest("td."+flagProductVariations);r.remove(),this.updateProductPermutationVariations(n)}},{key:"updateProductPermutationVariations",value:function(e){var t=this.getProductPermutationVariationsText(e);e.setAttribute(attrValueCurrent,t),l.isElementDirty(e)}},{key:"getProductPermutationVariationsText",value:function(e){var t,r,n,o,a=e.querySelectorAll("tr"),i="";return a.forEach((function(e,a){t=e.querySelector("td select."+flagProductVariationType),r=e.querySelector("td select."+flagProductVariation),n=t.getAttribute(attrValueCurrent),o=r.getAttribute(attrValueCurrent),i+=n+":"+o+","})),i}},{key:"hookupCurrencyFields",value:function(){this.hookupTableCellDdlPreviews(idTableMain+" td."+flagCurrency,yt.getListFromDict(currencies))}},{key:"leave",value:function(){if(this.constructor===t)throw new Error("Must implement leave() method.");Ot(t,"leave",this,3)([]);var e=this.getFormFilters(),r={};r[flagFormFilters]=l.convertForm2JSON(e),this.setLocalStoragePage(r)}},{key:"toggleColumnHasClassnameFlag",value:function(e,t,r){var n=this.getTableMain(),o=n.querySelector("th."+e),a=o.classList.contains(r);t!=a&&(l.toggleElementHasClassnameFlag(o,t,r),n.querySelectorAll("td."+e).forEach((function(e){l.toggleElementHasClassnameFlag(e,t,r)})))}},{key:"toggleColumnHeaderHasClassnameFlag",value:function(e,t,r){var n=this.getTableMain().querySelector("th."+e);l.toggleElementHasClassnameFlag(n,t,r)}}],[{key:"isDirtyFilter",value:function(e){var t=l.updateAndCheckIsElementDirty(e);if(t){var r=document.querySelector(idTableMain+" tbody");r.querySelectorAll("tr").remove(),r.appendChild(document.createElement('
Press "Apply Filters" to refresh the table.
'))}return t}},{key:"createOptionUnselectedProductVariation",value:function(){return kt(kt({},flagProductVariationType,kt(kt(kt(kt({},flagNameAttrOptionText,[flagName]),flagNameAttrOptionValue,[attrIdProductVariationType]),flagName,"Select Variation Type"),attrIdProductVariationType,0)),flagProductVariation,kt(kt(kt(kt({},flagNameAttrOptionText,[flagName]),flagNameAttrOptionValue,[attrIdProductVariation]),flagName,"Select Variation"),attrIdProductVariation,0))}}])}(F);function jt(e){return jt="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},jt(e)}function Ft(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(e){if("string"==typeof e)return Lt(e,t);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Lt(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,u=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return i=e.done,e},e:function(e){u=!0,a=e},f:function(){try{i||null==r.return||r.return()}finally{if(u)throw a}}}}function Lt(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=Array(t);r0?supplierAddresses[o]:[],i=document.createElement("table");i.classList.add(flagAddress);var u=document.createElement("thead"),c=document.createElement("tr"),s=document.createElement("th");s.classList.add(flagPostcode),s.textContent="Postcode";var f=document.createElement("th");f.classList.add(flagAddressLine1),f.textContent="Address Line 1";var d=document.createElement("th");d.classList.add(flagAddressLine2),d.textContent="Address Line 2";var p=document.createElement("th");p.classList.add(flagCity),p.textContent="City";var y=document.createElement("th");y.classList.add(flagCounty),y.textContent="County";var h=document.createElement("th");h.classList.add(flagRegion),h.textContent="Region";var v=document.createElement("th");v.classList.add(flagActive),v.textContent="Active";var g=document.createElement("th");g.classList.add(flagAdd);var b=document.createElement("button");b.classList.add(flagAdd),b.textContent="+",g.appendChild(b),c.appendChild(s),c.appendChild(f),c.appendChild(d),c.appendChild(p),c.appendChild(y),c.appendChild(h),c.appendChild(v),c.appendChild(g),u.appendChild(c),i.appendChild(u);var m=document.createElement("tbody"),k=yt.getListFromDict(regions);a.forEach((function(e,t){r.addRowSupplierAddress(m,e,k)})),i.appendChild(m);var P=l.getCellFromElement(t),S=P.cloneNode(!1);S.appendChild(i),n.replaceChild(S,P),console.log("tblAddresses: ",i),this.hookupAddressFields()}},{key:"addRowSupplierAddress",value:function(e,t,r){console.log("addRowSupplierAddress: ",t);var n=document.createElement("td");n.classList.add(flagPostcode);var o=document.createElement("textarea");o.classList.add(flagPostcode),l.setElementValuesCurrentAndPrevious(o,t[flagPostcode]),n.appendChild(o);var a=document.createElement("td");a.classList.add(flagAddressLine1);var i=document.createElement("textarea");i.classList.add(flagAddressLine1),l.setElementValuesCurrentAndPrevious(i,t[flagAddressLine1]),a.appendChild(i);var u=document.createElement("td");u.classList.add(flagAddressLine2);var c=document.createElement("textarea");c.classList.add(flagAddressLine2),l.setElementValuesCurrentAndPrevious(c,t[flagAddressLine2]),u.appendChild(c);var s=document.createElement("td");s.classList.add(flagCity);var f=document.createElement("textarea");f.classList.add(flagCity),l.setElementValuesCurrentAndPrevious(f,t[flagCity]),s.appendChild(f);var d=document.createElement("td");d.classList.add(flagCounty);var p=document.createElement("textarea");p.classList.add(flagCounty),l.setElementValuesCurrentAndPrevious(p,t[flagCounty]),d.appendChild(p);var y=t[flagRegion];y||(y=nn({},attrIdRegion,""));var h=document.createElement("td");h.classList.add(flagRegion),l.setElementAttributesValuesCurrentAndPrevious(h,y[attrIdRegion]);var v,g,b=document.createElement("select");b.classList.add(flagRegion),r.forEach((function(e){v=st.getOptionJsonFromObjectJson(e),g=l.createOption(v),b.appendChild(g)})),l.setElementValuesCurrentAndPrevious(b,y[attrIdRegion]),h.appendChild(b);var m=document.createElement("td");m.classList.add(flagActive);var k=document.createElement("input");k.classList.add(flagActive),k.type="checkbox",l.setElementValuesCurrentAndPrevious(k,t[flagActive]),m.appendChild(k);var P=document.createElement("td");P.classList.add(flagDelete);var S=document.createElement("button");S.classList.add(flagDelete),S.textContent="x",P.appendChild(S);var C=document.createElement("tr");C.setAttribute(attrIdSupplierAddress,t[attrIdSupplierAddress]),C.appendChild(n),C.appendChild(a),C.appendChild(u),C.appendChild(s),C.appendChild(d),C.appendChild(h),C.appendChild(m),C.appendChild(P),e.appendChild(C)}},{key:"hookupAddressPostcodeInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagAddress+" textarea."+flagPostcode)}},{key:"hookupAddressLine1Inputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagAddress+" textarea."+flagAddressLine1)}},{key:"hookupAddressLine2Inputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagAddress+" textarea."+flagAddressLine2)}},{key:"hookupAddressCityInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagAddress+" textarea."+flagCity)}},{key:"hookupAddressCountyInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagAddress+" textarea."+flagCounty)}},{key:"hookupAddressRegionDdls",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagAddress+" select."+flagRegion)}},{key:"hookupAddressActiveCheckboxes",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagAddress+" input."+flagActive,(function(e,t){var r=t.closest("tr"),n=r.getAttribute(attrIdSupplierAddress);l.setElementAttributeValueCurrent(r,n);var o=r.closest(idTableMain+" > tbody > tr").querySelectorAll("td."+flagAddress+" input."+flagActive);t.checked&&o.forEach((function(e){e!=t&&l.setElementValueCurrent(e,!1)}))}))}},{key:"hookupAddressDeleteButtons",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagAddress+" button."+flagDelete,(function(t,r){l.getRowFromElement(r).classList.add(flagDelete);var n=document.createElement("button");n.classList.add(flagAdd),n.textContent="+",r.replaceWith(n),e.hookupAddressUndeleteButtons()}))}},{key:"hookupAddressUndeleteButtons",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagAddress+" td button."+flagAdd,(function(t,r){l.getRowFromElement(r).classList.remove(flagDelete);var n=document.createElement("button");n.classList.add(flagDelete),n.textContent="x",r.replaceWith(n),e.hookupAddressDeleteButtons()}))}},{key:"hookupAddressAddButtons",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagAddress+" th button."+flagAdd,(function(t,r){var n=r.closest(idTableMain+" > tbody > tr"),o=n.getAttribute(attrIdSupplier),a=n.querySelectorAll("td."+flagAddress+" input."+flagActive+":checked").length>0,i=n.querySelectorAll("td."+flagAddress+" td."+flagAddress).length,u=nn(nn(nn(nn(nn(nn(nn(nn(nn({},attrIdSupplier,o),attrIdSupplierAddress,-1-i),flagPostcode,""),flagAddressLine1,""),flagAddressLine2,""),flagCity,""),flagCounty,""),attrIdRegion,""),flagActive,!a),c=n.querySelector("td."+flagAddress+" table tbody");if(e.addRowSupplierAddress(c,u,yt.getListFromDict(regions)),!a){var s=n.querySelector("td."+flagAddress);l.setElementAttributeValueCurrent(s,u[attrIdSupplierAddress])}e.hookupAddressFields()}))}},{key:"hookupPhoneNumberInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagPhoneNumber+" textarea")}},{key:"hookupFaxInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagFax+" textarea")}},{key:"hookupEmailInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagEmail+" textarea")}},{key:"hookupWebsiteInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagWebsite+" textarea")}},{key:"hookupActiveCheckboxes",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagActive+" input")}},{key:"leave",value:function(){Zr(t,"leave",this,3)([])}}])}(It);function un(e){return un="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},un(e)}function ln(e,t){for(var r=0;r0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageHome,e)},this.routes[hashPageContact]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageContact,e)},this.routes[hashPageServices]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageServices,e)},this.routes[hashPageAdminHome]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageAdminHome,e)},this.routes[hashPageAccessibilityStatement]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageAccessibilityStatement,e)},this.routes[hashPageDataRetentionSchedule]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageDataRetentionSchedule,e)},this.routes[hashPageLicense]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageLicense,e)},this.routes[hashPagePrivacyPolicy]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPagePrivacyPolicy,e)},this.routes[hashPageStoreManufacturingPurchaseOrders]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreManufacturingPurchaseOrders,e)},this.routes[hashPageStoreProductCategories]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreProductCategories,e)},this.routes[hashPageStoreProductPermutations]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreProductPermutations,e)},this.routes[hashPageStoreProducts]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreProducts,e)},this.routes[hashPageStoreStockItems]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreStockItems,e)},this.routes[hashPageStoreSuppliers]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreSuppliers,e)},this.routes[hashPageStoreSupplierPurchaseOrders]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreSupplierPurchaseOrders,e)},this.initialize()}),[{key:"loadPage",value:function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.getClassPageFromHash(e);this.currentPage=new n(this),this.currentPage.initialize(r),window.addEventListener("beforeunload",(function(){return t.currentPage.leave()}))}},{key:"getClassPageFromHash",value:function(e){var t=this.pages[e];try{return t.module}catch(t){throw console.log("this.pages: ",this.pages),console.error("Page not found:",e),t}}},{key:"initialize",value:function(){window.addEventListener("popstate",this.handlePopState.bind(this))}},{key:"handlePopState",value:function(e){this.loadPageCurrent()}},{key:"loadPageCurrent",value:function(){var e=l.getHashPageCurrent();this.loadPage(e)}},{key:"navigateToHash",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=C.getUrlFromHash(e,r);history.pushState({data:t,params:r},"",e),C.goToUrl(n,t)}},{key:"navigateToUrl",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;(!(arguments.length>2&&void 0!==arguments[2])||arguments[2])&&history.pushState(t,"",e),e=C.parameteriseUrl(e,t),C.goToUrl(e)}}],[{key:"loadPageBodyFromResponse",value:function(e){console.log(e.data),l.loadPageBody(e.data)}}])}();function Hn(e){return Hn="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},Hn(e)}function Mn(e,t){for(var r=0;r{"use strict";(()=>{function e(t){return e="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},e(t)}function t(e,t){for(var n=0;n0)if(r)t=!1;else if("string"!=typeof e[0])t=!1;else for(var n=0;n0)}},{key:"getDataContentType",value:function(t){var r=null,n="";return e.isEmpty(t)||("string"==typeof t?(r=t,n="application/x-www-form-urlencoded; charset=UTF-8"):(r=JSON.stringify(t),n="application/json; charset=UTF-8")),{Data:r,ContentType:n}}},{key:"arrayContainsItem",value:function(t,r){var n=!1;if(!e.isEmpty(t)&&!e.isEmpty(r))if(t[0]instanceof jQuery){for(var o=0;o=0;--a){var i=this.tryEntries[a],l=i.completion;if("root"===i.tryLoc)return o("end");if(i.tryLoc<=this.prev){var u=n.call(i,"catchLoc"),c=n.call(i,"finallyLoc");if(u&&c){if(this.prev=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),V(r),g}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;V(r)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:j(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),g}},t}function b(e,t,r,n,o,a,i){try{var l=e[a](i),u=l.value}catch(e){return void r(e)}l.done?t(u):Promise.resolve(u).then(n,o)}function k(e){return function(){var t=this,r=arguments;return new Promise((function(n,o){var a=e.apply(t,r);function i(e){b(a,n,o,i,l,"next",e)}function l(e){b(a,n,o,i,l,"throw",e)}i(void 0)}))}}function C(e,t){for(var r=0;r1&&void 0!==c[1]?c[1]:"GET",o=c.length>2&&void 0!==c[2]?c[2]:null,a=c.length>3&&void 0!==c[3]?c[3]:null,i=e.getUrlFromHash(r,a),l={method:n,headers:{"Content-Type":"application/json","X-CSRFToken":e.getCsrfToken()}},!o||"POST"!==n&&"PUT"!==n&&"PATCH"!==n||(l.body=JSON.stringify(o)),console.log("API request:",n,i,o),t.prev=7,t.next=10,fetch(i,l);case 10:if((u=t.sent).ok){t.next=13;break}throw new Error("HTTP error! status: ".concat(u.status));case 13:return t.next=15,u.json();case 15:return t.abrupt("return",t.sent);case 18:throw t.prev=18,t.t0=t.catch(7),console.error("API request failed:",t.t0),t.t0;case 22:case"end":return t.stop()}}),t,null,[[7,18]])}))),function(e){return A.apply(this,arguments)})},{key:"getUrlFromHash",value:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;null==t&&(t=hashPageHome),console.log("getUrlFromHash:"),console.log("base url: "+_pathHost+"\nhash: "+t+"\nparams: "+r);var n=e.parameteriseUrl(_pathHost+t,r);return console.log("url: "+n),n}},{key:"parameteriseUrl",value:function(e,t){return t&&(e+="?"+new URLSearchParams(t).toString()),e}},{key:"goToUrl",value:function(e){window.location.href=e}},{key:"goToHash",value:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=e.getUrlFromHash(t,r);e.goToUrl(n)}},{key:"loginUser",value:(I=k(m().mark((function t(){var r;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(r={})[flagCallback]=u.getHashPageCurrent(),t.next=4,e.request(hashPageUserLogin,"POST",r);case 4:return t.abrupt("return",t.sent);case 5:case"end":return t.stop()}}),t)}))),function(){return I.apply(this,arguments)})},{key:"getCategories",value:(T=k(m().mark((function t(){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreProductCategory);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return T.apply(this,arguments)})},{key:"getCategoriesByFilters",value:(w=k(m().mark((function t(r){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreProductCategories,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return w.apply(this,arguments)})},{key:"saveCategories",value:(O=k(m().mark((function t(r,n,o){var a;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=u.convertForm2JSON(n),a[flagProductCategory]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreProductCategory,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return O.apply(this,arguments)})},{key:"getProducts",value:(E=k(m().mark((function t(){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreProduct);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return E.apply(this,arguments)})},{key:"getProductsByFilters",value:(S=k(m().mark((function t(r){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreProducts,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return S.apply(this,arguments)})},{key:"saveProducts",value:(P=k(m().mark((function t(r,n,o){var a;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=u.convertForm2JSON(n),a[flagProduct]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreProduct,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return P.apply(this,arguments)})},{key:"getProductPermutations",value:(b=k(m().mark((function t(){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreProductPermutation);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return b.apply(this,arguments)})},{key:"getProductPermutationsByFilters",value:(v=k(m().mark((function t(r){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreProductPermutations,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return v.apply(this,arguments)})},{key:"saveProductPermutations",value:(g=k(m().mark((function t(r,n,o){var a;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=u.convertForm2JSON(n),a[flagProductPermutation]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreProductPermutation,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return g.apply(this,arguments)})},{key:"getStockItems",value:(h=k(m().mark((function t(){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreStockItem);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return h.apply(this,arguments)})},{key:"getStockItemsByFilters",value:(y=k(m().mark((function t(r){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreStockItems,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return y.apply(this,arguments)})},{key:"saveStockItems",value:(p=k(m().mark((function t(r,n,o){var a;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=u.convertForm2JSON(n),a[flagStockItem]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreStockItem,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return p.apply(this,arguments)})},{key:"getSuppliers",value:(f=k(m().mark((function t(){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreSupplier);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return f.apply(this,arguments)})},{key:"getSuppliersByFilters",value:(d=k(m().mark((function t(r){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreSuppliers,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return d.apply(this,arguments)})},{key:"saveSuppliers",value:(s=k(m().mark((function t(r,n,o){var a;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=u.convertForm2JSON(n),a[flagSupplier]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreSupplier,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return s.apply(this,arguments)})},{key:"getSupplierPurchaseOrders",value:(c=k(m().mark((function t(){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreSupplierPurchaseOrder);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return c.apply(this,arguments)})},{key:"getSupplierPurchaseOrdersByFilters",value:(l=k(m().mark((function t(r){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreSupplierPurchaseOrders,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return l.apply(this,arguments)})},{key:"saveSupplierPurchaseOrders",value:(i=k(m().mark((function t(r,n,o){var a;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=u.convertForm2JSON(n),a[flagSupplierPurchaseOrder]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreSupplierPurchaseOrder,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return i.apply(this,arguments)})},{key:"getManufacturingPurchaseOrders",value:(a=k(m().mark((function t(){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.request(hashGetStoreManufacturingPurchaseOrder);case 2:return t.abrupt("return",t.sent);case 3:case"end":return t.stop()}}),t)}))),function(){return a.apply(this,arguments)})},{key:"getManufacturingPurchaseOrdersByFilters",value:(o=k(m().mark((function t(r){return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:e.goToHash(hashPageStoreManufacturingPurchaseOrders,r);case 1:case"end":return t.stop()}}),t)}))),function(e){return o.apply(this,arguments)})},{key:"saveManufacturingPurchaseOrders",value:(n=k(m().mark((function t(r,n,o){var a;return m().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return(a={})[flagFormFilters]=u.convertForm2JSON(n),a[flagManufacturingPurchaseOrder]=r,a[flagComment]=o,t.next=6,e.request(hashSaveStoreManufacturingPurchaseOrder,"POST",a);case 6:return t.abrupt("return",t.sent);case 7:case"end":return t.stop()}}),t)}))),function(e,t,r){return n.apply(this,arguments)})}],r&&C(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,r,n,o,a,i,l,c,s,d,f,p,y,h,g,v,b,P,S,E,O,w,T,I,A}();function E(e){return E="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},E(e)}function O(e,t){for(var r=0;r at "+r[keyPostcode]+"",document.querySelectorAll(idOverlayInfoBilling).css("display","none"),document.querySelectorAll(idOverlayInfoBilling).querySelector("form").classList.add(flagSubmitted)}else document.querySelectorAll(idContainerInfoDelivery).querySelector("div").innerHTML=""+r[keyNameFull]+" at "+r[keyPostcode]+"",document.querySelectorAll(idOverlayInfoDelivery).css("display","none"),document.querySelectorAll(idOverlayInfoDelivery).querySelector("form").classList.add(flagSubmitted)}},{key:"convertFormBilling2JSON",value:function(e,t){var r;r=document.querySelectorAll(t).querySelector("form"),r=document.querySelectorAll(idOverlayInfoDelivery).querySelector("form"),console.log("converting billing form to json\nform ID: "+r.id),e[flagForm]=convertForm2JSON(r);var n=[keyNameFull,keyPhoneNumber,keyPostcode,keyAddress1,keyAddress2,keyCity,keyCounty];for(var o in console.log("ajaxData:"),console.log(e),e[flagForm][keyInfoIdentical]=getElementValueCurrent(r.querySelector("#"+keyInfoIdentical)),n)t==idOverlayInfoBilling&&e[flagForm][keyInfoIdentical]?e[flagForm][n[o]]=getElementValueCurrent((void 0).querySelector("#"+n[o])):e[flagForm][n[o]]=getElementValueCurrent(r.querySelector("#"+n[o]));return console.log("ajaxData:"),console.log(e),e}},{key:"hookupButtonCheckoutSession",value:function(){var e=document.querySelectorAll(idButtonCheckout);e.classList.remove(flagInitialised),f.initialiseEventHandler(idButtonCheckout,flagInitialised,(function(){e.removeEventListener("click"),e.addEventListener("click",(function(e){var t=g.getLocalStorage(keyBasket),r={};r[keyBasket]=t,r=convertFormBilling2JSON(r,idOverlayInfoDelivery),(r=convertFormBilling2JSON(r,idOverlayInfoBilling))[key_code_currency]=getCurrencySelected(),ajaxJSONData("checkout session",mapHashToController(hashPageStoreCheckout),r,handleResponseCheckout,!1)}))}))}},{key:"handleResponseCheckout",value:function(e){window.location.href=e.data[keyUrlCheckout]}},{key:"hookupButtonFormBillingCopy",value:function(){f.initialiseEventHandler(idButtonFormBillingCopy,flagInitialised,(function(){document.querySelectorAll(idButtonFormBillingCopy).addEventListener("click",(function(e){var t=[keyNameFull,keyPhoneNumber,keyPostcode,keyAddress1,keyAddress2,keyCity,keyCounty],r=document.querySelectorAll(idOverlayInfoBilling).querySelector("form"),n=document.querySelectorAll(idOverlayInfoDelivery).querySelector("form");for(var o in t)r.querySelector("#"+t[o]).value=getElementValueCurrent(n.querySelector("#"+t[o]))}))}))}},{key:"leave",value:function(){!function(e,t,r){var n=Ge(We(e.prototype),"leave",r);return"function"==typeof n?function(e){return n.apply(r,e)}:n}(t,0,this)([])}}])}(V);function $e(e){return $e="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},$e(e)}function Ze(e,t){for(var r=0;r3&&void 0!==arguments[3]?arguments[3]:null;return{text:e[t],value:e[r],selected:e[r]==n}}},{key:"getOptionJsonFromObjectJson",value:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=t[flagNameAttrOptionText],o=t[flagNameAttrOptionValue];return console.log({objectJson:t,keyText:n,keyValue:o}),e.getOptionJsonFromObjectJsonAndKeys(t,n,o,r)}},{key:"getObjectText",value:function(e){return e[e[flagNameAttrOptionText]]}}])}();function dt(e){return dt="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},dt(e)}function ft(e,t){for(var r=0;r1&&void 0!==arguments[1]&&arguments[1];if(arguments.length>0&&void 0!==arguments[0]&&arguments[0]){var o=this.getLocalStoragePage()[flagFormFilters],a=this.getFormFilters(),i=u.convertForm2JSON(a);n.areEqualDicts(o,i)||this.callFilterTableContent(o)}else Ot(t,"sharedInitialize",this,3)([]),this.hookupFilters(),this.hookupButtonsAddSaveCancel(),this.hookupTableMain(),T.hookup((function(){r?e.saveRecordsTableDirtySinglePageApp():e.saveRecordsTableDirty()}))}},{key:"hookupFilters",value:function(){if(this.constructor===t)throw new Error("Subclass of TableBasePage must implement method hookupFilters().")}},{key:"sharedHookupFilters",value:function(){this.hookupButtonApplyFilters()}},{key:"hookupFilterActive",value:function(){this.hookupFilter(flagActive)}},{key:"hookupFilter",value:function(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e,r){return t.isDirtyFilter(r)},n=idFormFilters+" ."+e;this.hookupEventHandler("change",n,r)}},{key:"hookupFilterIsNotEmpty",value:function(){this.hookupFilter(flagIsNotEmpty)}},{key:"hookupButtonApplyFilters",value:function(){var e=this;this.hookupEventHandler("click",idButtonApplyFilters,(function(t,r){t.stopPropagation(),e.getAndLoadFilteredTableContent()}))}},{key:"getAndLoadFilteredTableContent",value:function(){var e=this.getFormFilters(),t=u.convertForm2JSON(e);this.leave(),this.callFilterTableContent(t).catch((function(e){return console.error("Error:",e)}))}},{key:"getFormFilters",value:function(){return document.querySelector(idFormFilters)}},{key:"callbackLoadTableContent",value:function(e){t.getTableMain().querySelector("tbody").querySelectorAll("tr").forEach((function(e){e.remove()}));var r=e.data[flagRows];!n.isEmpty(r)&&r.every((function(e){return e.hasOwnProperty("display_order")}))&&(r=r.sort((function(e,t){return e.display_order-t.display_order}))),r.forEach(this.loadRowTable.bind(this)),this.hookupTableMain()}},{key:"loadRowTable",value:function(e){throw new Error("Subclass of TableBasePage must implement method loadRowTable().")}},{key:"getAndLoadFilteredTableContentSinglePageApp",value:function(){var e=this,t=this.getFormFilters(),r=u.convertForm2JSON(t);this.callFilterTableContent(r).then((function(t){console.log("Table data received:",t),e.callbackLoadTableContent(t)})).catch((function(e){return console.error("Error:",e)}))}},{key:"hookupButtonsAddSaveCancel",value:function(){this.hookupButtonAddRowTable(),this.hookupButtonSave(),this.hookupButtonCancel(),this.toggleShowButtonsSaveCancel(!1)}},{key:"saveRecordsTableDirty",value:function(){var e=this,t=this.getTableRecords(!0);if(0!=t.length){var r=this.getFormFilters(),n=u.getElementValueCurrent(document.querySelector(idTextareaConfirm));this.callSaveTableContent(t,r,n).then((function(t){t[flagStatus]==flagSuccess?(console.log("Records saved!"),console.log("Data received:",t),e.getAndLoadFilteredTableContent()):(console.log("error: ",t[flagMessage]),mt.show(t[flagMessage]))})).catch((function(e){return console.error("Error:",e)}))}else mt.show("No records to save")}},{key:"getTableRecords",value:function(){var e,t=this,r=arguments.length>0&&void 0!==arguments[0]&&arguments[0],n=[];return document.querySelectorAll(idTableMain+" > tbody > tr").forEach((function(o){r&&!o.classList.contains(flagDirty)||(e=t.getJsonRow(o),n.push(e))})),n}},{key:"getJsonRow",value:function(e){throw new Error("Subclass of TableBasePage must implement method getJsonRow().")}},{key:"saveRecordsTableDirtySinglePageApp",value:function(){var e=this,t=this.getTableRecords(!0);if(0!=t.length){var r=this.getFormFilters(),n=u.getElementValueCurrent(document.querySelector(idTextareaConfirm));this.callSaveTableContent(t,r,n).then((function(t){t[flagStatus]==flagSuccess?(console.log("Records saved!"),console.log("Data received:",t),e.callbackLoadTableContent(t)):(console.log("error: ",t[flagMessage]),mt.show(t[flagMessage]))})).catch((function(e){return console.error("Error:",e)}))}else mt.show("No records to save")}},{key:"hookupButtonCancel",value:function(){f.initialiseEventHandler(idFormFilters+" button."+flagCancel,flagInitialised,(function(e){e.addEventListener("click",(function(e){e.stopPropagation(),getAndLoadFilteredTableContent()})),e.classList.add(flagCollapsed)}))}},{key:"hookupButtonAddRowTable",value:function(){var e=this;this.hookupEventHandler("click",idFormFilters+" button."+flagAdd,(function(t,r){t.stopPropagation();var n=document.querySelector(idTableMain+" tbody"),o=_rowBlank.cloneNode(!0);o.classList.remove(flagInitialised),o.querySelectorAll("."+flagInitialised).forEach((function(e){e.classList.remove(flagInitialised)}));var a=document.querySelectorAll(idTableMain+" > tbody > tr").length;o.setAttribute(e.constructor.attrIdRowObject,-1-a),e.initialiseRowNew(o),n.appendChild(o),e.hookupTableMain()}))}},{key:"initialiseRowNew",value:function(e){if(this.constructor===t)throw new Error("Subclass of TableBasePage must implement method initialiseRowNew().");e.classList.remove(flagRowNew)}},{key:"hookupTableMain",value:function(){var e=this;if(this.constructor===t)throw new Error("Must implement hookupTableMain() method.");f.initialiseEventHandler(idTableMain,flagInitialised,(function(t){e.cacheRowBlank()}))}},{key:"cacheRowBlank",value:function(){var e=idTableMain+" tbody tr."+flagRowNew,t=document.querySelector(e);console.log("row blank temp: ",t),_rowBlank=t.cloneNode(!0),document.querySelectorAll(e).forEach((function(e){e.remove()}))}},{key:"hookupSlidersDisplayOrderTable",value:function(){var e=idTableMain+" tbody tr td."+flagDisplayOrder+" input."+flagSlider+"."+flagDisplayOrder;this.hookupChangeHandlerTableCells(e)}},{key:"hookupChangeHandlerTableCells",value:function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e,r){t.handleChangeNestedElementCellTable(e,r)};f.initialiseEventHandler(e,flagInitialised,(function(e){e.addEventListener("change",(function(t){r(t,e)})),r(null,e)}))}},{key:"handleChangeNestedElementCellTable",value:function(e,t){var r=this.getAllIsDirtyRowsInParentTree(t),n=t.classList.contains(flagDirty),o=u.updateAndCheckIsElementDirty(t);if(console.log({isDirtyElement:o,wasDirtyElement:n,wasDirtyParentRows:r}),o!=n){var a=u.getCellFromElement(t);u.setElementAttributeValueCurrent(a,u.getElementValueCurrent(t)),this.toggleShowButtonsSaveCancel(o),this.cascadeChangedIsDirtyNestedElementCellTable(t,o,r)}}},{key:"getAllIsDirtyRowsInParentTree",value:function(e){for(var t,r=[],n=e;n;)n.matches("tr")&&(t=n.classList.contains(flagDirty),r.push(t)),n=n.parentElement;return r}},{key:"cascadeChangedIsDirtyNestedElementCellTable",value:function(e,t,r){if(!n.isEmpty(r)){var o=u.getCellFromElement(e),a=t||u.hasDirtyChildrenNotDeletedContainer(i);u.handleDirtyElement(o,a);var i=u.getRowFromElement(o),l=a||u.hasDirtyChildrenNotDeletedContainer(i),c=r.pop();console.log({isDirtyRow:l,wasDirtyRow:c}),l!=c&&(u.handleDirtyElement(i,l),this.toggleShowButtonsSaveCancel(l),this.cascadeChangedIsDirtyNestedElementCellTable(i.parentElement,l,r))}}},{key:"hookupChangeHandlerTableCellsWhenNotCollapsed",value:function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e,r){r.classList.contains(flagCollapsed)||t.handleChangeNestedElementCellTable(e,r)};this.hookupEventHandler("change",e,r)}},{key:"hookupTextareasCodeTable",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" tbody tr td."+flagCode+" textarea")}},{key:"hookupTextareasNameTable",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" tbody tr td."+flagName+" textarea")}},{key:"hookupTextareasDescriptionTable",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" tbody tr td."+flagDescription+" textarea")}},{key:"hookupInputsActiveTable",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" > tbody > tr > td."+flagActive+' input[type="checkbox"]')}},{key:"hookupButtonsRowDelete",value:function(e,t){var r=this;this.hookupEventHandler("click",e,(function(n,o){r.handleClickButtonRowDelete(n,o,e,t)}))}},{key:"handleClickButtonRowDelete",value:function(e,t,r,n){u.getRowFromElement(t).classList.add(flagDelete);var o=document.createElement("button");o.classList.add(flagAdd),o.textContent="+",t.replaceWith(o),this.hookupButtonsRowUndelete(r,n)}},{key:"hookupButtonsRowUndelete",value:function(e,t){var r=this;this.hookupEventHandler("click",t,(function(n,o){r.handleClickButtonRowUndelete(n,o,e,t)}))}},{key:"handleClickButtonRowUndelete",value:function(e,t,r,n){u.getRowFromElement(t).classList.add(flagDelete);var o=document.createElement("button");o.classList.add(flagAdd),o.textContent="+",t.replaceWith(o),this.hookupButtonsRowDelete(r,n)}},{key:"hookupTdsAccessLevel",value:function(){var e=idTableMain+" tbody td."+flagAccessLevel;this.hookupTableCellDdlPreviews(e,yt.getListFromDict(accessLevels))}},{key:"hookupTableCellDdlPreviews",value:function(e,t){var r=this,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(e){r.hookupTableCellDdls(e)},o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(e,t){r.handleChangeTableCellDdl(e,t)};this.hookupEventHandler("click",e,(function(a,i){r.handleClickTableCellDdlPreview(a,i,t,e,(function(e){n(e,(function(e,t){o(e,t)}))}))}))}},{key:"hookupTableCellDdls",value:function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e,r){t.handleChangeTableCellDdl(e,r)};this.hookupEventHandler("change",e,(function(e,t){r(e,t)}))}},{key:"handleClickTableCellDdlPreview",value:function(e,t,r,n){var o=this,a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:function(e){o.hookupTableCellDdls(e)};if(!t.querySelector("select")){console.log("click table cell ddl preview");var i=t.cloneNode(!0);t.parentNode.replaceChild(i,t);var l=u.getElementAttributeValueCurrent(i);i.innerHTML="";var c,s,d=document.createElement("select");u.setElementValuesCurrentAndPrevious(d,l),console.log({optionObjectList:r,cellSelector:n}),s=u.createOption(null),d.appendChild(s),r.forEach((function(e){c=st.getOptionJsonFromObjectJson(e,l),s=u.createOption(c),d.appendChild(s)})),i.appendChild(d),a(n+" select")}}},{key:"handleChangeTableCellDdl",value:function(e,t){var r=u.getRowFromElement(t),n=u.getCellFromElement(t);console.log("td: ",n);var o=u.hasDirtyChildrenNotDeletedContainer(r),a=t.classList.contains(flagDirty),i=u.updateAndCheckIsElementDirty(t);if(console.log("isDirtyElement: ",i),console.log("wasDirtyElement: ",a),i!=a){u.handleDirtyElement(n,i);var l=t.options[t.selectedIndex];u.setElementAttributeValueCurrent(n,l.value);var c=u.hasDirtyChildrenNotDeletedContainer(r);if(console.log("isNowDirtyRow: ",c),console.log("wasDirtyRow: ",o),c!=o){u.handleDirtyElement(r,c);var s=this.getTableRecords(!0),d=s.length>0;console.log("dirty records:",s),console.log("existsDirtyRecord:",d),this.toggleShowButtonsSaveCancel(d)}}}},{key:"hookupTableCellDDlPreviewsWhenNotCollapsed",value:function(e,t){var r=this,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(e,t){r.hookupTableCellDdls(e,t)};this.hookupEventHandler("click",e,(function(o,a){var i=a.querySelector("div");i&&!i.classList.contains(flagCollapsed)&&r.handleClickTableCellDdlPreview(o,a,t,e,(function(e,t){n(e,t)}))}))}},{key:"hookupProductCategoryDdls",value:function(e){var t=this;this.hookupChangeHandlerTableCells(e,(function(e,r){t.handleChangeProductCategoryDdl(e,r)}))}},{key:"handleChangeProductCategoryDdl",value:function(e,t){this.handleChangeTableCellDdl(e,t);var r=u.getElementValueCurrent(t),n=u.getRowFromElement(t);n.querySelector("td."+flagProduct).dispatchEvent(new Event("click"));var o,a,i=n.querySelector("td."+flagProduct+" select");i.innerHTML="",i.appendChild(u.createOption(null)),yt.getListFromDict(products).forEach((function(e){"0"!=r&&e[attrIdProductCategory]!=r||(o=st.getOptionJsonFromObjectJson(e),a=u.createOption(o),i.appendChild(a))})),this.handleChangeTableCellDdl(e,i)}},{key:"hookupFieldsProductPermutationVariation",value:function(){this.hookupPreviewsProductPermutationVariation(),this.hookupDdlsProductPermutationVariation(),this.hookupDdlsProductPermutationVariationType(),this.hookupButtonsProductPermutationVariationAddDelete()}},{key:"hookupPreviewsProductPermutationVariation",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagProductVariations,(function(t,r){return e.handleClickProductPermutationVariationsPreview(t,r)}))}},{key:"handleClickProductPermutationVariationsPreview",value:function(e,t){var r=this,o=t.querySelector("table."+flagProductVariations);if(n.isEmpty(o)){console.log("click product permutation variations preview"),this.toggleColumnCollapsed(flagProductVariations,!1);var a=this.getElementProductVariations(t);(o=document.createElement("table")).classList.add(flagProductVariations);var i=document.createElement("thead"),l=document.createElement("tr"),u=document.createElement("th");u.classList.add(flagProductVariationType),u.textContent="Type";var c=document.createElement("th");c.classList.add(flagProductVariation),c.textContent="Name";var s=document.createElement("button");s.classList.add(flagAdd),s.textContent="+";var d=document.createElement("th");d.classList.add(flagAdd),d.appendChild(s),l.appendChild(u),l.appendChild(c),l.appendChild(d),i.appendChild(l),o.appendChild(i);var f=document.createElement("tbody");console.log("variations:",a),n.isEmpty(a)||a.forEach((function(e,t){r.addProductPermutationVariationRow(f,e)})),o.appendChild(f);var p=t.closest(idTableMain+" tbody tr td."+flagProductVariations);p.innerHTML="",p.appendChild(o),console.log("tblVariations: ",o),this.hookupFieldsProductPermutationVariation()}}},{key:"toggleColumnCollapsed",value:function(e,t){this.toggleColumnHasClassnameFlag(e,t,flagCollapsed)}},{key:"toggleColumnHeaderCollapsed",value:function(e,t){this.toggleColumnHasClassnameFlag(e,t,flagCollapsed)}},{key:"getElementProductVariations",value:function(e){var t,r,o,a=e.getAttribute(attrValueCurrent),i=[];return n.isEmpty(a)||(a=a.split(",")).forEach((function(e){2==(t=e.split(":")).length?(console.log("parts: ",t),o=productVariationTypes[t[0].trim()],r=productVariations[t[1].trim()],i.push(kt(kt({},flagProductVariationType,o),flagProductVariation,r))):console.log("error: invalid variation: ",e)})),i}},{key:"addProductPermutationVariationRow",value:function(e,t){var r,n,o,a,i,l,c,s=Object.keys(productVariations),d=Object.keys(productVariationTypes),f=e.querySelectorAll("select."+flagProductVariationType),p=new Set,y=0!=t[attrIdProductVariationType];if(f.forEach((function(e){c=u.getElementValueCurrent(e),p.add(c)})),0!=(d=d.filter((function(e){return!p.has(e)}))).length){y&&(s=s.filter((function(e){return!p.has(productVariations[e][attrIdProductVariationType])}))),console.log("permutationVariation: ",t);var h=t[flagProductVariation],g=t[flagProductVariationType],v=document.createElement("td");v.classList.add(flagProductVariationType),u.setElementAttributesValuesCurrentAndPrevious(v,g[attrIdProductVariationType]);var m=document.createElement("select");m.classList.add(flagProductVariationType),u.setElementAttributesValuesCurrentAndPrevious(m,g[attrIdProductVariationType]),o=u.createOption(null),console.log("optionProductVariationType: ",o),m.appendChild(o),d.forEach((function(e){r=productVariationTypes[e],n=st.getOptionJsonFromObjectJson(r,g[attrIdProductVariationType]),o=u.createOption(n),console.log("optionProductVariationType: ",o),m.appendChild(o)}));var b=document.createElement("td");b.classList.add(flagProductVariation),u.setElementAttributesValuesCurrentAndPrevious(b,h[attrIdProductVariation]);var k=document.createElement("select");k.classList.add(flagProductVariation),u.setElementAttributesValuesCurrentAndPrevious(k,h[attrIdProductVariation]),l=u.createOption(null),console.log("optionProductVariation: ",l),k.appendChild(l),s.forEach((function(e){a=productVariations[e],i=st.getOptionJsonFromObjectJson(a,h[attrIdProductVariation]),l=u.createOption(i),console.log("optionProductVariation: ",l),k.appendChild(l)}));var C=document.createElement("td");C.classList.add(flagDelete);var P=document.createElement("button");P.classList.add(flagDelete),P.textContent="x";var S=document.createElement("tr");S.classList.add(flagProductVariation),v.appendChild(m),S.appendChild(v),b.appendChild(k),S.appendChild(b),C.appendChild(P),S.appendChild(C),e.appendChild(S)}}},{key:"hookupDdlsProductPermutationVariation",value:function(){this.hookupTableCellDdls(idTableMain+" td."+flagProductVariations+" td."+flagProductVariation)}},{key:"hookupDdlsProductPermutationVariationType",value:function(){this.hookupTableCellDdls(idTableMain+" td."+flagProductVariations+" td."+flagProductVariationType)}},{key:"hookupButtonsProductPermutationVariationAddDelete",value:function(){var e=this,t=idTableMain+" td."+flagProductVariations+" tr."+flagProductVariation+" button",r=t+"."+flagDelete,n=t+"."+flagAdd;this.hookupButtonsRowDelete(r,n,(function(t,r){e.handleClickButtonRowDelete(t,r),e.updateProductPermutationVariations(r)})),this.hookupButtonsRowUndelete(r,n),this.hookupButtonsProductPermutationVariationAdd()}},{key:"hookupButtonsProductPermutationVariationAdd",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagProductVariations+" button."+flagAdd,(function(t,r){e.handleClickButtonProductPermutationVariationAdd(t,r)}))}},{key:"handleClickButtonProductPermutationVariationAdd",value:function(e,r){var n=r.closest("td."+flagProductVariations).querySelector("tbody"),o=t.createOptionUnselectedProductVariation();this.addProductPermutationVariationRow(n,o),this.hookupFieldsProductPermutationVariation()}},{key:"updateProductPermutationVariations",value:function(e){var t=e.closest("td."+flagProductVariations),r=this.getProductPermutationVariationsText(t);t.setAttribute(attrValueCurrent,r),u.isElementDirty(t)}},{key:"getProductPermutationVariationsText",value:function(e){var t,r,n,o,a=e.querySelectorAll("tr"),i="";return a.forEach((function(e,a){t=e.querySelector("td select."+flagProductVariationType),r=e.querySelector("td select."+flagProductVariation),n=t.getAttribute(attrValueCurrent),o=r.getAttribute(attrValueCurrent),i+=n+":"+o+","})),i}},{key:"hookupCurrencyFields",value:function(){this.hookupTableCellDdlPreviews(idTableMain+" td."+flagCurrency,yt.getListFromDict(currencies))}},{key:"leave",value:function(){if(this.constructor===t)throw new Error("Must implement leave() method.");Ot(t,"leave",this,3)([]);var e=this.getFormFilters(),r={};r[flagFormFilters]=u.convertForm2JSON(e),this.setLocalStoragePage(r)}},{key:"toggleColumnHasClassnameFlag",value:function(e,r,n){var o=t.getTableMain(),a=o.querySelector("th."+e),i=a.classList.contains(n);r!=i&&(u.toggleElementHasClassnameFlag(a,r,n),o.querySelectorAll("td."+e).forEach((function(e){u.toggleElementHasClassnameFlag(e,r,n)})))}},{key:"toggleColumnHeaderHasClassnameFlag",value:function(e,r,n){var o=t.getTableMain().querySelector("th."+e);u.toggleElementHasClassnameFlag(o,r,n)}}],[{key:"isDirtyFilter",value:function(e){var t=u.updateAndCheckIsElementDirty(e);if(t){var r=document.querySelector(idTableMain+" tbody");r.querySelectorAll("tr").remove(),r.appendChild(document.createElement('
Press "Apply Filters" to refresh the table.
'))}return t}},{key:"getTableMain",value:function(){return document.querySelector(idTableMain)}},{key:"createOptionUnselectedProductVariation",value:function(){return kt(kt({},flagProductVariationType,kt(kt(kt(kt({},flagNameAttrOptionText,[flagName]),flagNameAttrOptionValue,[attrIdProductVariationType]),flagName,"Select Variation Type"),attrIdProductVariationType,0)),flagProductVariation,kt(kt(kt(kt({},flagNameAttrOptionText,[flagName]),flagNameAttrOptionValue,[attrIdProductVariation]),flagName,"Select Variation"),attrIdProductVariation,0))}}])}(V);function Lt(e){return Lt="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},Lt(e)}function Vt(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(e){if("string"==typeof e)return Ft(e,t);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Ft(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,l=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return i=e.done,e},e:function(e){l=!0,a=e},f:function(){try{i||null==r.return||r.return()}finally{if(l)throw a}}}}function Ft(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=Array(t);r0?manufacturingPurchaseOrderProductLinks[o]:[],i=document.createElement("table");i.classList.add(flagOrderItems);var l=document.createElement("thead"),c=document.createElement("tr"),s=document.createElement("th");s.classList.add(flagDisplayOrder),s.textContent="Display Order";var d=document.createElement("th");d.classList.add(flagProductCategory),d.textContent="Category";var f=document.createElement("th");f.classList.add(flagProduct),f.textContent="Product";var p=document.createElement("th");p.classList.add(flagProductVariations),p.classList.add(flagCollapsed),p.textContent="Variations";var y=document.createElement("th");y.classList.add(flagUnitMeasurementQuantity),y.textContent="Unit Quantity";var h=document.createElement("th");h.classList.add(flagQuantityUsed),h.textContent="Quantity Ordered";var g=document.createElement("th");g.classList.add(flagQuantityProduced),g.textContent="Quantity Received";var v=document.createElement("th");v.classList.add(flagCostTotalLocalVatExcl),v.textContent="Cost Total Local VAT Excl";var m=document.createElement("th");m.classList.add(flagCostTotalLocalVatIncl),m.textContent="Cost Total Local VAT Incl";var b=document.createElement("th");b.classList.add(flagCostUnitLocalVatExcl),b.textContent="Cost Unit Local VAT Excl";var k=document.createElement("th");k.classList.add(flagCostUnitLocalVatIncl),k.textContent="Cost Unit Local VAT Incl";var C=document.createElement("th");C.classList.add(flagLatencyManufacture),C.textContent="Latency Delivery (Days)";var P=document.createElement("th");P.classList.add(flagActive),P.textContent="Active";var S=document.createElement("th");S.classList.add(flagAdd);var E=document.createElement("button");E.classList.add(flagAdd),E.textContent="+",S.appendChild(E),c.appendChild(s),c.appendChild(d),c.appendChild(f),c.appendChild(p),c.appendChild(y),c.appendChild(h),c.appendChild(g),c.appendChild(v),c.appendChild(m),c.appendChild(b),c.appendChild(k),c.appendChild(C),c.appendChild(P),c.appendChild(S),l.appendChild(c),i.appendChild(l);var O=document.createElement("tbody");a.forEach((function(e,t){r.addRowManufacturingPurchaseOrderItem(O,e)})),i.appendChild(O);var w=u.getCellFromElement(t),T=w.cloneNode(!1);T.appendChild(i),n.replaceChild(T,w),console.log("tblOrderItems: ",i),this.hookupOrderItemsFields()}},{key:"addRowManufacturingPurchaseOrderItem",value:function(e,t){console.log("addRowManufacturingPurchaseOrderItem: ",t);var r=document.createElement("td");r.classList.add(flagDisplayOrder);var n=document.createElement("input");n.classList.add(flagDisplayOrder),n.type="number",n.step=1,u.setElementValuesCurrentAndPrevious(n,t[flagDisplayOrder]),r.appendChild(n);var o=document.createElement("td");o.classList.add(flagProductCategory),u.setElementAttributesValuesCurrentAndPrevious(o,t[attrIdProductCategory]);var a=document.createElement("div");a.classList.add(flagProductCategory),a.textContent=t[flagProductCategory],o.appendChild(a);var i=document.createElement("td");i.classList.add(flagProduct),u.setElementAttributesValuesCurrentAndPrevious(i,t[attrIdProductCategory]);var l=document.createElement("div");l.classList.add(flagProduct),l.textContent=t[flagProduct],i.appendChild(l);var c=document.createElement("td");c.classList.add(flagProductVariations),u.setElementAttributesValuesCurrentAndPrevious(c,t[attrIdProductCategory]);var s=document.createElement("div");s.classList.add(flagProductVariations),s.textContent=t[flagProductVariations],c.appendChild(s);var d=document.createElement("td");d.classList.add(flagUnitMeasurementQuantity),u.setElementAttributesValuesCurrentAndPrevious(d,t[attrIdProductCategory]);var f=document.createElement("div");f.classList.add(flagUnitMeasurementQuantity),d.appendChild(f);var p=document.createElement("td");p.classList.add(flagQuantityUsed);var y=document.createElement("input");y.classList.add(flagQuantityUsed),y.type="number",u.setElementAttributesValuesCurrentAndPrevious(y,t[flagQuantityUsed]),p.appendChild(y);var h=document.createElement("td");h.classList.add(flagQuantityProduced);var g=document.createElement("input");g.classList.add(flagQuantityProduced),g.type="number",u.setElementAttributesValuesCurrentAndPrevious(g,t[flagQuantityProduced]),h.appendChild(g);var v=document.createElement("td");v.classList.add(flagCostTotalLocalVatExcl);var m=document.createElement("input");m.classList.add(flagCostTotalLocalVatExcl),m.type="number",m.step=.01,u.setElementAttributesValuesCurrentAndPrevious(m,t[flagCostTotalLocalVatExcl]),v.appendChild(m);var b=document.createElement("td");b.classList.add(flagCostTotalLocalVatIncl);var k=document.createElement("input");k.classList.add(flagCostTotalLocalVatIncl),k.type="number",k.step=.01,u.setElementAttributesValuesCurrentAndPrevious(k,t[flagCostTotalLocalVatIncl]),b.appendChild(k);var C=document.createElement("td");C.classList.add(flagCostUnitLocalVatExcl);var P=document.createElement("div");P.classList.add(flagCostUnitLocalVatExcl),u.setElementValuesCurrentAndPrevious(P,t[flagCostUnitLocalVatExcl]),C.appendChild(P);var S=document.createElement("td");S.classList.add(flagCostUnitLocalVatIncl);var E=document.createElement("div");E.classList.add(flagCostUnitLocalVatIncl),u.setElementValuesCurrentAndPrevious(E,t[flagCostUnitLocalVatIncl]),S.appendChild(E);var O=document.createElement("td");O.classList.add(flagLatencyManufacture);var w=document.createElement("input");w.classList.add(flagLatencyManufacture),w.type="number",w.step=1,u.setElementAttributesValuesCurrentAndPrevious(w,t[flagLatencyManufacture]),O.appendChild(w);var T=document.createElement("td");T.classList.add(flagActive);var I=document.createElement("input");I.classList.add(flagActive),I.type="checkbox",u.setElementValuesCurrentAndPrevious(I,t[flagActive]),T.appendChild(I);var A=document.createElement("td");A.classList.add(flagDelete);var L=document.createElement("button");L.classList.add(flagDelete),L.textContent="x",A.appendChild(L);var V=document.createElement("tr");V.classList.add(flagOrderItems),V.setAttribute(attrIdManufacturingPurchaseOrder,t[attrIdManufacturingPurchaseOrder]),V.setAttribute(attrIdManufacturingPurchaseOrderProductLink,t[attrIdManufacturingPurchaseOrderProductLink]),V.appendChild(r),V.appendChild(o),V.appendChild(i),V.appendChild(c),V.appendChild(d),V.appendChild(p),V.appendChild(h),V.appendChild(v),V.appendChild(b),V.appendChild(C),V.appendChild(S),V.appendChild(O),V.appendChild(T),V.appendChild(A),e.appendChild(V)}},{key:"hookupFieldsOrderItemDisplayOrder",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagDisplayOrder+" input")}},{key:"hookupFieldsOrderItemProductCategory",value:function(){var e=this;this.hookupTableCellDdlPreviews(idTableMain+" td."+flagOrderItems+" td."+flagProductCategory,yt.getListFromDict(productCategories),(function(t){e.hookupProductCategoryDdls(t)}))}},{key:"hookupFieldsOrderItemProduct",value:function(){this.hookupTableCellDdlPreviews(idTableMain+" td."+flagOrderItems+" td."+flagProduct,yt.getListFromDict(products))}},{key:"hookupFieldsOrderItemProductVariations",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagOrderItems+" td."+flagProductVariations,(function(t,r){return e.handleClickProductPermutationVariationsPreview(t,r)}))}},{key:"handleChangeElementProductVariationsSubtableCell",value:function(e,t){this.handleChangeNestedElementCellTable(e,t)}},{key:"hookupFieldsOrderItemUnitQuantity",value:function(){this.hookupTableCellDdlPreviews(idTableMain+" td."+flagOrderItems+" td."+flagUnitMeasurementQuantity,yt.getListFromDict(unitMeasurements))}},{key:"hookupFieldsOrderItemQuantityUsed",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagQuantityUsed+" input")}},{key:"hookupFieldsOrderItemQuantityProduced",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagQuantityProduced+" input")}},{key:"hookupFieldsOrderItemPriceTotalLocalVatExcl",value:function(){var e=this;this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagPriceTotalLocalVatExcl+" input",(function(t,r){e.handleChangeNestedElementCellTable(t,r),e.updateFieldsPriceUnitLocalVatExcl(r)}))}},{key:"hookupFieldsOrderItemPriceTotalLocalVatIncl",value:function(){var e=this;this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagPriceTotalLocalVatIncl+" input",(function(t,r){e.handleChangeNestedElementCellTable(t,r),e.updateFieldsPriceUnitLocalVatIncl(r)}))}},{key:"updateFieldsPriceUnitLocalVatExcl",value:function(e){var t=e.closest("tr."+flagOrderItems),r=t.querySelector("td."+flagPriceTotalLocalVatExcl+" input"),n=u.getElementValueCurrent(r),o=t.querySelector("td."+flagQuantityUsed+" input"),a=u.getElementValueCurrent(o),i=t.querySelector("td."+flagPriceUnitLocalVatExcl+" div"),l=0==a?0:n/a;u.setElementValuesCurrentAndPrevious(i,l);var c=t.closest(idTableMain+" > tbody > tr"),s=c.querySelector("td."+flagPriceTotalLocalVatExcl+" div"),d=c.querySelectorAll("td."+flagOrderItems+" td."+flagPriceTotalLocalVatExcl+" input"),f=Array.from(d).reduce((function(e,t){return e+Number(u.getElementValueCurrent(t))}),0);u.setElementValueCurrent(s,f)}},{key:"updateFieldsPriceUnitLocalVatIncl",value:function(e){var t=e.closest("tr."+flagOrderItems),r=t.querySelector("td."+flagPriceTotalLocalVatIncl+" input"),n=u.getElementValueCurrent(r),o=t.querySelector("td."+flagQuantityUsed+" input"),a=u.getElementValueCurrent(o),i=t.querySelector("td."+flagPriceUnitLocalVatIncl+" div"),l=0==a?0:n/a;u.setElementValuesCurrentAndPrevious(i,l);var c=t.closest(idTableMain+" > tbody > tr"),s=c.querySelector("td."+flagPriceTotalLocalVatIncl+" div"),d=c.querySelectorAll("td."+flagOrderItems+" td."+flagPriceTotalLocalVatIncl+" input"),f=Array.from(d).reduce((function(e,t){return e+Number(u.getElementValueCurrent(t))}),0);u.setElementValueCurrent(s,f)}},{key:"hookupFieldsOrderItemPriceUnitLocalVatExcl",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagPriceUnitLocalVatExcl+" input")}},{key:"hookupFieldsOrderItemPriceUnitLocalVatIncl",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagPriceUnitLocalVatIncl+" input")}},{key:"hookupFieldsOrderItemUnitMeasurementLatencyManufacture",value:function(){this.hookupTableCellDdlPreviews(idTableMain+" td."+flagOrderItems+" td."+flagUnitMeasurementLatencyManufacture,yt.getListFromDict(unitMeasurementsTime))}},{key:"hookupFieldsOrderItemLatencyManufacture",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagLatencyManufacture+" input")}},{key:"hookupFieldsOrderItemActive",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" input."+flagActive)}},{key:"hookupFieldsOrderItemAddDelete",value:function(){var e=idTableMain+" td."+flagOrderItems+" td."+flagOrderItems+" button",t=e+"."+flagDelete,r=e+"."+flagAdd;this.hookupButtonsRowDelete(t,r),this.hookupButtonsRowUndelete(t,r),this.hookupButtonsOrderItemAdd()}},{key:"hookupButtonsOrderItemAdd",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagOrderItems+" th button."+flagAdd,(function(t,r){var n,o=r.closest(idTableMain+" > tbody > tr"),a=o.getAttribute(attrIdManufacturingPurchaseOrder),i=o.querySelectorAll("td."+flagOrderItems+" input."+flagActive+":checked").length>0,l=o.querySelectorAll("td."+flagOrderItems+" td."+flagManufacturingPurchaseOrder).length,u=(rr(rr(rr(rr(rr(rr(rr(rr(rr(rr(n={},attrIdManufacturingPurchaseOrder,a),attrIdManufacturingPurchaseOrderProductLink,-1-l),attrIdProductCategory,0),attrIdProduct,0),flagProductVariations,""),attrIdUnitMeasurementQuantity,0),flagQuantityUsed,""),flagQuantityProduced,""),attrIdUnitMeasurementLatencyManufacture,0),flagLatencyManufacture,""),rr(rr(n,flagDisplayOrder,countManufacturingOrderItems+1),flagActive,!i)),c=o.querySelector("td."+flagOrderItems+" table tbody");e.addRowManufacturingOrderItem(c,u),e.hookupOrderItemsFields()}))}},{key:"leave",value:function(){$t(t,"leave",this,3)([])}}])}(At);function ar(e){return ar="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},ar(e)}function ir(e,t){for(var r=0;r0?supplierAddresses[o]:[],i=document.createElement("table");i.classList.add(flagAddress);var l=document.createElement("thead"),c=document.createElement("tr"),s=document.createElement("th");s.classList.add(flagPostcode),s.textContent="Postcode";var d=document.createElement("th");d.classList.add(flagAddressLine1),d.textContent="Address Line 1";var f=document.createElement("th");f.classList.add(flagAddressLine2),f.textContent="Address Line 2";var p=document.createElement("th");p.classList.add(flagCity),p.textContent="City";var y=document.createElement("th");y.classList.add(flagCounty),y.textContent="County";var h=document.createElement("th");h.classList.add(flagRegion),h.textContent="Region";var g=document.createElement("th");g.classList.add(flagActive),g.textContent="Active";var v=document.createElement("th");v.classList.add(flagAdd);var m=document.createElement("button");m.classList.add(flagAdd),m.textContent="+",v.appendChild(m),c.appendChild(s),c.appendChild(d),c.appendChild(f),c.appendChild(p),c.appendChild(y),c.appendChild(h),c.appendChild(g),c.appendChild(v),l.appendChild(c),i.appendChild(l);var b=document.createElement("tbody"),k=yt.getListFromDict(regions);a.forEach((function(e,t){r.addRowSupplierAddress(b,e,k)})),i.appendChild(b);var C=u.getCellFromElement(t),P=C.cloneNode(!1);P.appendChild(i),n.replaceChild(P,C),console.log("tblAddresses: ",i),this.hookupAddressFields()}},{key:"addRowSupplierAddress",value:function(e,t,r){console.log("addRowSupplierAddress: ",t);var n=document.createElement("td");n.classList.add(flagPostcode);var o=document.createElement("textarea");o.classList.add(flagPostcode),u.setElementValuesCurrentAndPrevious(o,t[flagPostcode]),n.appendChild(o);var a=document.createElement("td");a.classList.add(flagAddressLine1);var i=document.createElement("textarea");i.classList.add(flagAddressLine1),u.setElementValuesCurrentAndPrevious(i,t[flagAddressLine1]),a.appendChild(i);var l=document.createElement("td");l.classList.add(flagAddressLine2);var c=document.createElement("textarea");c.classList.add(flagAddressLine2),u.setElementValuesCurrentAndPrevious(c,t[flagAddressLine2]),l.appendChild(c);var s=document.createElement("td");s.classList.add(flagCity);var d=document.createElement("textarea");d.classList.add(flagCity),u.setElementValuesCurrentAndPrevious(d,t[flagCity]),s.appendChild(d);var f=document.createElement("td");f.classList.add(flagCounty);var p=document.createElement("textarea");p.classList.add(flagCounty),u.setElementValuesCurrentAndPrevious(p,t[flagCounty]),f.appendChild(p);var y=t[flagRegion];y||(y=nn({},attrIdRegion,""));var h=document.createElement("td");h.classList.add(flagRegion),u.setElementAttributesValuesCurrentAndPrevious(h,y[attrIdRegion]);var g,v,m=document.createElement("select");m.classList.add(flagRegion),v=u.createOption(null),m.appendChild(v),r.forEach((function(e){g=st.getOptionJsonFromObjectJson(e),v=u.createOption(g),m.appendChild(v)})),u.setElementValuesCurrentAndPrevious(m,y[attrIdRegion]),h.appendChild(m);var b=document.createElement("td");b.classList.add(flagActive);var k=document.createElement("input");k.classList.add(flagActive),k.type="checkbox",u.setElementValuesCurrentAndPrevious(k,t[flagActive]),b.appendChild(k);var C=document.createElement("td");C.classList.add(flagDelete);var P=document.createElement("button");P.classList.add(flagDelete),P.textContent="x",C.appendChild(P);var S=document.createElement("tr");S.setAttribute(attrIdSupplierAddress,t[attrIdSupplierAddress]),S.setAttribute(attrIdSupplier,t[attrIdSupplier]),S.appendChild(n),S.appendChild(a),S.appendChild(l),S.appendChild(s),S.appendChild(f),S.appendChild(h),S.appendChild(b),S.appendChild(C),e.appendChild(S)}},{key:"hookupAddressPostcodeInputs",value:function(){this.handleChangeElementAddressSubtableCells(idTableMain+" td."+flagAddress+" textarea."+flagPostcode)}},{key:"handleChangeElementAddressSubtableCells",value:function(e,t){this.handleChangeNestedElementCellTable(e,t)}},{key:"hookupAddressLine1Inputs",value:function(){this.handleChangeElementAddressSubtableCells(idTableMain+" td."+flagAddress+" textarea."+flagAddressLine1)}},{key:"hookupAddressLine2Inputs",value:function(){this.handleChangeElementAddressSubtableCells(idTableMain+" td."+flagAddress+" textarea."+flagAddressLine2)}},{key:"hookupAddressCityInputs",value:function(){this.handleChangeElementAddressSubtableCells(idTableMain+" td."+flagAddress+" textarea."+flagCity)}},{key:"hookupAddressCountyInputs",value:function(){this.handleChangeElementAddressSubtableCells(idTableMain+" td."+flagAddress+" textarea."+flagCounty)}},{key:"hookupAddressRegionDdls",value:function(){this.handleChangeElementAddressSubtableCells(idTableMain+" td."+flagAddress+" select."+flagRegion)}},{key:"hookupAddressActiveCheckboxes",value:function(){this.handleChangeElementAddressSubtableCells(idTableMain+" td."+flagAddress+" input."+flagActive,(function(e,t){var r=t.closest("tr"),n=r.getAttribute(attrIdSupplierAddress);u.setElementAttributeValueCurrent(r,n);var o=r.closest(idTableMain+" > tbody > tr").querySelectorAll("td."+flagAddress+" input."+flagActive);t.checked&&o.forEach((function(e){e!=t&&u.setElementValueCurrent(e,!1)}))}))}},{key:"hookupFieldsAddressAddDelete",value:function(){var e=idTableMain+" td."+flagAddress+" button",t=e+"."+flagDelete,r=e+"."+flagAdd;this.hookupButtonsRowDelete(t,r),this.hookupButtonsRowUndelete(t,r)}},{key:"hookupAddressDeleteButtons",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagAddress+" button."+flagDelete,(function(t,r){u.getRowFromElement(r).classList.add(flagDelete);var n=document.createElement("button");n.classList.add(flagAdd),n.textContent="+",r.replaceWith(n),e.hookupAddressUndeleteButtons()}))}},{key:"hookupAddressUndeleteButtons",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagAddress+" td button."+flagAdd,(function(t,r){u.getRowFromElement(r).classList.remove(flagDelete);var n=document.createElement("button");n.classList.add(flagDelete),n.textContent="x",r.replaceWith(n),e.hookupAddressDeleteButtons()}))}},{key:"hookupAddressAddButtons",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagAddress+" th button."+flagAdd,(function(t,r){var n=r.closest(idTableMain+" > tbody > tr"),o=n.getAttribute(attrIdSupplier),a=n.querySelectorAll("td."+flagAddress+" input."+flagActive+":checked").length>0,i=n.querySelectorAll("td."+flagAddress+" td."+flagAddress).length,l=nn(nn(nn(nn(nn(nn(nn(nn(nn({},attrIdSupplier,o),attrIdSupplierAddress,-1-i),flagPostcode,""),flagAddressLine1,""),flagAddressLine2,""),flagCity,""),flagCounty,""),attrIdRegion,""),flagActive,!a),c=n.querySelector("td."+flagAddress+" table tbody");if(e.addRowSupplierAddress(c,l,yt.getListFromDict(regions)),!a){var s=n.querySelector("td."+flagAddress);u.setElementAttributeValueCurrent(s,l[attrIdSupplierAddress])}e.hookupAddressFields()}))}},{key:"hookupPhoneNumberInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagPhoneNumber+" textarea")}},{key:"hookupFaxInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagFax+" textarea")}},{key:"hookupEmailInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagEmail+" textarea")}},{key:"hookupWebsiteInputs",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagWebsite+" textarea")}},{key:"leave",value:function(){Zr(t,"leave",this,3)([])}}])}(At);function ln(e){return ln="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},ln(e)}function un(e,t){for(var r=0;r0&&(n+="\n"),n+=e[0]+": "+e[1]+", "})),n}}])}();function dn(e){return dn="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},dn(e)}function fn(e,t){for(var r=0;r tbody > tr"),s=c.querySelector("td."+flagCostTotalLocalVatExcl+" div"),d=c.querySelectorAll("td."+flagOrderItems+" td."+flagCostTotalLocalVatExcl+" input"),f=Array.from(d).reduce((function(e,t){return e+Number(u.getElementValueCurrent(t))}),0);u.setElementValueCurrent(s,f)}},{key:"updateFieldsCostUnitLocalVatIncl",value:function(e){var t=e.closest("tr."+flagOrderItems),r=t.querySelector("td."+flagCostTotalLocalVatIncl+" input"),n=u.getElementValueCurrent(r),o=t.querySelector("td."+flagQuantityOrdered+" input"),a=u.getElementValueCurrent(o),i=t.querySelector("td."+flagCostUnitLocalVatIncl+" div"),l=0==a?0:n/a;u.setElementValuesCurrentAndPrevious(i,l);var c=t.closest(idTableMain+" > tbody > tr"),s=c.querySelector("td."+flagCostTotalLocalVatIncl+" div"),d=c.querySelectorAll("td."+flagOrderItems+" td."+flagCostTotalLocalVatIncl+" input"),f=Array.from(d).reduce((function(e,t){return e+Number(u.getElementValueCurrent(t))}),0);u.setElementValueCurrent(s,f)}},{key:"hookupFieldsOrderItemLatencyDeliveryDays",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" td."+flagLatencyDeliveryDays+" input")}},{key:"hookupFieldsOrderItemActive",value:function(){this.hookupChangeHandlerTableCells(idTableMain+" td."+flagOrderItems+" input."+flagActive)}},{key:"hookupFieldsOrderItemAddDelete",value:function(){var e=idTableMain+" td."+flagOrderItems+" td."+flagOrderItems+" button",t=e+"."+flagDelete,r=e+"."+flagAdd;this.hookupButtonsRowDelete(t,r),this.hookupButtonsRowUndelete(t,r),this.hookupButtonsOrderItemAdd()}},{key:"hookupButtonsOrderItemAdd",value:function(){var e=this;this.hookupEventHandler("click",idTableMain+" td."+flagOrderItems+" th button."+flagAdd,(function(t,r){var n,o=r.closest(idTableMain+" > tbody > tr"),a=o.getAttribute(attrIdSupplierPurchaseOrder),i=o.querySelectorAll("td."+flagOrderItems+" input."+flagActive+":checked").length>0,l=o.querySelectorAll("td."+flagOrderItems+" td."+flagSupplierPurchaseOrder).length,u=(bn(bn(bn(bn(bn(bn(bn(bn(bn(bn(n={},attrIdSupplierPurchaseOrder,a),attrIdSupplierPurchaseOrderProductLink,-1-l),attrIdProductCategory,0),attrIdProduct,0),flagProductVariations,""),attrIdUnitMeasurementQuantity,0),flagQuantityOrdered,""),flagQuantityReceived,""),flagCostTotalLocalVatExcl,""),flagCostTotalLocalVatIncl,""),bn(bn(bn(bn(bn(n,flagCostUnitLocalVatExcl,""),flagCostUnitLocalVatIncl,""),flagLatencyDeliveryDays,""),flagDisplayOrder,l+1),flagActive,!i)),c=o.querySelector("td."+flagOrderItems+" table tbody");e.addRowSupplierPurchaseOrderItem(c,u),e.hookupOrderItemsFields()}))}},{key:"leave",value:function(){hn(t,"leave",this,3)([])}}])}(At);function Pn(e){return Pn="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},Pn(e)}function Sn(e,t){for(var r=0;r0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageHome,e)},this.routes[hashPageContact]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageContact,e)},this.routes[hashPageServices]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageServices,e)},this.routes[hashPageAdminHome]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageAdminHome,e)},this.routes[hashPageAccessibilityStatement]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageAccessibilityStatement,e)},this.routes[hashPageDataRetentionSchedule]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageDataRetentionSchedule,e)},this.routes[hashPageLicense]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageLicense,e)},this.routes[hashPagePrivacyPolicy]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPagePrivacyPolicy,e)},this.routes[hashPageStoreManufacturingPurchaseOrders]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreManufacturingPurchaseOrders,e)},this.routes[hashPageStoreProductCategories]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreProductCategories,e)},this.routes[hashPageStoreProductPermutations]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreProductPermutations,e)},this.routes[hashPageStoreProducts]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreProducts,e)},this.routes[hashPageStoreStockItems]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreStockItems,e)},this.routes[hashPageStoreSuppliers]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreSuppliers,e)},this.routes[hashPageStoreSupplierPurchaseOrders]=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return t.navigateToHash(hashPageStoreSupplierPurchaseOrders,e)},this.initialize()}),[{key:"loadPage",value:function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.getClassPageFromHash(e);this.currentPage=new n(this),this.currentPage.initialize(r),window.addEventListener("beforeunload",(function(){return t.currentPage.leave()}))}},{key:"getClassPageFromHash",value:function(e){var t=this.pages[e];try{return t.module}catch(t){throw console.log("this.pages: ",this.pages),console.error("Page not found:",e),t}}},{key:"initialize",value:function(){window.addEventListener("popstate",this.handlePopState.bind(this))}},{key:"handlePopState",value:function(e){this.loadPageCurrent()}},{key:"loadPageCurrent",value:function(){var e=u.getHashPageCurrent();this.loadPage(e)}},{key:"navigateToHash",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=S.getUrlFromHash(e,r);history.pushState({data:t,params:r},"",e),S.goToUrl(n,t)}},{key:"navigateToUrl",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;(!(arguments.length>2&&void 0!==arguments[2])||arguments[2])&&history.pushState(t,"",e),e=S.parameteriseUrl(e,t),S.goToUrl(e)}}],[{key:"loadPageBodyFromResponse",value:function(e){console.log(e.data),u.loadPageBody(e.data)}}])}();function Qn(e){return Qn="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},Qn(e)}function Jn(e,t){for(var r=0;ru)Up&shx|yil>9A zvo4*7tqnl|2oOac0MO_2|9AW^9)Zf_ak&8o1kneHSK&QcskM3m2-dT}VI(R=zTUy4 zp>kvG981fOoQM|$p?p*;_By2LwJ%IplNR-Mw#|XzLmf&mQ2`^ps(RS$^xub1Nqf*S z6P>g)FY-{Z1sE~)^<&Jk0MZ>>29#Jtwgsgsu`E#0`22UXSBBLPH;39_%C$;4M^^i` z-vzfmwF%bI&5kF_f>mD@d0VbE6mL!4 zy9}UU9o2|d#bh__GsurxC^LT9Pq6+%x{Zu8xQT7jo)Z^uB8Nd_OS4rpoFgL7$xapM zTQV}*%F!!-W{l%)SNsEf4@C6w1LYp^sQso_2w}9Bki;kKY-{9*`^)LfzIM?0RqBx+ z(>oXdz{dwLfWm*MWs@oc@$ILq$$V-Z^ru?tJDJ)z)6@Mv|DQVkFV?|->w0CPto#52 zOz4HgYuL!c!g@S{khHs?LXxg)*D>xOIQ>vI_<@O+=+rr(#eTKM{Cxu&A992bYX}C>n1@fYy+#=7!N@HQ<7f@>x}AZ3}zeanf{_-%@Jv5iEZ=r_AYW z2I`2jk@?SR?-3iqyC*DFWeZNrTB95%E+S8T6Pw-}k*pr%H*Z?GuOmuCEJ%+`)8fOV zd3SzVjVxE=*`9;!kOLJXm!pAE_@x`47V3X0$t-1$VFWM$fcK{9x}WSX!l7QGCc&U``yc(Y|K7cyr}OTyEkl@)054+^crMikbl z3H8NveLKI8Gc)?V8?A72V1Q#XCg>tJLLphT+DJCwI%8G|HX${YJ|#QFhNS2N*}n90 zDG{4han$`LPZ5ZHRt%$tZOp9j$|{YjSc1e9m4GMNK6lwTHPfYDRTaJ#ZffKOID*B_ zz2hce))*>i^HnX0cDlYZ;QQ#H;2L;-n*o96ECCls)$h!dSapiP{$k>V^smEg{g1*B zaA}OKaHFD$T@Kj;4XU#r-&Ef*$Nj(u?&%8+^VEh@5CR`0SuSj_8SU-aI!)lkkFi`@ zUZkkA%Vt@mR!Uh8BliVF>ylvRcr6SDP&l z%oK<3w6wIOQO$BT^!Edq-2HC#bUU&L5g46^Ns&Vc8{16{=%s1@Q3zpCY#dGyE-oH7 z%@2n1nqnw_+m;B%Gfn0me@f~TF#lzyqPM!5b%LO+Z%%s$e2PN?7#e;qVPAf|4i%Za zZm8NE{)$4jv+f3VE#5aBa;1D{kQ^2(gD(D1$VDE$3uM)B{Kg%4qc&|QCktVmlz7uA zNYRE=n7rvL$DKr?0TS{{mYb^k6!_HrB=^njEC}^_g+5tQmJPS6!^=6SKl| zD(fXz~Nv?@8i-ub%v6`kw0dwG4;tH9YLPkQuv^Qa5| z&@1x0Q_sr-p5l|EaYBe937ypEd2DrVR@K0`OC7|6$$!U3dRw z=>R`Bo}aq^zx$|El9e80KS z>5SaQmpDR`gTis}NI{AjR#;3Va@#f=%3?Le;L2p>JcB#-xzdj}?)g6lE1y;cHny}7 zWKx>#f3yj&-h<@^dgA}M!Gx6Lf%OFV@oS!t`ms;+9^$(5)lAlN%DS)c8D<}+LK?4} zmDfAeg&=H19N&*J(RsfhqeJy#+ePSQjIw9-nr8g=!fbDJcwzH%rvInNc%Fh~u0Vgj zuBZY4V0=FD&xPLE!qn8onf|W}&q9sLwc{C;;KAr~G0AeY@(q zB}>K_Z;xy$4+_lbof-Z)3_lk%t33yx5g0s$(pc9#?X!6aM#4Zrx{C_9!Q0K8*lN+fcg6QoxR$x%aR|GPkOG;Yj*L zq*9dn)Y4yx$n(APDB0`;?S?NDa(A!vD&jJR-Z1nkOG3$^D!Tj(V)R|}#`ZZQ_bFOm zvgK(r1QJ<)K(7_pTU7KS38h$F?G`F(6B1kBuv&*}Gon1tZ_X1XO)$et-tw!bU?z{p z&(7$s?*k=F5oqI*I>jHqY_uSG4AW45D4@IG9mp$k6u;YWar`Rr5AvKNORZ9$0c!DA z6q2eu*3WB(w$N_jmZo?rOxAH+>_A$p-aa>XBL@$^`|WObphe!@?P2@wqNJwgNgsc1J z%j^B|uqRhvFIT_2+ov7dSNdjsci=|x{-LloY>&V5;N$Jx0{&qWAOAeJhV*@ebmJp6 z^y#hUp{@Oa%bE9zE3W^L3wfF=r@?phEd5{w6<6@^lz5u2squ-zdy4C-vd!lzhXX3N zA@W^Us~#_8S`&R^v5E9V@$swczGjQl{7^odmG}(j%TU7wtu5c@gXcUI`(SJW&dFd_ zUV4?9m2KN#n?#V81}ADKJ?8^AVwd)fJ2^0)>GQ;;1#sk%tNmU_cVVWWYK~ zgXci9!92jIDL7dH%hwY#55-Jn=@nV~%Gdidk%vj=JS zy9}Uupvd6Yv3=7H-bGD@Ag>eqEY+Y^F8E9p8Xyc}CD9Ofu(J(A6Y$SLtF#?N2AnhdnyHrJQhv(WIs2Ibpe8mDcf#COtQ6=5}_5 zJ@BawQkEVz0`$gtscq@A$#;1%rjk|28n9p zlk9wkzI@ILT2N7x=I?t2wJwY&iV6W5D5+#-T`VMMQGHVBRhuB6lb4tC-F>~HdcW(K zC|tKA{Eng(Nbqz;q%tjZFmSmkLgTYjolr(`VK!&bb-z2h+!XaGOHd$n*64M3pr{Z= zOLRuOP*ezm)v|+LmJ&4K>kxH!hd_T-wft43KtG!aH>mw2WsdsIPWGFZr9~ZqEAio0 zZ%5BHPA8;MOZ8#j@2QtX=x{~+-AV#C;z6)t(#K`#`Y&s!&6c&ESX9z0kP z{ouBLPqNzu(ctpBpM;^!^7rG!{=AWS41TQz54nOM%AU3kj zEq?cX?_75};CGWh3wvJkB^^9B8?4#7@g3}EO?uC3PNbYLvV)oEVSI`;i(zzTlLL8B zcTPSQE9R3?!d7=)pC!xRr8=bL85gQ*z5rUMA!dZ0N z-=}qxz%?U;WaUF`DRSBO71i3Z9vcHBkdy{EFy)re*YB!Ed0<||>W)`tKaLIWM5`Ic zEfwN(cuEB9h&W&)XOnhNMr7BD1r5FGv#_4Kc#sdT)M7R9YtBXcmNRdc+w~eUD-<=t zcA6EPuXob59mi!#!o$TMQ;4#fu1>z!y-5`cO_mk-GxkUxTU&4}IHkd7UvosYMK~$b zvTv)6S^r{Pa6-0AQ8g=N0iER7VauSj%UDNAPZF_b+E2wq{(9{6lN9E_ED_3TiMI-I zbTn}%%~CGlZG7O8YySQ7&m{B{d^jj$72TkwsEv3tl%}FRrm zAEQ`-t4g%&`dyV?u9jVctnor`BphR=l&jtbS=5Fy^3PSqWv3>k*qF_@Krx8Rm2>c{ zY+j;`jkrJA!T6L=7zZ1hW@9Sn0$GDP=E_8vFOu`?_8U~kTKS26Q2we$Mx>I*XFMns z59}F0 zkbxe?$vui6-I(1FA!<5C!F*dvbwZ6;YNPZpT&l3(l=P_~iS65c!IJ$} z&T~%XzS)-fs9HQhD?CtM4~N)971v_rw|Zk?r24bqJnl!uXKPLyqIS?z%0Gwqtf1Al zp)C5BN;8F?Vrh9}R=SEOS9qNZHPt&#ri4oKh`v#xdgtBdEap|IOorB?nUZc~?t>HS z_^JvOF0sfQv&v)!UD8;%l&KUub8?xLb53o0IV%`%`Bp{_ zgsNwCB%e@G`K<4b(tcaHQ_@3cfPMgSHr2G2D!3uL61XQ>S9w#(WEB&U`o3qyiv0bu z#LK9rX9_>W1yf}-g_>u3#finLb%d^I#ZLN@Y5;R)Sl?TG;tULG1r~U)@qR95Lj}

cxQ=PoYq9`-&tT2ijcQXah8o~dxRGhrPP(L8z+vTJ zef=lNp(Z9`)wPSd&%zL+W7WJRkZ#2a4H3DSX)C6cTGLvv9%&0EmfA2KP6luAhOW;9 zplO8$ZiIw-a}+93zU$oyUpq?Jg0p(Ai@-Y7if=tM^$*%6PxZ8&W#2nNaFm*YGxCnh z>h2?lS2gPD-h*i;RD2R76H@fD{s*zNo%}CR^JcoAB9mJouh1$6Dh~;~nP+gnK&RHQ z$AvnN_!tk?Q0w+Ynb94$fB;Q>GoijeZ)T_)IV^^OTe-|Dc3tZX>-k-w%HB&XMQ0tV zxmz+_W)E0dQZwM_HlnOzUzNW}x4+hWzTNYAOl3hyda$z})A{3OH{jzhugYJ$CYhLV zxIhLJP`{$1ZXxBy5CBO}8l6W(47x@@%C`AZ#`g}RKu30GG;^h!bU<-#Sm~VibOIO5 zg}MR|YzpeggTs;4gj+JAsw*cMG*;R;Sbif7sqHoEc+48<0O{39U0m6 zE|6&CPR~4l!TWyDH9X87=lqaVk)97tM6xfr1bzO9M>HBeZCQWnB~P|1wJNN%Z4!$q zFR`SJeB|SFu^V^31B{xGP7p7@2YBw4pmZeIL}ktpy^oud2;!^lfM^WbVx*Z3?G5Q= ztOo1TqZz{}%ago?G0&$(^D8(o!RW^AZn3-&<(aJ~?#-=Jb>%wJ8tSv2w~3)|FP$dzHZaBI*HR2 zLc_uB($76vyoq&i2?YA1HinM(dmy=$e&zQ^Omt%a3xa`2GKnhX`d;Sn9li2a5n(Fj z&?P)6$9__n7efSrUkh&zFZMLC@DOy8)_T1n=P;Ih5>p_us!Lx0w7QV?_SrW(J>Ku4 z4nI7vzN6FUd_d#=F#X1)nz}|PmulLE|NcJw@pk9_tLNi=6<+^+G$zgTwZiZHeW7LZ zE!j)MDuhz+{i#A--|z04-tX}pU!SY-0VF4N8yO2ZLT-fAYr@z=z!)lvKO-_rQie!| z77{1GF6=lVl4ffZiy6II-UgWuHQrRG_oc!dZK*+`62*1ml_8RLi}A2>I%Ez2{!WJ! zT3&5*mbXnK#W9Yt+hLNoH)4P52UW)%s z7mp%`QzgzmMr!O=h>8)>Ya3cK(=`dI%iBbTSTSd!BI$z!|3g~NH^R`t1D6*@?O`@0 z3a|57&tOh^;;>h5gl!I2r(#K!Az!L#LJ>x;{V`DfgL|kS4_n}0PhB6BrD)uH_z-yl zK-7y>K*HZmNpZS69h+u zSLro!QScZvJ2c&b47rBi`EHpkj^vUY_@z<)#4@<5OL|kc8 zv!?+NbPLMz2tnV1eQD$r(N`fq3I^SYq6t-cQmMA!<^)W(Hx(z@7E8XW9b>-fmF(i4 zJ#(^T4b)v$SR>YA2!osa=o}vnFg2nL#4f%#T<|?aueU z8ZJ0AD_U(!C9YmUMQXKhB{U_FBaxrqDRLN0jj?1 z%Db~Hb;XtB(m^+|Up9*NbC5z)X9ZuSP+ppV*bjKRq`sWESh7TZQ)VTuhjD>;5C9i`t9Mvu@v-#Z>D1 zVYxa>ElW}RtaF>^ZMP?+3M2F;4b!$4ucoV?8Y0# ztd%d75Kp!+=IonECKd#Q{(2V-p??J!w7PS>NMPEW{_(c zvrN3GLoLdD`iE&UW)WmJZFEu%D(~qu2-*6sT{Ehj2VujWti4DAS()f+%W5;4XFmhI z8pcH%Ks!*U#+I$`%4s`OmT?;FLS(Ifh-&NF%FVl0*_kcEjpwXa22bfVwOpiWU=aR^ZhbnDuDj?wc$U;{(#S;tU4Zfe)JWcO;4s`*h0S}3*!|FV53 zATR1TGt%viF<^u$9M;6FVGJJBtHQeg1%zqSwP#%CcJM z%K;~Lmk+L^SP>UKhAylKqA1=VO!rHr~d7W4fsA7T-sDYZNjs!AhNzVbW% zHNKyO_7|kn_XNhM-ViJ1R}0$)(r>i*8Q;!Q?9v0XwXh{=!w)1@h8VP(rX-+{!nPwN z#!&HiY)qf*ze-r;w3AUZ*_7^s)3x$?>SK&Ly#kB?O1tRZBzA>$5Mm3BH;`X?XOvJ78orV}Z0P*5l!WmMRHm3|gHdrzzRm&oXMgctK21}F_TTX{vt>srNR-yjd z&rB&gxdFXXl$`6U+C2e(Wh8Jj|6ATZyV5Q2flbd}I$vu9;IhAe1pgGa2joWIY5H1M zfkSbP@;t><2!$}y>dV2Zzz(Wz0&qU?>Yl(@e9cmZR5vB$WF5sF98U7b)`2hVJU-F}vm+t5P=2w>J$_3^0FU zJ1rriU8hTSh^-H4F~;SO2E+ncVmbG09tP#dvaLeTs)~Khm8aL~>!vMn(hO@W|3g?l zY+FssxB2V&Bu_Wt>IN2ch5ie9R?dBD zXxF4Nta=xE>4O1WDj}q{1Tx$l}AYvxt4(#DSVd6msd-N>;IOV*T?S!gHqJW7M#Q+^g z)dfFUAcBk}iF~NoKWC#%#Ju0@U!ovUWa+eq^R92wVX}ycsEEjKLz4iyqLz%0fOLAF zPWS-*Z+`ZROe7ygbN~PiP5=Ouf2x~>p_8eJvWt_Yo%vr{*O|5Iw5H}3dZC=+zWiOv zsBMtUG=?{VHI)TPbOlG6Buv)RteV3DU_FKq%VJlcK1oUyk5sjKEa*}3n&j!d36LdX zy*?>RM}zEVFJI+u&wJBz*3v`8+Iq2ScFOnhE_%3}v$n?YaT01Y`UgI}Y?*h{=>=I8 z5=A|fpW^pDQN6{43q*|_!|o)@o+1$Ni_) z>5r#L!<*wQ;kSbiC)IZMqA$4%laEP-Jkn7^td{F074;(pop}6CN~yA1Z4uh)KW$O$ z*V-oFR%Eq)$)=&|iG}-iN_EAS&tJ(S<9w7;tzwF6JHa-hbdJ7zwhKYvsB*Uo z(M$Cn(x%B;AvK+-0p*v~$w6grswglUJ)C5sVhD9jUF;(p7R6JILSd#MO_Ga0 z3FkMZep^kp+c;Pws-9&**mvL0&bgFwX(;WMtc#nKE}+0pON$cCB&aYrWS87IFDMt7 z;3AA$5geoHGh9m|$uptONCSFSndgvE6M`-qOs@dQo z+4$2g2C6_a(-P_;S*EcJ@6Vlt@BPBC5nyJ-==LxG;6o_O;R z*LMg;8M}BF`&f2dwOjLXD3r8TqAvFA?K+Lsq*f|xWcyX`_fb%+F61=MRC--sNLV{BB}MH@VwXbD1YgYA-Hb-Tt`EF%K8hKZdbYli0#m?Cz< z%5A#r1@U_-O9#E{sJFC65Y9y{mFKU zJBhjsUMD6QXuSB#JoIKXf)=mfMRoDlSwxn3n;s#Kh&2q_i;?DoLbPi8GGcCAir($7 zTFr|@VU{|8pahgS;YDS2s-1OH*OjMiOKXk8zI}#-cPC@T?D1QiBewA$f?v%}!1!Z# zvI;uK=S&PC{d>|Qr~=g2*dBi$?0G9?&Vyt|%S5j=|KgW~oalQ&)fByI-kbB-7ta z&o$Hx+S90j)Y)x~U6*ZlWLz!OFtWn~h0oS}{ZglEWz8tLLa@8CkVT}Y1^^|BbW^$_ zEw89ThLY5`r-61@`1Dozi(^cYZzjQ_%~Zl^Ot9`7+DNIgI(AZp_3Q@`#F%(j(-J(M z*EZdpD;^?Nhj0kj5!@N0T8liI#-KPI=Dz2c?A~VN>2eL z0IRbJ|uw1BBw(7EaFufxe7U8oF4jn*$PImlPYuNZO_m zv<_{<1Wm8QayIxur#lPWxoNi|M}gYQhZF1Wlie72K!8-Ntwgq~02!W$%n^jqreRXe zfN$06igj)0%=m)Z@|+A7M?a#Lfb8AlK;Rhf#8~}til~V!rNc>C8?6@y-r;a1hJBgT z8!I*3?@g{crmKY-kj(RbHT-fzqdcemCa7XKV!!#_Hso@*S9oKO)38f9VpEqdyD_C7 zC}EhWhFu?y{swpTO`LGrH$*O_{_^?z6ghVdgpt|`#2r}0N1jcQ6VTwdaDEAcPJnbd zNkSG0d?iVp-ifVuUNk7wW}2mHxx&ccIFSc;t}~WNRJdnvmYT5?=@B+b&#>v~kZH*J zrUrPJJ;i`+jONovpo?*d1xznButYStbsF$Jh!U4ewD3A4D8UvpX71x)YJUOQU$a2p z_@$+S>y3U$kq6AL6gPT<2alJ+jVcA(Kr?emCo0__E*b3z!SlVFse{!uTH6wgB<8MD(-|ljEnzIBR8s_M*8|qaFlyKEttj?Z^yiwX zY|926H;}U;B;xG@H$dUsg}V z>0I6e&qe}wQ^*eh7$LVjT9_IHdHS$})Gsk&B8W*2#gBR!N?2}3WTDmH#;CVu;83?za0;q?pd2m=G>QT;8Lz;*n zn>su@BR9|?JBl=X9VUn#(E_IoKi{i5=~!H3YFJ7tdirg*@LmwQ``Pu|Vd`VL{&-I! z>t+L#H+a4X6nl7nQBx^%k6%2)P=KC^oldO^y!eSpl|W(D1hW(Umj^Q}WYm8{MniZ9E?a{5p8KIQn?GxVZA`dK619 zd`XTBs)7aHE<^gs%Po{eb^W?(YpGJFd)mPPd{A5N77-d&=8j=+)Knnc3TS(`N#d#0 zB|_Wj$qpGr(%^d`$6nE-SW!Gk=e(@fCuQ2g*tA7hxhr7?y(#3l8td~?Y&F8y`4yLC z=tbWN#c%-4q#T7f_2T11Uz&?N6bWagU5tVwNHeyVnZHn&L;_^7!%M|p2Jn|lsB)C- zG5T4U4&V*)beA)TtmV!t2jtvi;y+3dkpxcxn$Ujmqf~{bU|-f}N~+FSWeeel&mAS; zGvYgoWh*a?=<}|+i-dbF>QIQuuU+}zKpjTU^;~}ce9I~HlXCa=+!lWOu^)DI^ge$D z+im1oIgiVDz4i!94435+Q1$F3r#RzJD3h$to@@ZzhC<;()og8)c}Iy^?rc`{0JBxh zWEpQMj=M5?AYjSIQaw>cc}~(=Vn^B^Hv#<;zU0yv1P>n+5N+=b)wPnlwiv6jjh>@$ z6R9FXKO2w1cV}anj8P(q;JKQp64C?Czv8~B8+gS9$E1BVSH+3Z{i^cnuxMC*Ro7|K zq2!mH*8MfK>({>E8(D$9IS#)T)&<8Z&rZI`{$e@kL-G{4W&soC|7ygq+N zoz;>L=Mxqu+N2WN+l~A*e0RH}09p&6PCNOtI{pLEQ~-mbjyv|kAjAA$G#jlVmC*k^-Par%cZ z_DRWue5V!AvyQ96uWF^np`1@v)lfeR zXL;e9Iql$Y_E@i^v1c#=8pGT>>gJXobK2|*Xc+d{vDoxUZ+FkxI;gv$iVPSqw`8_W zfb#Cmin?-~$0}dIraFXWp(tH@%mcQ$XBY;G8fes#M`27@*?v5Gz!b^8kOUFk2@%zN zwTCpS9a%B$lojtBee6`dLyd^mT~FiViAQcb_Lxh$IZ}C5_cY(5lXH)ht9vKuf^}*v zH!4*nOuga?Z8o#jC`VE{xYeqZ2Zg2f2CkY>d}FD^y9>|R;rfcMfI9F7{sN5C>~i`D z;=@|fk1|B&A4WTgX{{C#YyMVs+kKJ*VK#=kq4O1tTtO%AUO9zb+Vr`h9yP*z+4fu} zlY|<#afs8>50fH$<{Vj*QmV-&}VjAT*OkL+WMM_-a-fxj) zpw}pM`;?UkrVbb1kDfcaPY6OHCT}}mfdf6v|TP}ih=FbFL6jUCnAn!)A#^w22V%gS((ffq) z49_7p$kWMSz~CMw9j-q8*SD2!;8|6~yOVQjt1TDkmL~MhJA!iHD#WM7yr@`qt~9Ojv5; zY9zdCj{Tgqoz<-^u?bX>N+v!g_gZl4uPhgaE5qcy4Ji)Q-NG%ueF@Vm#-!0wBeXNL z%70ch8x=~)mf#lNKR?>u6YPeG&uPs(oE8h+L9d@}&7*0)qf``RCXI152xM6ZPa?*9 zB8zPD;uch9pv)s&-8WOq7qM24@b=JH-k#uD;gl2v*k@r{Gt9@{&fCpM&mikK1}R6%&P+B@AyJ zzfop~4hj)p3$2|UD<)@=s4GBkDl}YHudu3Ac-Nw0(6c4~z;+!3{yrs}Sq-@l;1738 zdHuY(8^aLSejlL2+m+BdSFzsKUV)a_?H!-_g#>}=d{tm`G7knt807`2^h6q4`??mX z?r;>awlQ^u@25gY%CS@v#ZgCx3W;wZnCVP0mF}iF zk5E%vv*cdkL2_pc)pFIwUwnOUE#NALWcI4e~HPsnUip0fj##4KU$;kmG-$8~V zOHQyEziR5vVQo^TWy<-<&+^?1T0QH{P|8^So1G?BOh)Ea3!6P#(rxuFg+#Kk|z&V*T`~^*|Ww!Hk&rr-oC2D z0))y?SjrT*S~lGDIb;4sV5Y(h!&wU}TOFK$9y1Ri#qp_o0q&Ae4ad6A*&x8$>}JNBk58g?$wQ*qG;V zlN(I`%?PGE(t3qpq2P>YW@x&j_)|lW$O=$rosE3?JlDMfKI!~$by>^>-7x)+iu2{! zVwf3%0f=sHIa6?KGm7exiRQs587haWZB_fHVV zns2;bOdAZM0*_N7Rg1wqxj%3!?;D0_Mayjpqv!=$@qxbrfvk9l_9H9Cn_4X@P*+R)y=H29(T*6j@H$^$c!seV=X;rcp>}Ti= zP+RYF8z#aM6A2g6Pn(&9$P&zpcec2$*KU55D?+?tgCH8|e41z(9A>ZWPLSEqV@%pi zocEPrQh0Dj5iCH#8`|#u8cUG|qFg&!`|cy{+rURnnvkn^gEGxV5;y(iqXrZj!atlF zy$Ds{2AR_Qg)c!c0>lC6nbM6#;>`jc1hP|9p|@uotra4lPg}qt(&v4Ui>SU zlyg84DC6F$5zhhyv%)JFp!fD^U9nQ6dsTObNVRHIn5rhUNoUa)Z&a?uzK&{M zl-I749>zT)Q-WZpfH&IR_Q-R05vHv6(L}?8-P6~xA5vaSyuN?6AZNOUIjqW#5gha&<~evO=Dcr3~IJL=3*r z`$Mb0vS;Vy#c&zbx*dc9y*u{IT?gKOncfLwLk0PKjDQg&V z!lee|Cd~}#$G!tNGbYFEjR?_B*4`arCxI9 z6=)tsY60NsJqnw#=FM=&#afB}+K)Xo_fmQ0RpYEIyG>l_0WEP6s7p^Z`Shwqn4vSc z@lN%ZFK16($uCU9-CCjIFZx=wV3`tXPt7(Uwm(;l`^<{osWu^v<#a$UrLz4p~mX|r9`yemI zQFxB0sfFh20m3pGv(2seoI7VU?eIv|k(>_?T@ke6#9ik5vnZMo&xWZODb$uPzl09k zv1UujZnVDTg{PZvpOzYb75w0}(umd`^Dkt%fXhi>>}u zi_o}`n+ucAo5Do4I_>;R8{oc=+^rADmZlK9$(VaB24;Ia6PFtXcykxj&j5j_HcYQ0 z_qA8|t1~u#Ze@7^GQ+G8Cp1SIAl%Ks;`sd=r6nF^|LUIogEKqW&*>T@uq#|ps2GCM zy%Vxy z`m&ou1_BQzzhC910BD2A_SMjn0&ZbFyl!Nl5T69@{O~rG00wMKh@Qr-@f#X>xeTG- zgj#{Z36A6nwN#2ZJo+LKh2&vlLe)QqLGpv;YXQ#@m|-;qj-RD^kEOkO4r4vlBH1H| zE?-?xx7%aj#mb;J?vFvcbCu9FIU;~fUDXZ6pJD|Wtv zI@wjje-pQ-Nu080Fw@ctJ}B6y}xYES?MY^!678>Y>E?v8-S_MxC3uXE%Xz%a9UKrV@p z`S^U5n<(%z^%dcrp8v?Lgtgth8AruynT?hMt;RUMEo^CE?f_1Qj)Yhg^?Z8*({12R z^`SpO3U;6L+i5vbTUb%DOI-R}KlQ#Cvh=!)6?F>NN_50)g4s}3bC>9gZLfo2``dER z*)VPE0O!K^$10a>-%ZeSOG?qJBTyQZCX7=h#m|ZTtV#WBS1NpyQ`KM}%g$%-xd8nT9`(s;UUdm>2IhC$7jP)>Ku>hnu6-hiaC>WrcgW7XKTTu6`t* z{dwgzAY*2PABdwr{aNsv&jG#~mI?-5!wQpMQh<>8bR}IgwRLIJE2fk@u}sZ!q=Z1Y)-R<}LOg47!G#PCEQYPXx# zcE0ZB_T@^SMIj+{VZ!1h9TNl_8eI+49ZSzIE_6&J$Wpt;{z5i@-$VF#6mC$kCH4TA zn;|s9GfOihBbq~-`XFn7?aR{_LtAC3F)PM2TVwBiU<39Xb8;n@5rUD%3eC(Zz=k!Y zKUirC&mJ#5+iWp3D#nYirm%LjkHO8A2Q?Jk8tS%EaOhFzXnVWK#kI4kIqequvEbEh zDyer7lV9;lxfygVoOh9|7G^6!r5R0s@o_X8Cv;&2!<8UZNlt+nRm!ok_?%&X`=)Q? zHGt)>Ac+Pu(2Zj~+{C>wr`P+vyOtS4z@sj%)nyM5zoJd@7W~RZW{nx96L_j%7kdil z=1%<}$=74E<1$o!l1UFcu;%nW%t|o}gmk!T+>Kqq9Y^~*dsNl7A8L$#@-t|l{h%QIpA7yJmi{lo-`BLy zERBByssBm%Csg-u(#}u(`yasFKZ*YnG59wr0Du$JU&Q}E_`yH<{0Srbn^O_Y|7*nm z0G0j8<y1&GhF{C zhd=ihe{+cE{&Nie>u%#uhW}}i|7HgOP{RWN@IUPHpXC3!j{ZA2$L9v=|B?T5RaKA% W{S=qqpG1HL`0=^&o(TT__5T6vmV$Bs literal 0 HcmV?d00001 diff --git a/static/js/components/common/inputs/textarea.js b/static/js/components/common/inputs/textarea.js index 2d39b68b..b437fd1d 100644 --- a/static/js/components/common/inputs/textarea.js +++ b/static/js/components/common/inputs/textarea.js @@ -1,4 +1,5 @@ +import Common from "../../../lib/common.js"; import Validation from "../../../lib/validation.js"; export default class TextArea { @@ -27,15 +28,15 @@ export default class TextArea { elTextarea.style.removeProperty('height'); textarea.getAttribute('rows', 1); - const paddingTop = parseCSSPropertyToFloat(textarea, 'padding-top'); - const paddingBottom= parseCSSPropertyToFloat(textarea, 'padding-bottom'); - const borderTop = parseCSSPropertyToFloat(textarea, 'border-top'); - const borderBottom = parseCSSPropertyToFloat(textarea, 'border-bottom'); + const paddingTop = Common.parseFloatWithDefault(textarea.style.paddingTop); + const paddingBottom = Common.parseFloatWithDefault(textarea.style.paddingBottom); + const borderTop = Common.parseFloatWithDefault(textarea.style.borderTop); + const borderBottom = Common.parseFloatWithDefault(textarea.style.borderBottom); let heightDelta = paddingTop + paddingBottom + borderTop + borderBottom; let heightNew = elTextarea.scrollHeight + heightDelta; // If new height is less than 1 linem default to single line height - const heightSingleLine = parseCSSPropertyToFloat(textarea, 'line-height') + heightDelta; + const heightSingleLine = Common.parseFloatWithDefault(textarea.style.heightSingleLine) + heightDelta; if (heightNew < heightSingleLine) heightNew = heightSingleLine; elTextarea.style.height = heightNew + 'px'; diff --git a/static/js/dom.js b/static/js/dom.js index a2520fcf..0f4d2f78 100644 --- a/static/js/dom.js +++ b/static/js/dom.js @@ -37,9 +37,20 @@ export default class DOM { static getCellFromElement(element) { return element.closest('td'); } - static getRowFromElement(element) { - return element.closest('tr'); + static getRowFromElement(element, flagRow) { + let selector = Validation.isEmpty(flagRow) ? 'tr' : 'tr.' + flagRow; + return element.closest(selector); } + static getClosestParent(element, selector) { + let parent = element.parentElement; + while (parent) { + if (parent.matches(selector)) { + return parent; + } + parent = parent.parentElement; + } + return null; + } static convertForm2JSON(elementForm) { let dataForm = {}; if (Validation.isEmpty(elementForm)) { diff --git a/static/js/lib/business_objects.js b/static/js/lib/business_objects/business_objects.js similarity index 88% rename from static/js/lib/business_objects.js rename to static/js/lib/business_objects/business_objects.js index d0f3a1ef..972d7199 100644 --- a/static/js/lib/business_objects.js +++ b/static/js/lib/business_objects/business_objects.js @@ -21,4 +21,7 @@ export default class BusinessObjects { }; } */ + static getObjectText(objectJson) { + return objectJson[objectJson[flagNameAttrOptionText]]; + } } \ No newline at end of file diff --git a/static/js/lib/business_objects/store/product_permutation.js b/static/js/lib/business_objects/store/product_permutation.js new file mode 100644 index 00000000..639920d3 --- /dev/null +++ b/static/js/lib/business_objects/store/product_permutation.js @@ -0,0 +1,34 @@ + + +export default class ProductPermutation { + static getProductVariationsFromIdCsv(csvVariations) { + let productVariations = []; + if (!csvVariations) return productVariations; + let variationPairs = csvVariations.split(','); + if (variationPairs.length == 0) return productVariations; + let parts; + variationPairs.forEach((variationPair) => { + parts = variationPair.split(':'); + if (parts.length == 2) { + let productVariationType = productVariationTypes[parts[0]]; + let productVariation = productVariations[parts[1]]; + if (productVariationType && productVariation) { + productVariations.push([productVariationType, productVariation]); + } + } + }); + return productVariations; + } + static getProductVariationsPreviewFromIdCsv(csvVariations) { + let variations = ProductPermutation.getProductVariationsFromIdCsv(csvVariations); + let preview = ''; + if (variations.length == 0) return preview; + variations.forEach((variation) => { + if (preview.length > 0) { + preview += '\n'; + } + preview += variation[0] + ': ' + variation[1] + ', '; + }); + return preview; + } +} \ No newline at end of file diff --git a/static/js/lib/common.js b/static/js/lib/common.js index 494aba74..afde6fcf 100644 --- a/static/js/lib/common.js +++ b/static/js/lib/common.js @@ -2,50 +2,11 @@ import Validation from "./validation.js"; export default class Common { - static parseCSSPropertyToFloat(element, propertyName) { - var propertyText = element.css(propertyName); - - if (!Validation.isEmpty(propertyText)) { - - propertyText = propertyText.replace('px', ''); - - if (!Validation.isValidNumber(propertyText, true)) return parseFloat(propertyText); - } - - return 0.00; - } - - static setPageToLoading(isLoading) { - - if (isLoading) { - document.querySelectorAll(document.body).classList.add(_dataLoadingFlag); - } - else { - document.querySelectorAll(document.body).classList.remove(_dataLoadingFlag); - } - } - - static setBackgroundToLoading(elId, isLoading) { - - if (Validation.isEmpty(el)) { - - var elObj = document.querySelectorAll(elId); - - if (isLoading) { - - setTimeout(function() { - elObj.innerHTML = ""; - elObj.css({ - "background-image": "url(" + urlImgLoading + ")", - "background-position": "center", - "background-repeat": "no-repeat" - }); - }, 0); - } - else { - elObj.css("background-image", ""); - } + static parseFloatWithDefault(value, defaultValue = 0.00) { + if (!Validation.isEmpty(value) && Validation.isValidNumber(value, true)) { + return parseFloat(value); } + return defaultValue; } static allowClick() { diff --git a/static/js/lib/validation.js b/static/js/lib/validation.js index 02833e62..a8fef2d2 100644 --- a/static/js/lib/validation.js +++ b/static/js/lib/validation.js @@ -151,13 +151,4 @@ export default class Validation { img.onerror = function() { callback(false); }; img.src = url; } - - static validateImageUrl(id, img) { - Validation.imageExists(img, function(exists) { - if (exists) { - document.querySelectorAll("#" + id).css({ "background-image": "url(" + url + ")", "background-size": "35px 35px"}) - } - }) - } - } diff --git a/static/js/pages/base.js b/static/js/pages/base.js index e9cf0b13..33c1064c 100644 --- a/static/js/pages/base.js +++ b/static/js/pages/base.js @@ -1,5 +1,5 @@ -import BusinessObjects from "../lib/business_objects.js"; +import BusinessObjects from "../lib/business_objects/business_objects.js"; import Events from "../lib/events.js"; import LocalStorage from "../lib/local_storage.js"; import API from "../api.js"; @@ -179,7 +179,7 @@ export default class BasePage { Events.initialiseEventHandler(idOverlay, flagInitialised, (overlay) => { overlay.querySelector('button.' + flagCancel).addEventListener("click", (event) => { event.stopPropagation(); - overlay.css('display', 'none'); + overlay.style.display = 'none'; }); }); } @@ -222,9 +222,11 @@ export default class BasePage { if (show) { buttonCancel.classList.remove(flagCollapsed); buttonSave.classList.remove(flagCollapsed); + console.log('showing buttons'); } else { buttonCancel.classList.add(flagCollapsed); buttonSave.classList.add(flagCollapsed); + console.log('hiding buttons'); } } diff --git a/static/js/pages/base_table.js b/static/js/pages/base_table.js index acfdfbf0..a3dbaf3b 100644 --- a/static/js/pages/base_table.js +++ b/static/js/pages/base_table.js @@ -1,5 +1,5 @@ -import BusinessObjects from "../lib/business_objects.js"; +import BusinessObjects from "../lib/business_objects/business_objects.js"; import Events from "../lib/events.js"; import LocalStorage from "../lib/local_storage.js"; import Validation from "../lib/validation.js"; @@ -113,7 +113,7 @@ export default class TableBasePage extends BasePage { return document.querySelector(idFormFilters); } callbackLoadTableContent(response) { - let table = this.getTableMain(); + let table = TableBasePage.getTableMain(); let bodyTable = table.querySelector('tbody'); bodyTable.querySelectorAll('tr').forEach(function(row) { row.remove(); }); let rowsJson = response.data[flagRows]; @@ -123,7 +123,7 @@ export default class TableBasePage extends BasePage { rowsJson.forEach(this.loadRowTable.bind(this)); this.hookupTableMain(); } - getTableMain() { + static getTableMain() { return document.querySelector(idTableMain); } loadRowTable(rowJson) { @@ -168,7 +168,7 @@ export default class TableBasePage extends BasePage { .catch(error => console.error('Error:', error)); } getTableRecords(dirtyOnly = false) { - // let table = this.getTableMain(); + // let table = TableBasePage.getTableMain(); let records = []; let record; document.querySelectorAll(idTableMain + ' > tbody > tr').forEach((row) => { @@ -276,13 +276,13 @@ export default class TableBasePage extends BasePage { * sliderDisplayOrder.addEventListener('change', (event) => { console.log("slider change event"); - this.handleChangeElementCellTable(sliderDisplayOrder); + this.handleChangeNestedElementCellTable(sliderDisplayOrder); }); }); */ this.hookupChangeHandlerTableCells(selectorDisplayOrder); } - hookupChangeHandlerTableCells(inputSelector, handler = (event, element) => { this.handleChangeElementCellTable(event, element); }) { + hookupChangeHandlerTableCells(inputSelector, handler = (event, element) => { this.handleChangeNestedElementCellTable(event, element); }) { Events.initialiseEventHandler(inputSelector, flagInitialised, (input) => { input.addEventListener("change", (event) => { handler(event, input); @@ -291,6 +291,7 @@ export default class TableBasePage extends BasePage { }); // this.hookupEventHandler("change", inputSelector, handler); } + /* handleChangeElementCellTable(event, element) { let row = DOM.getRowFromElement(element); let td = DOM.getCellFromElement(element); @@ -308,8 +309,103 @@ export default class TableBasePage extends BasePage { } } } + handleChangeElementNestedCellTable(event, element, flagColumnList = [], orderNesting = 1) { + let orderNestingTemp = orderNesting; + let row, td, nestedRowSelector; + while (orderNestingTemp > 0) { + nestedRowSelector = idTableMain; + for (let indexOrderNesting = 0; indexOrderNesting < orderNestingTemp; indexOrderNesting++) { + nestedRowSelector += ' tbody tr'; + } + row = DOM.getClosestParent(element, nestedRowSelector); + td = row.querySelector('td.' + flag); + } + let row = DOM.getRowFromElement(element); + let td = DOM.getCellFromElement(element); + let wasDirtyRow = DOM.hasDirtyChildrenNotDeletedContainer(row); + let wasDirtyElement = element.classList.contains(flagDirty); + let isDirtyElement = DOM.updateAndCheckIsElementDirty(element); + if (isDirtyElement != wasDirtyElement) { + DOM.handleDirtyElement(td, isDirtyElement); + let isNowDirtyRow = DOM.hasDirtyChildrenNotDeletedContainer(row); + if (isNowDirtyRow != wasDirtyRow) { + DOM.handleDirtyElement(row, isNowDirtyRow); + let rows = this.getTableRecords(true); + let existsDirtyRecord = rows.length > 0; + this.toggleShowButtonsSaveCancel(existsDirtyRecord); + } + } + } + handleChangeElementSubtableCell(event, element, flagFieldSubtable) { + let rowSubtable = element.closest(idTableMain + ' td.' + flagFieldSubtable + ' tbody tr'); + let rowTable = rowSubtable.closest(idTableMain + ' > tbody > tr'); + let td = DOM.getCellFromElement(element); + // let tdSubtable = td.closest('td.' + flagFieldSubtable); + let wasDirtyRowSubtable = DOM.hasDirtyChildrenNotDeletedContainer(rowSubtable); + let wasDirtyRowTable = DOM.hasDirtyChildrenNotDeletedContainer(rowTable); + let wasDirtyElement = element.classList.contains(flagDirty); + let isDirtyElement = DOM.updateAndCheckIsElementDirty(element); + console.log({isDirtyElement, wasDirtyElement}); + if (isDirtyElement != wasDirtyElement) { + DOM.handleDirtyElement(td, isDirtyElement); + let isNowDirtyRowSubtable = DOM.hasDirtyChildrenNotDeletedContainer(rowSubtable); + console.log({isNowDirtyRowSubtable, wasDirtyRowSubtable}); + if (isNowDirtyRowSubtable != wasDirtyRowSubtable) { + DOM.handleDirtyElement(rowSubtable, isNowDirtyRowSubtable); + let isNowDirtyRowTable = DOM.hasDirtyChildrenNotDeletedContainer(rowTable); + console.log({isNowDirtyRowTable, wasDirtyRowTable}); + if (isNowDirtyRowTable != wasDirtyRowTable) { + DOM.handleDirtyElement(rowTable, isNowDirtyRowTable); + let rows = this.getTableRecords(true); + let existsDirtyRecord = rows.length > 0; + this.toggleShowButtonsSaveCancel(existsDirtyRecord); + } + } + } + } + */ + handleChangeNestedElementCellTable(event, element) { + let wasDirtyParentRows = this.getAllIsDirtyRowsInParentTree(element); + let wasDirtyElement = element.classList.contains(flagDirty); + let isDirtyElement = DOM.updateAndCheckIsElementDirty(element); + console.log({isDirtyElement, wasDirtyElement, wasDirtyParentRows}); + if (isDirtyElement != wasDirtyElement) { + let td = DOM.getCellFromElement(element); + DOM.setElementAttributeValueCurrent(td, DOM.getElementValueCurrent(element)); + this.toggleShowButtonsSaveCancel(isDirtyElement); + this.cascadeChangedIsDirtyNestedElementCellTable(element, isDirtyElement, wasDirtyParentRows); + } + } + getAllIsDirtyRowsInParentTree(element) { + let rows = []; + let parent = element; + let isDirty; + while (parent) { + if (parent.matches('tr')) { + isDirty = parent.classList.contains(flagDirty) + rows.push(isDirty); + } + parent = parent.parentElement; + } + return rows; + } + cascadeChangedIsDirtyNestedElementCellTable(element, isDirtyElement, wasDirtyParentRows) { + if (Validation.isEmpty(wasDirtyParentRows)) return; + let td = DOM.getCellFromElement(element); + let isDirtyTd = isDirtyElement || DOM.hasDirtyChildrenNotDeletedContainer(tr); + DOM.handleDirtyElement(td, isDirtyTd); + let tr = DOM.getRowFromElement(td); + let isDirtyRow = isDirtyTd || DOM.hasDirtyChildrenNotDeletedContainer(tr); + let wasDirtyRow = wasDirtyParentRows.pop(); + console.log({isDirtyRow, wasDirtyRow}); + if (isDirtyRow != wasDirtyRow) { + DOM.handleDirtyElement(tr, isDirtyRow); + this.toggleShowButtonsSaveCancel(isDirtyRow); + this.cascadeChangedIsDirtyNestedElementCellTable(tr.parentElement, isDirtyRow, wasDirtyParentRows); + } + } hookupChangeHandlerTableCellsWhenNotCollapsed(inputSelector, handler = (event, element) => { - if (!element.classList.contains(flagCollapsed)) this.handleChangeElementCellTable(event, element); + if (!element.classList.contains(flagCollapsed)) this.handleChangeNestedElementCellTable(event, element); }) { this.hookupEventHandler("change", inputSelector, handler); } @@ -355,7 +451,7 @@ export default class TableBasePage extends BasePage { return false; } handleDragSliderEnd(event) { - let table = this.getTableMain(); + let table = TableBasePage.getTableMain(); let rows = table.querySelectorAll('tr'); rows.forEach(row => { row.classList.remove(flagDragOver); @@ -381,33 +477,79 @@ export default class TableBasePage extends BasePage { this.hookupChangeHandlerTableCells(idTableMain + ' tbody tr td.' + flagDescription + ' textarea'); } hookupInputsActiveTable() { - this.hookupChangeHandlerTableCells(idTableMain + ' tbody tr td.' + flagActive + ' input[type="checkbox"]'); + this.hookupChangeHandlerTableCells(idTableMain + ' > tbody > tr > td.' + flagActive + ' input[type="checkbox"]'); + } + hookupButtonsRowDelete(selectorButtonDelete, selectorButtonUndelete) { + this.hookupEventHandler("click", selectorButtonDelete, (event, element) => { + this.handleClickButtonRowDelete(event, element, selectorButtonDelete, selectorButtonUndelete); + }); + } + handleClickButtonRowDelete(event, element, selectorButtonDelete, selectorButtonUndelete) { + let row = DOM.getRowFromElement(element); + row.classList.add(flagDelete); + + let buttonAdd = document.createElement("button"); + buttonAdd.classList.add(flagAdd); + buttonAdd.textContent = '+'; + element.replaceWith(buttonAdd); + this.hookupButtonsRowUndelete(selectorButtonDelete, selectorButtonUndelete); + } + hookupButtonsRowUndelete(selectorButtonDelete, selectorButtonUndelete) { + this.hookupEventHandler("click", selectorButtonUndelete, (event, element) => { + this.handleClickButtonRowUndelete(event, element, selectorButtonDelete, selectorButtonUndelete); + }); + } + handleClickButtonRowUndelete(event, element, selectorButtonDelete, selectorButtonUndelete) { + let row = DOM.getRowFromElement(element); + row.classList.add(flagDelete); + + let buttonAdd = document.createElement("button"); + buttonAdd.classList.add(flagAdd); + buttonAdd.textContent = '+'; + element.replaceWith(buttonAdd); + this.hookupButtonsRowDelete(selectorButtonDelete, selectorButtonUndelete); } hookupTdsAccessLevel() { let cellSelector = idTableMain + ' tbody td.' + flagAccessLevel; this.hookupTableCellDdlPreviews(cellSelector, Utils.getListFromDict(accessLevels)); } - hookupTableCellDdlPreviews(cellSelector, optionList, ddlHookup = (event, element) => { this.hookupTableCellDdls(event, element); }) { + hookupTableCellDdlPreviews( + cellSelector + , optionList + , ddlHookup = (cellSelector) => { this.hookupTableCellDdls(cellSelector); } + , changeHandler = (event, element) => { this.handleChangeTableCellDdl(event, element); } + ) { this.hookupEventHandler("click", cellSelector, (event, td) => { // if (td.querySelector('select')) return; - this.handleClickTableCellDdlPreview(event, td, optionList, cellSelector, (event, element) => { ddlHookup(event, element); }); + this.handleClickTableCellDdlPreview( + event + , td + , optionList + , cellSelector + , (cellSelector) => { ddlHookup( + cellSelector + , (event, element) => { changeHandler(event, element); } + ); } + ); }); } - hookupTableCellDdls(ddlSelector) { - this.hookupEventHandler("change", ddlSelector, (event, element) => { this.handleChangeTableCellDdl(event, element); }); + hookupTableCellDdls(ddlSelector, changeHandler = (event, element) => { this.handleChangeTableCellDdl(event, element); }) { + this.hookupEventHandler("change", ddlSelector, (event, element) => { changeHandler(event, element); }); } - handleClickTableCellDdlPreview(event, td, optionObjectList, cellSelector, ddlHookup = (event, element) => { this.hookupTableCellDdls(event, element); }) { + handleClickTableCellDdlPreview(event, td, optionObjectList, cellSelector, ddlHookup = (cellSelector) => { this.hookupTableCellDdls(cellSelector); }) { if (td.querySelector('select')) return; // td.removeEventListener("click", ddlHookup); console.log("click table cell ddl preview"); let tdNew = td.cloneNode(true); td.parentNode.replaceChild(tdNew, td); - let idSelected = tdNew.getAttribute(attrValueCurrent); + let idSelected = DOM.getElementAttributeValueCurrent(tdNew); tdNew.innerHTML = ''; let ddl = document.createElement('select'); - DOM.setElementValuesCurrentAndPrevious(ddl, DOM.getElementAttributeValueCurrent(tdNew)); + DOM.setElementValuesCurrentAndPrevious(ddl, idSelected); let optionJson, option; console.log({optionObjectList, cellSelector}); + option = DOM.createOption(null); + ddl.appendChild(option); optionObjectList.forEach((optionObjectJson) => { optionJson = BusinessObjects.getOptionJsonFromObjectJson(optionObjectJson, idSelected); option = DOM.createOption(optionJson); @@ -450,14 +592,43 @@ export default class TableBasePage extends BasePage { this.handleClickTableCellDdlPreview(event, td, optionList, cellSelector, (event, element) => { ddlHookup(event, element); }); }); } - hookupProductPermutationVariationFields() { + hookupProductCategoryDdls(ddlSelector) { + this.hookupChangeHandlerTableCells(ddlSelector, (event, element) => { this.handleChangeProductCategoryDdl(event, element); }); + } + handleChangeProductCategoryDdl(event, ddlCategory) { + this.handleChangeTableCellDdl(event, ddlCategory); + let idProductCategorySelected = DOM.getElementValueCurrent(ddlCategory); + let row = DOM.getRowFromElement(ddlCategory); + let tdProduct = row.querySelector('td.' + flagProduct); + tdProduct.dispatchEvent(new Event('click')); + let ddlProduct = row.querySelector('td.' + flagProduct + ' select'); + ddlProduct.innerHTML = ''; + ddlProduct.appendChild(DOM.createOption(null)); + let optionJson, option; + Utils.getListFromDict(products).forEach((product) => { + if (idProductCategorySelected != '0' && product[attrIdProductCategory] != idProductCategorySelected) return; + optionJson = BusinessObjects.getOptionJsonFromObjectJson(product); + option = DOM.createOption(optionJson); + ddlProduct.appendChild(option); + }); + this.handleChangeTableCellDdl(event, ddlProduct); + } + hookupFieldsProductPermutationVariation() { + this.hookupPreviewsProductPermutationVariation(); + this.hookupDdlsProductPermutationVariation(); + this.hookupDdlsProductPermutationVariationType(); + this.hookupButtonsProductPermutationVariationAddDelete(); + } + hookupPreviewsProductPermutationVariation() { this.hookupEventHandler("click", idTableMain + ' td.' + flagProductVariations, (event, element) => this.handleClickProductPermutationVariationsPreview(event, element)); } handleClickProductPermutationVariationsPreview(event, element) { + let tblVariations = element.querySelector('table.' + flagProductVariations); + if (!Validation.isEmpty(tblVariations)) return; console.log("click product permutation variations preview"); this.toggleColumnCollapsed(flagProductVariations, false); let permutationVariations = this.getElementProductVariations(element); - let tblVariations = document.createElement("table"); + tblVariations = document.createElement("table"); tblVariations.classList.add(flagProductVariations); let thead = document.createElement("thead"); let tr = document.createElement("tr"); @@ -480,10 +651,7 @@ export default class TableBasePage extends BasePage { tblVariations.appendChild(thead); let tbody = document.createElement("tbody"); console.log('variations:', permutationVariations); - if (Validation.isEmpty(permutationVariations)) { - permutationVariations = [PageStoreProductPermutations.createOptionUnselectedProductVariation()]; - } - else { + if (!Validation.isEmpty(permutationVariations)) { permutationVariations.forEach((permutationVariation, index) => { this.addProductPermutationVariationRow(tbody, permutationVariation); }); @@ -494,10 +662,8 @@ export default class TableBasePage extends BasePage { cellParent.innerHTML = ''; cellParent.appendChild(tblVariations); console.log("tblVariations: ", tblVariations); - let selectorButtonAdd = idTableMain + ' td.' + flagProductVariations + ' button.' + flagAdd; - this.hookupEventHandler("click", selectorButtonAdd, this.handleClickButtonProductPermutationVariationsAdd); - let selectorButtonDelete = idTableMain + ' td.' + flagProductVariations + ' button.' + flagDelete; - this.hookupEventHandler("click", selectorButtonDelete, this.handleClickButtonProductPermutationVariationsDelete); + + this.hookupFieldsProductPermutationVariation(); } toggleColumnCollapsed(flagColumn, isCollapsed) { this.toggleColumnHasClassnameFlag(flagColumn, isCollapsed, flagCollapsed); @@ -555,6 +721,19 @@ export default class TableBasePage extends BasePage { let productVariationKeys = Object.keys(productVariations); let productVariationTypeKeys = Object.keys(productVariationTypes); + let ddlsProductVariationType = tbody.querySelectorAll('select.' + flagProductVariationType); + let productVariationTypeKeysSelected = new Set(); + let valueSelected; + let doFilterProductVariationKeys = permutationVariation[attrIdProductVariationType] != 0; + ddlsProductVariationType.forEach((ddlProductVariationType) => { + valueSelected = DOM.getElementValueCurrent(ddlProductVariationType); + productVariationTypeKeysSelected.add(valueSelected); + }); + productVariationTypeKeys = productVariationTypeKeys.filter(typeKey => !productVariationTypeKeysSelected.has(typeKey)); + if (productVariationTypeKeys.length == 0) return; + if (doFilterProductVariationKeys) { + productVariationKeys = productVariationKeys.filter(variationKey => !productVariationTypeKeysSelected.has(productVariations[variationKey][attrIdProductVariationType])); + } console.log("permutationVariation: ", permutationVariation); let permutationVariationJson = permutationVariation[flagProductVariation]; let permutationVariationTypeJson = permutationVariation[flagProductVariationType]; @@ -612,6 +791,7 @@ export default class TableBasePage extends BasePage { buttonDelete.textContent = 'x'; let tr = document.createElement("tr"); + tr.classList.add(flagProductVariation); tdVariationType.appendChild(ddlVariationType); tr.appendChild(tdVariationType); tdVariation.appendChild(ddlVariation); @@ -620,13 +800,39 @@ export default class TableBasePage extends BasePage { tr.appendChild(tdDelete); tbody.appendChild(tr); } - handleClickButtonProductPermutationVariationsDelete(event, element) { - let row = getRowFromElement(element); - let variationsCell = row.closest('td.' + flagProductVariations); - row.remove(); - this.updateProductPermutationVariations(variationsCell); + hookupDdlsProductPermutationVariation() { + this.hookupTableCellDdls(idTableMain + ' td.' + flagProductVariations + ' td.' + flagProductVariation); } - updateProductPermutationVariations(variationsCell) { + hookupDdlsProductPermutationVariationType() { + this.hookupTableCellDdls(idTableMain + ' td.' + flagProductVariations + ' td.' + flagProductVariationType); + } + hookupButtonsProductPermutationVariationAddDelete() { + let selectorButton = idTableMain + ' td.' + flagProductVariations + ' tr.' + flagProductVariation + ' button'; + let selectorButtonDelete = selectorButton + '.' + flagDelete; + let selectorButtonUndelete = selectorButton + '.' + flagAdd; + this.hookupButtonsRowDelete(selectorButtonDelete, selectorButtonUndelete, (event, element) => { + this.handleClickButtonRowDelete(event, element); + this.updateProductPermutationVariations(element); + }); + this.hookupButtonsRowUndelete(selectorButtonDelete, selectorButtonUndelete); + this.hookupButtonsProductPermutationVariationAdd(); + } + hookupButtonsProductPermutationVariationAdd() { + this.hookupEventHandler( + "click" + , idTableMain + ' td.' + flagProductVariations + ' button.' + flagAdd + , (event, element) => { this.handleClickButtonProductPermutationVariationAdd(event, element); } + ); + } + handleClickButtonProductPermutationVariationAdd(event, element) { + let variationsCell = element.closest('td.' + flagProductVariations); + let tbody = variationsCell.querySelector('tbody'); + let permutationVariation = TableBasePage.createOptionUnselectedProductVariation(); + this.addProductPermutationVariationRow(tbody, permutationVariation); + this.hookupFieldsProductPermutationVariation(); + } + updateProductPermutationVariations(element) { + let variationsCell = element.closest('td.' + flagProductVariations); let variationPairsString = this.getProductPermutationVariationsText(variationsCell); variationsCell.setAttribute(attrValueCurrent, variationPairsString); DOM.isElementDirty(variationsCell); @@ -662,7 +868,7 @@ export default class TableBasePage extends BasePage { } toggleColumnHasClassnameFlag(columnFlag, isRequiredFlag, classnameFlag) { - let table = this.getTableMain(); + let table = TableBasePage.getTableMain(); let columnTh = table.querySelector('th.' + columnFlag); let columnThHasFlag = columnTh.classList.contains(classnameFlag); if (isRequiredFlag == columnThHasFlag) return; @@ -673,7 +879,7 @@ export default class TableBasePage extends BasePage { }); } toggleColumnHeaderHasClassnameFlag(columnFlag, isRequiredFlag, classnameFlag) { - let table = this.getTableMain(); + let table = TableBasePage.getTableMain(); let columnTh = table.querySelector('th.' + columnFlag); DOM.toggleElementHasClassnameFlag(columnTh, isRequiredFlag, classnameFlag); } diff --git a/static/js/pages/store/manufacturing_purchase_orders.js b/static/js/pages/store/manufacturing_purchase_orders.js index 950253ac..0a160d1a 100644 --- a/static/js/pages/store/manufacturing_purchase_orders.js +++ b/static/js/pages/store/manufacturing_purchase_orders.js @@ -1,6 +1,6 @@ import API from "../../api.js"; -import BusinessObjects from "../../lib/business_objects.js"; +import BusinessObjects from "../../lib/business_objects/business_objects.js"; import DOM from "../../dom.js"; import Events from "../../lib/events.js"; import TableBasePage from "../base_table.js"; @@ -8,11 +8,11 @@ import Utils from "../../lib/utils.js"; import Validation from "../../lib/validation.js"; import StoreTableMixinPage from "./mixin_table.js"; -export default class PageStoreSupplierPurchaseOrders extends TableBasePage { - static hash = hashPageStoreSupplierPurchaseOrders; - static attrIdRowObject = attrIdSupplierPurchaseOrder; - callFilterTableContent = API.getSupplierPurchaseOrdersByFilters; - callSaveTableContent = API.saveSupplierPurchaseOrders; +export default class PageStoreManufacturingPurchaseOrders extends TableBasePage { + static hash = hashPageStoreManufacturingPurchaseOrders; + static attrIdRowObject = attrIdManufacturingPurchaseOrder; + callFilterTableContent = API.getManufacturingPurchaseOrdersByFilters; + callSaveTableContent = API.saveManufacturingPurchaseOrders; constructor(router) { super(router); @@ -37,20 +37,53 @@ export default class PageStoreSupplierPurchaseOrders extends TableBasePage { let inputCostTotalLocalVatIncl = row.querySelector('td.' + flagCostTotalLocalVatIncl + ' input'); let inputPriceTotalLocalVatExcl = row.querySelector('td.' + flagPriceTotalLocalVatExcl + ' input'); let inputPriceTotalLocalVatIncl = row.querySelector('td.' + flagPriceTotalLocalVatIncl + ' input'); - let tdItems = row.querySelector('td.' + flagItems); + let tdItems = row.querySelector('td.' + flagOrderItems); let checkboxActive = row.querySelector('td.' + flagActive + ' textarea'); let jsonRow = {}; - jsonRow[attrIdSupplierPurchaseOrder] = row.getAttribute(attrIdSupplierPurchaseOrder); + jsonRow[attrIdManufacturingPurchaseOrder] = row.getAttribute(attrIdManufacturingPurchaseOrder); jsonRow[attrIdCurrency] = DOM.getElementAttributeValueCurrent(tdCurrency); jsonRow[flagCostTotalLocalVatExcl] = DOM.getElementAttributeValueCurrent(inputCostTotalLocalVatExcl); jsonRow[flagCostTotalLocalVatIncl] = DOM.getElementAttributeValueCurrent(inputCostTotalLocalVatIncl); jsonRow[flagPriceTotalLocalVatExcl] = DOM.getElementAttributeValueCurrent(inputPriceTotalLocalVatExcl); jsonRow[flagPriceTotalLocalVatIncl] = DOM.getElementAttributeValueCurrent(inputPriceTotalLocalVatIncl); - jsonRow[flagItems] = DOM.getElementAttributeValueCurrent(tdItems); + // jsonRow[flagOrderItems] = DOM.getElementAttributeValueCurrent(tdItems); + let orderItems = []; + trsPurchaseOrderItem.forEach((tr) => { + orderItems.push(this.getJsonRowOrderItem(tr)); + }); + jsonRow[flagOrderItems] = orderItems; jsonRow[flagActive] = DOM.getElementAttributeValueCurrent(checkboxActive); return jsonRow; } + getJsonRowOrderItem(tr) { + let inputDisplayOrder = tr.querySelector('td.' + flagDisplayOrder + ' input'); + let tdCategory = tr.querySelector('td.' + flagProductCategory); + let tdProduct = tr.querySelector('td.' + flagProduct); + let tdVariations = tr.querySelector('td.' + flagProductVariations); + let tdUnitQuantity = tr.querySelector('td.' + flagUnitMeasurementQuantity); + let inputQuantityUsed = tr.querySelector('td.' + flagQuantityUsed + ' input'); + let inputQuantityProduced = tr.querySelector('td.' + flagQuantityProduced + ' input'); + let inputLatencyManufacture = tr.querySelector('td.' + flagLatencyManufacture + ' input'); + let checkboxActive = tr.querySelector('td.' + flagActive + ' input'); + + let jsonRow = {}; + jsonRow[attrIdManufacturingPurchaseOrder] = tr.getAttribute(attrIdManufacturingPurchaseOrder); + jsonRow[attrIdManufacturingPurchaseOrderProductLink] = tr.getAttribute(attrIdManufacturingPurchaseOrderProductLink); + jsonRow[flagDisplayOrder] = DOM.getElementAttributeValueCurrent(inputDisplayOrder); + jsonRow[attrIdProductCategory] = DOM.getElementAttributeValueCurrent(tdCategory); + jsonRow[attrIdProduct] = DOM.getElementAttributeValueCurrent(tdProduct); + jsonRow[flagProductVariations] = DOM.getElementAttributeValueCurrent(tdVariations); + jsonRow[attrIdUnitMeasurementQuantity] = DOM.getElementAttributeValueCurrent(tdUnitQuantity); + jsonRow[flagQuantityUsed] = DOM.getElementAttributeValueCurrent(inputQuantityUsed); + jsonRow[flagQuantityProduced] = DOM.getElementAttributeValueCurrent(inputQuantityProduced); + jsonRow[flagCostTotalLocalVatExcl] = DOM.getElementAttributeValueCurrent(inputCostTotalLocalVatExcl); + jsonRow[flagCostTotalLocalVatIncl] = DOM.getElementAttributeValueCurrent(inputCostTotalLocalVatIncl); + jsonRow[flagLatencyManufacture] = DOM.getElementAttributeValueCurrent(inputLatencyManufacture); + jsonRow[flagActive] = DOM.getElementAttributeValueCurrent(checkboxActive); + + return jsonRow; + } initialiseRowNew(row) { super.initialiseRowNew(row); } @@ -60,7 +93,7 @@ export default class PageStoreSupplierPurchaseOrders extends TableBasePage { this.hookupCurrencyFields(); this.hookupCostInputs(); this.hookupOrderItemsFields(); - this.hookupActiveCheckboxes(); + this.hookupInputsActiveTable(); } hookupCostInputs() { this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagCostTotalLocalVatExcl + ' input'); @@ -69,10 +102,390 @@ export default class PageStoreSupplierPurchaseOrders extends TableBasePage { this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagPriceTotalLocalVatIncl + ' input'); } hookupOrderItemsFields() { - + this.hookupOrderItemsPreviews(); + this.hookupFieldsOrderItemDisplayOrder(); + this.hookupFieldsOrderItemProductCategory(); + this.hookupFieldsOrderItemProduct(); + this.hookupFieldsOrderItemProductVariations(); + this.hookupFieldsOrderItemUnitQuantity(); + this.hookupFieldsOrderItemQuantityUsed(); + this.hookupFieldsOrderItemQuantityProduced(); + this.hookupFieldsOrderItemCostTotalLocalVatExcl(); + this.hookupFieldsOrderItemCostTotalLocalVatIncl(); + this.hookupFieldsOrderItemLatencyManufacture(); + this.hookupFieldsOrderItemActive(); + this.hookupFieldsOrderItemAddDelete(); + this.hookupButtonsOrderItemAdd(); } - hookupActiveCheckboxes(){ - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagActive + ' input'); + hookupOrderItemsPreviews() { + this.hookupEventHandler("click", idTableMain + ' td.' + flagOrderItems, (event, td) => { + if (!td.classList.contains(flagCollapsed)) return; + this.handleClickOrderItemsPreview(event, td); + }); + } + handleClickOrderItemsPreview(event, element) { + console.log("click order items preview"); + this.toggleColumnHeaderCollapsed(flagOrderItems, false); + element.classList.remove(flagCollapsed); + + let row = DOM.getRowFromElement(element); + let idManufacturingPurchaseOrder = row.getAttribute(attrIdManufacturingPurchaseOrder); + let manufacturingPurchaseOrderProductLinksList = idManufacturingPurchaseOrder > 0 ? manufacturingPurchaseOrderProductLinks[idManufacturingPurchaseOrder] : []; + let tblOrderItems = document.createElement("table"); + tblOrderItems.classList.add(flagOrderItems); + let thead = document.createElement("thead"); + let tr = document.createElement("tr"); + + let thDisplayOrder = document.createElement("th"); + thDisplayOrder.classList.add(flagDisplayOrder); + thDisplayOrder.textContent = 'Display Order'; + let thCategory = document.createElement("th"); + thCategory.classList.add(flagProductCategory); + thCategory.textContent = 'Category'; + let thProduct = document.createElement("th"); + thProduct.classList.add(flagProduct); + thProduct.textContent = 'Product'; + let thVariations = document.createElement("th"); + thVariations.classList.add(flagProductVariations); + thVariations.classList.add(flagCollapsed); + thVariations.textContent = 'Variations'; + let thUnitQuantity = document.createElement("th"); + thUnitQuantity.classList.add(flagUnitMeasurementQuantity); + thUnitQuantity.textContent = 'Unit Quantity'; + let thQuantityUsed = document.createElement("th"); + thQuantityUsed.classList.add(flagQuantityUsed); + thQuantityUsed.textContent = 'Quantity Ordered'; + let thQuantityProduced = document.createElement("th"); + thQuantityProduced.classList.add(flagQuantityProduced); + thQuantityProduced.textContent = 'Quantity Received'; + let thCostTotalLocalVatExcl = document.createElement("th"); + thCostTotalLocalVatExcl.classList.add(flagCostTotalLocalVatExcl); + thCostTotalLocalVatExcl.textContent = 'Cost Total Local VAT Excl'; + let thCostTotalLocalVatIncl = document.createElement("th"); + thCostTotalLocalVatIncl.classList.add(flagCostTotalLocalVatIncl); + thCostTotalLocalVatIncl.textContent = 'Cost Total Local VAT Incl'; + let thCostUnitLocalVatExcl = document.createElement("th"); + thCostUnitLocalVatExcl.classList.add(flagCostUnitLocalVatExcl); + thCostUnitLocalVatExcl.textContent = 'Cost Unit Local VAT Excl'; + let thCostUnitLocalVatIncl = document.createElement("th"); + thCostUnitLocalVatIncl.classList.add(flagCostUnitLocalVatIncl); + thCostUnitLocalVatIncl.textContent = 'Cost Unit Local VAT Incl'; + let thLatencyManufacture = document.createElement("th"); + thLatencyManufacture.classList.add(flagLatencyManufacture); + thLatencyManufacture.textContent = 'Latency Delivery (Days)'; + let thActive = document.createElement("th"); + thActive.classList.add(flagActive); + thActive.textContent = 'Active'; + let thAddDelete = document.createElement("th"); + thAddDelete.classList.add(flagAdd); + let buttonAdd = document.createElement("button"); + buttonAdd.classList.add(flagAdd); + buttonAdd.textContent = '+'; + thAddDelete.appendChild(buttonAdd); + + tr.appendChild(thDisplayOrder); + tr.appendChild(thCategory); + tr.appendChild(thProduct); + tr.appendChild(thVariations); + tr.appendChild(thUnitQuantity); + tr.appendChild(thQuantityUsed); + tr.appendChild(thQuantityProduced); + tr.appendChild(thCostTotalLocalVatExcl); + tr.appendChild(thCostTotalLocalVatIncl); + tr.appendChild(thCostUnitLocalVatExcl); + tr.appendChild(thCostUnitLocalVatIncl); + tr.appendChild(thLatencyManufacture); + tr.appendChild(thActive); + tr.appendChild(thAddDelete); + thead.appendChild(tr); + tblOrderItems.appendChild(thead); + + let tbody = document.createElement("tbody"); + manufacturingPurchaseOrderProductLinksList.forEach((orderItem, index) => { + this.addRowManufacturingPurchaseOrderItem(tbody, orderItem); + }); + tblOrderItems.appendChild(tbody); + + let cell = DOM.getCellFromElement(element); + let cellNew = cell.cloneNode(false); + cellNew.appendChild(tblOrderItems); + row.replaceChild(cellNew, cell); + console.log("tblOrderItems: ", tblOrderItems); + this.hookupOrderItemsFields(); + } + addRowManufacturingPurchaseOrderItem(tbody, orderItem) { // productVariationTypeOptions, productVariationOptions, productCategoryOptions, productOptions, unitMeasurementOptions, + console.log("addRowManufacturingPurchaseOrderItem: ", orderItem); + + let tdDisplayOrder = document.createElement("td"); + tdDisplayOrder.classList.add(flagDisplayOrder); + let inputDisplayOrder = document.createElement("input"); + inputDisplayOrder.classList.add(flagDisplayOrder); + inputDisplayOrder.type = 'number'; + inputDisplayOrder.step = 1; + DOM.setElementValuesCurrentAndPrevious(inputDisplayOrder, orderItem[flagDisplayOrder]); + tdDisplayOrder.appendChild(inputDisplayOrder); + + let tdCategory = document.createElement("td"); + tdCategory.classList.add(flagProductCategory); + DOM.setElementAttributesValuesCurrentAndPrevious(tdCategory, orderItem[attrIdProductCategory]); + let divCategory = document.createElement("div"); + divCategory.classList.add(flagProductCategory); + // DOM.setElementAttributesValuesCurrentAndPrevious(divCategory, orderItem[attrIdProductCategory]); + divCategory.textContent = orderItem[flagProductCategory]; + tdCategory.appendChild(divCategory); + + let tdProduct = document.createElement("td"); + tdProduct.classList.add(flagProduct); + DOM.setElementAttributesValuesCurrentAndPrevious(tdProduct, orderItem[attrIdProductCategory]); + let divProduct = document.createElement("div"); + divProduct.classList.add(flagProduct); + // DOM.setElementAttributesValuesCurrentAndPrevious(divProduct, orderItem[attrIdProduct]); + divProduct.textContent = orderItem[flagProduct]; + tdProduct.appendChild(divProduct); + + let tdVariations = document.createElement("td"); + tdVariations.classList.add(flagProductVariations); + DOM.setElementAttributesValuesCurrentAndPrevious(tdVariations, orderItem[attrIdProductCategory]); + let divVariations = document.createElement("div"); + divVariations.classList.add(flagProductVariations); + // DOM.setElementAttributesValuesCurrentAndPrevious(divVariations, orderItem[attrIdProductVariation]); + divVariations.textContent = orderItem[flagProductVariations]; + tdVariations.appendChild(divVariations); + + let tdUnitQuantity = document.createElement("td"); + tdUnitQuantity.classList.add(flagUnitMeasurementQuantity); + DOM.setElementAttributesValuesCurrentAndPrevious(tdUnitQuantity, orderItem[attrIdProductCategory]); + let divUnitQuantity = document.createElement("div"); + divUnitQuantity.classList.add(flagUnitMeasurementQuantity); + // DOM.setElementValuesCurrentAndPrevious(divUnitQuantity, orderItem[flagUnitMeasurementQuantity]); + tdUnitQuantity.appendChild(divUnitQuantity); + + let tdQuantityUsed = document.createElement("td"); + tdQuantityUsed.classList.add(flagQuantityUsed); + let inputQuantityUsed = document.createElement("input"); + inputQuantityUsed.classList.add(flagQuantityUsed); + inputQuantityUsed.type = 'number'; + DOM.setElementAttributesValuesCurrentAndPrevious(inputQuantityUsed, orderItem[flagQuantityUsed]); + tdQuantityUsed.appendChild(inputQuantityUsed); + + let tdQuantityProduced = document.createElement("td"); + tdQuantityProduced.classList.add(flagQuantityProduced); + let inputQuantityProduced = document.createElement("input"); + inputQuantityProduced.classList.add(flagQuantityProduced); + inputQuantityProduced.type = 'number'; + DOM.setElementAttributesValuesCurrentAndPrevious(inputQuantityProduced, orderItem[flagQuantityProduced]); + tdQuantityProduced.appendChild(inputQuantityProduced); + + let tdCostTotalLocalVatExcl = document.createElement("td"); + tdCostTotalLocalVatExcl.classList.add(flagCostTotalLocalVatExcl); + let inputCostTotalLocalVatExcl = document.createElement("input"); + inputCostTotalLocalVatExcl.classList.add(flagCostTotalLocalVatExcl); + inputCostTotalLocalVatExcl.type = 'number'; + inputCostTotalLocalVatExcl.step = 0.01; + DOM.setElementAttributesValuesCurrentAndPrevious(inputCostTotalLocalVatExcl, orderItem[flagCostTotalLocalVatExcl]); + tdCostTotalLocalVatExcl.appendChild(inputCostTotalLocalVatExcl); + + let tdCostTotalLocalVatIncl = document.createElement("td"); + tdCostTotalLocalVatIncl.classList.add(flagCostTotalLocalVatIncl); + let inputCostTotalLocalVatIncl = document.createElement("input"); + inputCostTotalLocalVatIncl.classList.add(flagCostTotalLocalVatIncl); + inputCostTotalLocalVatIncl.type = 'number'; + inputCostTotalLocalVatIncl.step = 0.01; + DOM.setElementAttributesValuesCurrentAndPrevious(inputCostTotalLocalVatIncl, orderItem[flagCostTotalLocalVatIncl]); + tdCostTotalLocalVatIncl.appendChild(inputCostTotalLocalVatIncl); + + let tdCostUnitLocalVatExcl = document.createElement("td"); + tdCostUnitLocalVatExcl.classList.add(flagCostUnitLocalVatExcl); + let divCostUnitLocalVatExcl = document.createElement("div"); + divCostUnitLocalVatExcl.classList.add(flagCostUnitLocalVatExcl); + DOM.setElementValuesCurrentAndPrevious(divCostUnitLocalVatExcl, orderItem[flagCostUnitLocalVatExcl]); + tdCostUnitLocalVatExcl.appendChild(divCostUnitLocalVatExcl); + + let tdCostUnitLocalVatIncl = document.createElement("td"); + tdCostUnitLocalVatIncl.classList.add(flagCostUnitLocalVatIncl); + let divCostUnitLocalVatIncl = document.createElement("div"); + divCostUnitLocalVatIncl.classList.add(flagCostUnitLocalVatIncl); + DOM.setElementValuesCurrentAndPrevious(divCostUnitLocalVatIncl, orderItem[flagCostUnitLocalVatIncl]); + tdCostUnitLocalVatIncl.appendChild(divCostUnitLocalVatIncl); + + let tdLatencyManufacture = document.createElement("td"); + tdLatencyManufacture.classList.add(flagLatencyManufacture); + let inputLatencyManufacture = document.createElement("input"); + inputLatencyManufacture.classList.add(flagLatencyManufacture); + inputLatencyManufacture.type = 'number'; + inputLatencyManufacture.step = 1; + DOM.setElementAttributesValuesCurrentAndPrevious(inputLatencyManufacture, orderItem[flagLatencyManufacture]); + tdLatencyManufacture.appendChild(inputLatencyManufacture); + + let tdActive = document.createElement("td"); + tdActive.classList.add(flagActive); + let checkboxActive = document.createElement("input"); + checkboxActive.classList.add(flagActive); + checkboxActive.type = 'checkbox'; + DOM.setElementValuesCurrentAndPrevious(checkboxActive, orderItem[flagActive]); + tdActive.appendChild(checkboxActive); + + let tdDelete = document.createElement("td"); + tdDelete.classList.add(flagDelete); + let buttonDelete = document.createElement("button"); + buttonDelete.classList.add(flagDelete); + buttonDelete.textContent = 'x'; + tdDelete.appendChild(buttonDelete); + + let tr = document.createElement("tr"); + tr.classList.add(flagOrderItems); + tr.setAttribute(attrIdManufacturingPurchaseOrder, orderItem[attrIdManufacturingPurchaseOrder]); + tr.setAttribute(attrIdManufacturingPurchaseOrderProductLink, orderItem[attrIdManufacturingPurchaseOrderProductLink]); + tr.appendChild(tdDisplayOrder); + tr.appendChild(tdCategory); + tr.appendChild(tdProduct); + tr.appendChild(tdVariations); + tr.appendChild(tdUnitQuantity); + tr.appendChild(tdQuantityUsed); + tr.appendChild(tdQuantityProduced); + tr.appendChild(tdCostTotalLocalVatExcl); + tr.appendChild(tdCostTotalLocalVatIncl); + tr.appendChild(tdCostUnitLocalVatExcl); + tr.appendChild(tdCostUnitLocalVatIncl); + tr.appendChild(tdLatencyManufacture); + tr.appendChild(tdActive); + tr.appendChild(tdDelete); + tbody.appendChild(tr); + } + hookupFieldsOrderItemDisplayOrder() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' td.' + flagDisplayOrder + ' input'); + } + hookupFieldsOrderItemProductCategory() { + this.hookupTableCellDdlPreviews( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagProductCategory + , Utils.getListFromDict(productCategories) + , (cellSelector) => { this.hookupProductCategoryDdls(cellSelector); } + ); + } + hookupFieldsOrderItemProduct() { + this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagOrderItems + ' td.' + flagProduct, Utils.getListFromDict(products)); + } + hookupFieldsOrderItemProductVariations() { + this.hookupEventHandler("click", idTableMain + ' td.' + flagOrderItems + ' td.' + flagProductVariations, (event, element) => this.handleClickProductPermutationVariationsPreview(event, element)); + } + handleChangeElementProductVariationsSubtableCell(event, element) { + this.handleChangeNestedElementCellTable(event, element); // , flagProductVariations); + } + hookupFieldsOrderItemUnitQuantity() { + this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagOrderItems + ' td.' + flagUnitMeasurementQuantity, Utils.getListFromDict(unitMeasurements)); + } + hookupFieldsOrderItemQuantityUsed() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' td.' + flagQuantityUsed + ' input'); + } + hookupFieldsOrderItemQuantityProduced() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' td.' + flagQuantityProduced + ' input'); + } + hookupFieldsOrderItemPriceTotalLocalVatExcl() { + this.hookupChangeHandlerTableCells( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagPriceTotalLocalVatExcl + ' input' + , (event, element) => { + this.handleChangeNestedElementCellTable(event, element); + this.updateFieldsPriceUnitLocalVatExcl(element); + } + ); + } + hookupFieldsOrderItemPriceTotalLocalVatIncl() { + this.hookupChangeHandlerTableCells( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagPriceTotalLocalVatIncl + ' input' + , (event, element) => { + this.handleChangeNestedElementCellTable(event, element); + this.updateFieldsPriceUnitLocalVatIncl(element); + } + ); + } + updateFieldsPriceUnitLocalVatExcl(elementChanged) { + let row = elementChanged.closest('tr.' + flagOrderItems); + let inputPriceTotalLocalVatExcl = row.querySelector('td.' + flagPriceTotalLocalVatExcl + ' input'); + let priceTotalLocalVatExcl = DOM.getElementValueCurrent(inputPriceTotalLocalVatExcl); + let inputQuantityUsed = row.querySelector('td.' + flagQuantityUsed + ' input'); + let quantityUsed = DOM.getElementValueCurrent(inputQuantityUsed); + + let divPriceUnitLocalVatExcl = row.querySelector('td.' + flagPriceUnitLocalVatExcl + ' div'); + let priceUnitLocalVatExcl = quantityUsed == 0 ? 0 : priceTotalLocalVatExcl / quantityUsed; + DOM.setElementValuesCurrentAndPrevious(divPriceUnitLocalVatExcl, priceUnitLocalVatExcl); + + let rowManufacturingPurchaseOrder = row.closest(idTableMain + ' > tbody > tr'); + let divPriceGrandTotalLocalVatExcl = rowManufacturingPurchaseOrder.querySelector('td.' + flagPriceTotalLocalVatExcl + ' div'); + let inputsPriceTotalLocalVatExcl = rowManufacturingPurchaseOrder.querySelectorAll('td.' + flagOrderItems + ' td.' + flagPriceTotalLocalVatExcl + ' input'); + let priceGrandTotalLocalVatExcl = Array.from(inputsPriceTotalLocalVatExcl).reduce((acc, input) => acc + Number(DOM.getElementValueCurrent(input)), 0); + DOM.setElementValueCurrent(divPriceGrandTotalLocalVatExcl, priceGrandTotalLocalVatExcl); + } + updateFieldsPriceUnitLocalVatIncl(elementChanged) { + let row = elementChanged.closest('tr.' + flagOrderItems); + let inputPriceTotalLocalVatIncl = row.querySelector('td.' + flagPriceTotalLocalVatIncl + ' input'); + let priceTotalLocalVatIncl = DOM.getElementValueCurrent(inputPriceTotalLocalVatIncl); + let inputQuantityUsed = row.querySelector('td.' + flagQuantityUsed + ' input'); + let quantityUsed = DOM.getElementValueCurrent(inputQuantityUsed); + + let divPriceUnitLocalVatIncl = row.querySelector('td.' + flagPriceUnitLocalVatIncl + ' div'); + let priceUnitLocalVatIncl = quantityUsed == 0 ? 0 : priceTotalLocalVatIncl / quantityUsed; + DOM.setElementValuesCurrentAndPrevious(divPriceUnitLocalVatIncl, priceUnitLocalVatIncl); + + let rowManufacturingPurchaseOrder = row.closest(idTableMain + ' > tbody > tr'); + let divPriceGrandTotalLocalVatIncl = rowManufacturingPurchaseOrder.querySelector('td.' + flagPriceTotalLocalVatIncl + ' div'); + let inputsPriceTotalLocalVatIncl = rowManufacturingPurchaseOrder.querySelectorAll('td.' + flagOrderItems + ' td.' + flagPriceTotalLocalVatIncl + ' input'); + let priceGrandTotalLocalVatIncl = Array.from(inputsPriceTotalLocalVatIncl).reduce((acc, input) => acc + Number(DOM.getElementValueCurrent(input)), 0); + DOM.setElementValueCurrent(divPriceGrandTotalLocalVatIncl, priceGrandTotalLocalVatIncl); + } + hookupFieldsOrderItemPriceUnitLocalVatExcl() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' td.' + flagPriceUnitLocalVatExcl + ' input'); + } + hookupFieldsOrderItemPriceUnitLocalVatIncl() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' td.' + flagPriceUnitLocalVatIncl + ' input'); + } + hookupFieldsOrderItemUnitMeasurementLatencyManufacture() { + this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagOrderItems + ' td.' + flagUnitMeasurementLatencyManufacture, Utils.getListFromDict(unitMeasurementsTime)); + } + hookupFieldsOrderItemLatencyManufacture() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' td.' + flagLatencyManufacture + ' input'); + } + hookupFieldsOrderItemActive() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' input.' + flagActive); + } + hookupFieldsOrderItemAddDelete() { + let selectorButton = idTableMain + ' td.' + flagOrderItems + ' td.' + flagOrderItems + ' button'; + let selectorButtonDelete = selectorButton + '.' + flagDelete; + let selectorButtonUndelete = selectorButton + '.' + flagAdd; + this.hookupButtonsRowDelete(selectorButtonDelete, selectorButtonUndelete); + this.hookupButtonsRowUndelete(selectorButtonDelete, selectorButtonUndelete); + this.hookupButtonsOrderItemAdd(); + } + hookupButtonsOrderItemAdd() { + this.hookupEventHandler("click", idTableMain + ' td.' + flagOrderItems + ' th button.' + flagAdd, (event, element) => { + let row = element.closest(idTableMain + ' > tbody > tr'); + let idManufacturingPurchaseOrder = row.getAttribute(attrIdManufacturingPurchaseOrder); + let hasActiveOrderItem = row.querySelectorAll('td.' + flagOrderItems + ' input.' + flagActive + ':checked').length > 0; + let countManufacturingOrderItemes = row.querySelectorAll('td.' + flagOrderItems + ' td.' + flagManufacturingPurchaseOrder).length; + let manufacturingPurchaseOrderItem = { + [attrIdManufacturingPurchaseOrder]: idManufacturingPurchaseOrder, + [attrIdManufacturingPurchaseOrderProductLink]: -1 - countManufacturingOrderItemes, + [attrIdProductCategory]: 0, + [attrIdProduct]: 0, + [flagProductVariations]: '', + [attrIdUnitMeasurementQuantity]: 0, + [flagQuantityUsed]: '', + [flagQuantityProduced]: '', + [attrIdUnitMeasurementLatencyManufacture]: 0, + [flagLatencyManufacture]: '', + [flagDisplayOrder]: countManufacturingOrderItems + 1, + [flagActive]: !hasActiveOrderItem, + }; + let tbody = row.querySelector('td.' + flagOrderItems + ' table tbody'); + this.addRowManufacturingOrderItem(tbody, manufacturingPurchaseOrderItem); + /* + if (!hasActiveOrderItem) { + let tdOrderItem = row.querySelector('td.' + flagOrderItems); + // tdOrderItem.setAttribute(attrIdManufacturingOrderItem, manufacturingPurchaseOrderItem[attrIdManufacturingOrderItem]); + DOM.setElementAttributeValueCurrent(tdOrderItem, manufacturingPurchaseOrderItem[attrIdManufacturingOrderItem]); + } + */ + this.hookupOrderItemsFields(); + }); } leave() { diff --git a/static/js/pages/store/product_categories.js b/static/js/pages/store/product_categories.js index 3261451d..f65f3f86 100644 --- a/static/js/pages/store/product_categories.js +++ b/static/js/pages/store/product_categories.js @@ -60,7 +60,7 @@ export default class PageStoreProductCategories extends TableBasePage { DOM.setElementValuesCurrentAndPrevious(inputActive, rowJson[flagActive]); row.setAttribute(rowJson[flagKeyPrimary], rowJson[rowJson[flagKeyPrimary]]); - let table = this.getTableMain(); + let table = TableBasePage.getTableMain(); let bodyTable = table.querySelector('tbody'); bodyTable.appendChild(row); } diff --git a/static/js/pages/store/product_permutations.js b/static/js/pages/store/product_permutations.js index 8c6fc0cf..1418c3bc 100644 --- a/static/js/pages/store/product_permutations.js +++ b/static/js/pages/store/product_permutations.js @@ -1,6 +1,6 @@ import API from "../../api.js"; -import BusinessObjects from "../../lib/business_objects.js"; +import BusinessObjects from "../../lib/business_objects/business_objects.js"; import DOM from "../../dom.js"; import Events from "../../lib/events.js"; import TableBasePage from "../base_table.js"; @@ -69,7 +69,7 @@ export default class PageStoreProductPermutations extends TableBasePage { loadRowTable(rowJson) { /* if (rowJson == null) return; - let tableMain = this.getTableMain(); + let tableMain = TableBasePage.getTableMain(); let row = _rowBlank.cloneNode(true); row.classList.remove(flagRowNew); console.log("applying data row: ", rowJson); @@ -100,8 +100,8 @@ export default class PageStoreProductPermutations extends TableBasePage { DOM.setElementValuesCurrentAndPrevious(ddlCurrencyCost, rowJson[flagCurrencyCost]); let inputProfitLocalMin = row.querySelector('td.' + flagProfitLocalMin + ' input'); DOM.setElementValuesCurrentAndPrevious(inputProfitLocalMin, rowJson[flagProfitLocalMin]); - let inputLatencyManufactureDays = row.querySelector('td.' + flagLatencyManufactureDays + ' input'); - DOM.setElementValuesCurrentAndPrevious(inputLatencyManufactureDays, rowJson[flagLatencyManufactureDays]); + let inputLatencyManufactureDays = row.querySelector('td.' + flagLatencyManufacture + ' input'); + DOM.setElementValuesCurrentAndPrevious(inputLatencyManufactureDays, rowJson[flagLatencyManufacture]); let inputQuantityStock = row.querySelector('td.' + flagQuantityStock + ' input'); DOM.setElementValuesCurrentAndPrevious(inputQuantityStock, rowJson[flagQuantityStock]); let inputQuantityMin = row.querySelector('td.' + flagQuantityMin + ' input'); @@ -133,7 +133,7 @@ export default class PageStoreProductPermutations extends TableBasePage { let inputCostLocal = row.querySelector('td.' + flagCostLocal + ' input'); let tdCurrencyCost = row.querySelector('td.' + flagCurrencyCost); let inputProfitLocalMin = row.querySelector('td.' + flagProfitLocalMin + ' input'); - let inputLatencyManufactureDays = row.querySelector('td.' + flagLatencyManufactureDays + ' input'); + let inputLatencyManufactureDays = row.querySelector('td.' + flagLatencyManufacture + ' input'); let inputQuantityStock = row.querySelector('td.' + flagQuantityStock + ' input'); let inputQuantityMin = row.querySelector('td.' + flagQuantityMin + ' input'); let inputQuantityMax = row.querySelector('td.' + flagQuantityMax + ' input'); @@ -158,7 +158,7 @@ export default class PageStoreProductPermutations extends TableBasePage { jsonRow[flagCostLocal] = inputCostLocal.getAttribute(attrValueCurrent); jsonRow[flagCurrencyCost] = tdCurrencyCost.getAttribute(attrValueCurrent); jsonRow[flagProfitLocalMin] = inputProfitLocalMin.getAttribute(attrValueCurrent); - jsonRow[flagLatencyManufactureDays] = inputLatencyManufactureDays.getAttribute(attrValueCurrent); + jsonRow[flagLatencyManufacture] = inputLatencyManufactureDays.getAttribute(attrValueCurrent); jsonRow[flagQuantityStock] = inputQuantityStock.getAttribute(attrValueCurrent); jsonRow[flagQuantityMin] = inputQuantityMin.getAttribute(attrValueCurrent); jsonRow[flagQuantityMax] = inputQuantityMax.getAttribute(attrValueCurrent); @@ -197,9 +197,9 @@ export default class PageStoreProductPermutations extends TableBasePage { hookupTableMain() { super.hookupTableMain(); - this.hookupProductCategoryFields(); + this.hookupFieldsProductCategory(); this.hookupProductFields(); - this.hookupProductPermutationVariationFields(); + this.hookupFieldsProductPermutationVariation(); this.hookupDescriptionTextareas(); this.hookupCostFields(); this.hookupLatencyManufactureInputs(); @@ -209,39 +209,16 @@ export default class PageStoreProductPermutations extends TableBasePage { this.hookupExpirationFields(); this.hookupActiveCheckboxes(); } - hookupProductCategoryFields() { - this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagProductCategory, Utils.getListFromDict(productCategories), (event, element) => { this.hookupProductCategoryDdls(event, element); }); - } - hookupProductCategoryDdls(ddlSelector) { - this.hookupChangeHandlerTableCells(ddlSelector, (event, element) => { this.handleChangeProductCategoryDdl(event, element); }); - } - handleChangeProductCategoryDdl(event, ddlCategory) { - this.handleChangeTableCellDdl(event, ddlCategory); - let idProductCategorySelected = DOM.getElementValueCurrent(ddlCategory); - let row = DOM.getRowFromElement(ddlCategory); - let tdProduct = row.querySelector('td.' + flagProduct); - tdProduct.dispatchEvent(new Event('click')); - let ddlProduct = row.querySelector('td.' + flagProduct + ' select'); - ddlProduct.innerHTML = ''; - ddlProduct.appendChild(DOM.createOption(null)); - let optionJson, option; - Utils.getListFromDict(products).forEach((product) => { - if (product[attrIdProductCategory] != idProductCategorySelected) return; - optionJson = BusinessObjects.getOptionJsonFromObjectJson(product); - option = DOM.createOption(optionJson); - ddlProduct.appendChild(option); - }); - this.handleChangeTableCellDdl(event, ddlProduct); + hookupFieldsProductCategory() { + this.hookupTableCellDdlPreviews( + idTableMain + ' td.' + flagProductCategory + , Utils.getListFromDict(productCategories) + , (cellSelector) => { this.hookupProductCategoryDdls(cellSelector); } + ); } hookupProductFields() { this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagProduct, Utils.getListFromDict(products)); } - handleClickButtonProductPermutationVariationsAdd(event, element) { - let row = DOM.getRowFromElement(element); - let tbody = row.querySelector('tbody'); - let permutationVariation = PageStoreProductPermutations.createOptionUnselectedProductVariation(); - this.addProductPermutationVariationRow(tbody, permutationVariation); - } hookupDescriptionTextareas() { this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagDescription + ' textarea'); @@ -269,7 +246,7 @@ export default class PageStoreProductPermutations extends TableBasePage { this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagProfitLocalMin + ' input'); } hookupLatencyManufactureInputs(){ - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagLatencyManufactureDays + ' input'); + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagLatencyManufacture + ' input'); } hookupQuantityFields(){ this.hookupQuantityMinInputs(); @@ -301,7 +278,7 @@ export default class PageStoreProductPermutations extends TableBasePage { } hookupIsSubscriptionFields(){ this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagIsSubscription + ' input', (event, element) => { - this.handleChangeElementCellTable(event, element); + this.handleChangeNestedElementCellTable(event, element); let isSubscription = DOM.getElementValueCurrent(element); let row = DOM.getRowFromElement(element); let inputCountIntervalRecurrence = row.querySelector('td.' + flagCountUnitMeasurementIntervalRecurrence + ' input'); @@ -333,7 +310,7 @@ export default class PageStoreProductPermutations extends TableBasePage { } hookupDoesExpireFasterOnceUnsealedCheckboxes(){ this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagDoesExpireFasterOnceUnsealed + ' input', (event, element) => { - this.handleChangeElementCellTable(event, element); + this.handleChangeNestedElementCellTable(event, element); let doesExpireFasterOnceUnsealed = DOM.getElementValueCurrent(element); let row = DOM.getRowFromElement(element); let inputCountIntervalExpirationUnsealed = row.querySelector('td.' + flagCountUnitMeasurementIntervalExpirationUnsealed + ' input'); diff --git a/static/js/pages/store/products.js b/static/js/pages/store/products.js index e5cc5a1d..c207405a 100644 --- a/static/js/pages/store/products.js +++ b/static/js/pages/store/products.js @@ -61,7 +61,7 @@ export default class PageStoreProducts extends TableBasePage { DOM.setElementValuesCurrentAndPrevious(inputActive, rowJson[flagActive]); row.setAttribute(rowJson[flagKeyPrimary], rowJson[rowJson[flagKeyPrimary]]); - let table = this.getTableMain(); + let table = TableBasePage.getTableMain(); let bodyTable = table.querySelector('tbody'); bodyTable.appendChild(row); } diff --git a/static/js/pages/store/stock_items.js b/static/js/pages/store/stock_items.js index 24c1f09c..b1ed9796 100644 --- a/static/js/pages/store/stock_items.js +++ b/static/js/pages/store/stock_items.js @@ -1,6 +1,6 @@ import API from "../../api.js"; -import BusinessObjects from "../../lib/business_objects.js"; +import BusinessObjects from "../../lib/business_objects/business_objects.js"; import DOM from "../../dom.js"; import Events from "../../lib/events.js"; import TableBasePage from "../base_table.js"; @@ -133,7 +133,7 @@ export default class PageStoreStockItems extends TableBasePage { super.hookupTableMain(); this.hookupProductCategoryFields(); this.hookupProductFields(); - this.hookupProductPermutationVariationFields(); + this.hookupFieldsProductPermutationVariation(); this.hookupCurrencyCostFields(); this.hookupCostInputs(); this.hookupOrderDateInputs(); @@ -144,28 +144,11 @@ export default class PageStoreStockItems extends TableBasePage { this.hookupActiveCheckboxes(); } hookupProductCategoryFields() { - this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagProductCategory, Utils.getListFromDict(productCategories), (event, element) => { this.hookupProductCategoryDdls(event, element); }); - } - hookupProductCategoryDdls(ddlSelector) { - this.hookupChangeHandlerTableCells(ddlSelector, (event, element) => { this.handleChangeProductCategoryDdl(event, element); }); - } - handleChangeProductCategoryDdl(event, ddlCategory) { - this.handleChangeTableCellDdl(event, ddlCategory); - let idProductCategorySelected = DOM.getElementValueCurrent(ddlCategory); - let row = DOM.getRowFromElement(ddlCategory); - let tdProduct = row.querySelector('td.' + flagProduct); - tdProduct.dispatchEvent(new Event('click')); - let ddlProduct = row.querySelector('td.' + flagProduct + ' select'); - ddlProduct.innerHTML = ''; - ddlProduct.appendChild(DOM.createOption(null)); - let optionJson, option; - Utils.getListFromDict(products).forEach((product) => { - if (product[attrIdProductCategory] != idProductCategorySelected) return; - optionJson = BusinessObjects.getOptionJsonFromObjectJson(product); - option = DOM.createOption(optionJson); - ddlProduct.appendChild(option); - }); - this.handleChangeTableCellDdl(event, ddlProduct); + this.hookupTableCellDdlPreviews( + idTableMain + ' td.' + flagProductCategory + , Utils.getListFromDict(productCategories) + , (event, element) => { this.hookupProductCategoryDdls(event, element); } + ); } hookupProductFields() { this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagProduct, Utils.getListFromDict(products)); @@ -317,7 +300,7 @@ export default class PageStoreStockItems extends TableBasePage { } hookupIsSealedFields(){ this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagIsSealed + ' input', (event, element) => { - this.handleChangeElementCellTable(event, element); + this.handleChangeNestedElementCellTable(event, element); let isSealed = DOM.getElementValueCurrent(element); let row = DOM.getRowFromElement(element); let inputDateUnsealed = row.querySelector('td.' + flagDateUnsealed + ' input'); @@ -342,7 +325,7 @@ export default class PageStoreStockItems extends TableBasePage { } hookupIsConsumedFields(){ this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagIsConsumed + ' input', (event, element) => { - this.handleChangeElementCellTable(event, element); + this.handleChangeNestedElementCellTable(event, element); let isConsumed = DOM.getElementValueCurrent(element); let row = DOM.getRowFromElement(element); let inputDateConsumed = row.querySelector('td.' + flagDateConsumed + ' input'); diff --git a/static/js/pages/store/supplier_purchase_orders.js b/static/js/pages/store/supplier_purchase_orders.js index fd45b5b2..c5184cce 100644 --- a/static/js/pages/store/supplier_purchase_orders.js +++ b/static/js/pages/store/supplier_purchase_orders.js @@ -1,8 +1,9 @@ import API from "../../api.js"; -import BusinessObjects from "../../lib/business_objects.js"; +import BusinessObjects from "../../lib/business_objects/business_objects.js"; import DOM from "../../dom.js"; import Events from "../../lib/events.js"; +import ProductPermutation from "../../lib/business_objects/store/product_permutation.js"; import TableBasePage from "../base_table.js"; import Utils from "../../lib/utils.js"; import Validation from "../../lib/validation.js"; @@ -36,8 +37,8 @@ export default class PageStoreSupplierPurchaseOrders extends TableBasePage { let tdCurrency = row.querySelector('td.' + flagCurrency); let inputCostTotalLocalVatExcl = row.querySelector('td.' + flagCostTotalLocalVatExcl + ' input'); let inputCostTotalLocalVatIncl = row.querySelector('td.' + flagCostTotalLocalVatIncl + ' input'); - let tdItems = row.querySelector('td.' + flagItems); - let checkboxActive = row.querySelector('td.' + flagActive + ' textarea'); + let trsPurchaseOrderItem = row.querySelectorAll('tr.' + flagOrderItems); + let checkboxActive = row.querySelector('td.' + flagActive + ' input[type="checkbox"]'); let jsonRow = {}; jsonRow[attrIdSupplierPurchaseOrder] = row.getAttribute(attrIdSupplierPurchaseOrder); @@ -45,10 +46,47 @@ export default class PageStoreSupplierPurchaseOrders extends TableBasePage { jsonRow[attrIdCurrency] = DOM.getElementAttributeValueCurrent(tdCurrency); jsonRow[flagCostTotalLocalVatExcl] = DOM.getElementAttributeValueCurrent(inputCostTotalLocalVatExcl); jsonRow[flagCostTotalLocalVatIncl] = DOM.getElementAttributeValueCurrent(inputCostTotalLocalVatIncl); - jsonRow[flagItems] = DOM.getElementAttributeValueCurrent(tdItems); + // jsonRow[flagOrderItems] = DOM.getElementAttributeValueCurrent(tdItems); + let orderItems = []; + if (trsPurchaseOrderItem != null) { + trsPurchaseOrderItem.forEach((tr) => { + orderItems.push(this.getJsonRowOrderItem(tr)); + }); + } + jsonRow[flagOrderItems] = orderItems; jsonRow[flagActive] = DOM.getElementAttributeValueCurrent(checkboxActive); return jsonRow; } + getJsonRowOrderItem(tr) { + let inputDisplayOrder = tr.querySelector('td.' + flagDisplayOrder + ' input'); + let tdCategory = tr.querySelector('td.' + flagProductCategory); + let tdProduct = tr.querySelector('td.' + flagProduct); + let tdVariations = tr.querySelector('td.' + flagProductVariations); + let tdUnitQuantity = tr.querySelector('td.' + flagUnitMeasurementQuantity); + let inputQuantityOrdered = tr.querySelector('td.' + flagQuantityOrdered + ' input'); + let inputQuantityReceived = tr.querySelector('td.' + flagQuantityReceived + ' input'); + let inputCostTotalLocalVatExcl = tr.querySelector('td.' + flagCostTotalLocalVatExcl + ' input'); + let inputCostTotalLocalVatIncl = tr.querySelector('td.' + flagCostTotalLocalVatIncl + ' input'); + let inputLatencyDeliveryDays = tr.querySelector('td.' + flagLatencyDeliveryDays + ' input'); + let checkboxActive = tr.querySelector('td.' + flagActive + ' input'); + + let jsonRow = {}; + jsonRow[attrIdSupplierPurchaseOrder] = tr.getAttribute(attrIdSupplierPurchaseOrder); + jsonRow[attrIdSupplierPurchaseOrderProductLink] = tr.getAttribute(attrIdSupplierPurchaseOrderProductLink); + jsonRow[flagDisplayOrder] = DOM.getElementAttributeValueCurrent(inputDisplayOrder); + jsonRow[attrIdProductCategory] = DOM.getElementAttributeValueCurrent(tdCategory); + jsonRow[attrIdProduct] = DOM.getElementAttributeValueCurrent(tdProduct); + jsonRow[flagProductVariations] = DOM.getElementAttributeValueCurrent(tdVariations); + jsonRow[attrIdUnitMeasurementQuantity] = DOM.getElementAttributeValueCurrent(tdUnitQuantity); + jsonRow[flagQuantityOrdered] = DOM.getElementAttributeValueCurrent(inputQuantityOrdered); + jsonRow[flagQuantityReceived] = DOM.getElementAttributeValueCurrent(inputQuantityReceived); + jsonRow[flagCostTotalLocalVatExcl] = DOM.getElementAttributeValueCurrent(inputCostTotalLocalVatExcl); + jsonRow[flagCostTotalLocalVatIncl] = DOM.getElementAttributeValueCurrent(inputCostTotalLocalVatIncl); + jsonRow[flagLatencyDeliveryDays] = DOM.getElementAttributeValueCurrent(inputLatencyDeliveryDays); + jsonRow[flagActive] = DOM.getElementAttributeValueCurrent(checkboxActive); + + return jsonRow; + } initialiseRowNew(row) { super.initialiseRowNew(row); } @@ -59,7 +97,7 @@ export default class PageStoreSupplierPurchaseOrders extends TableBasePage { this.hookupCurrencyFields(); this.hookupCostInputs(); this.hookupOrderItemsFields(); - this.hookupActiveCheckboxes(); + this.hookupInputsActiveTable(); } hookupSupplierFields() { this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagSupplier, Utils.getListFromDict(suppliers)); @@ -69,12 +107,416 @@ export default class PageStoreSupplierPurchaseOrders extends TableBasePage { this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagCostTotalLocalVatIncl + ' input'); } hookupOrderItemsFields() { - + this.hookupOrderItemsPreviews(); + this.hookupFieldsOrderItemDisplayOrder(); + this.hookupFieldsOrderItemProductCategory(); + this.hookupFieldsOrderItemProduct(); + // this.hookupFieldsOrderItemProductVariations(); + this.hookupFieldsProductPermutationVariation(); + this.hookupFieldsOrderItemUnitQuantity(); + this.hookupFieldsOrderItemQuantityOrdered(); + this.hookupFieldsOrderItemQuantityReceived(); + this.hookupFieldsOrderItemCostTotalLocalVatExcl(); + this.hookupFieldsOrderItemCostTotalLocalVatIncl(); + this.hookupFieldsOrderItemLatencyDeliveryDays(); + this.hookupFieldsOrderItemActive(); + this.hookupFieldsOrderItemAddDelete(); } - hookupActiveCheckboxes(){ - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagActive + ' input'); + hookupOrderItemsPreviews() { + this.hookupEventHandler("click", idTableMain + ' td.' + flagOrderItems, (event, td) => { + if (!td.classList.contains(flagCollapsed)) return; + this.handleClickOrderItemsPreview(event, td); + }); } + handleClickOrderItemsPreview(event, element) { + console.log("click order items preview"); + this.toggleColumnHeaderCollapsed(flagOrderItems, false); + element.classList.remove(flagCollapsed); + let row = DOM.getRowFromElement(element); + let idSupplierPurchaseOrder = row.getAttribute(attrIdSupplierPurchaseOrder); + if (idSupplierPurchaseOrder == null || idSupplierPurchaseOrder < 1) return; + let supplierPurchaseOrder = supplierPurchaseOrders[idSupplierPurchaseOrder]; + let tblOrderItems = document.createElement("table"); + tblOrderItems.classList.add(flagOrderItems); + let thead = document.createElement("thead"); + let tr = document.createElement("tr"); + + let thDisplayOrder = document.createElement("th"); + thDisplayOrder.classList.add(flagDisplayOrder); + thDisplayOrder.textContent = 'Display Order'; + let thCategory = document.createElement("th"); + thCategory.classList.add(flagProductCategory); + thCategory.textContent = 'Category'; + let thProduct = document.createElement("th"); + thProduct.classList.add(flagProduct); + thProduct.textContent = 'Product'; + let thVariations = document.createElement("th"); + thVariations.classList.add(flagProductVariations); + thVariations.classList.add(flagCollapsed); + thVariations.textContent = 'Variations'; + let thUnitQuantity = document.createElement("th"); + thUnitQuantity.classList.add(flagUnitMeasurementQuantity); + thUnitQuantity.textContent = 'Unit Quantity'; + let thQuantityOrdered = document.createElement("th"); + thQuantityOrdered.classList.add(flagQuantityOrdered); + thQuantityOrdered.textContent = 'Quantity Ordered'; + let thQuantityReceived = document.createElement("th"); + thQuantityReceived.classList.add(flagQuantityReceived); + thQuantityReceived.textContent = 'Quantity Received'; + let thCostTotalLocalVatExcl = document.createElement("th"); + thCostTotalLocalVatExcl.classList.add(flagCostTotalLocalVatExcl); + thCostTotalLocalVatExcl.textContent = 'Cost Total Local VAT Excl'; + let thCostTotalLocalVatIncl = document.createElement("th"); + thCostTotalLocalVatIncl.classList.add(flagCostTotalLocalVatIncl); + thCostTotalLocalVatIncl.textContent = 'Cost Total Local VAT Incl'; + let thCostUnitLocalVatExcl = document.createElement("th"); + thCostUnitLocalVatExcl.classList.add(flagCostUnitLocalVatExcl); + thCostUnitLocalVatExcl.textContent = 'Cost Unit Local VAT Excl'; + let thCostUnitLocalVatIncl = document.createElement("th"); + thCostUnitLocalVatIncl.classList.add(flagCostUnitLocalVatIncl); + thCostUnitLocalVatIncl.textContent = 'Cost Unit Local VAT Incl'; + let thLatencyDeliveryDays = document.createElement("th"); + thLatencyDeliveryDays.classList.add(flagLatencyDeliveryDays); + thLatencyDeliveryDays.textContent = 'Latency Delivery (Days)'; + let thActive = document.createElement("th"); + thActive.classList.add(flagActive); + thActive.textContent = 'Active'; + let thAddDelete = document.createElement("th"); + thAddDelete.classList.add(flagAdd); + let buttonAdd = document.createElement("button"); + buttonAdd.classList.add(flagAdd); + buttonAdd.textContent = '+'; + thAddDelete.appendChild(buttonAdd); + + tr.appendChild(thDisplayOrder); + tr.appendChild(thCategory); + tr.appendChild(thProduct); + tr.appendChild(thVariations); + tr.appendChild(thUnitQuantity); + tr.appendChild(thQuantityOrdered); + tr.appendChild(thQuantityReceived); + tr.appendChild(thCostTotalLocalVatExcl); + tr.appendChild(thCostTotalLocalVatIncl); + tr.appendChild(thCostUnitLocalVatExcl); + tr.appendChild(thCostUnitLocalVatIncl); + tr.appendChild(thLatencyDeliveryDays); + tr.appendChild(thActive); + tr.appendChild(thAddDelete); + thead.appendChild(tr); + tblOrderItems.appendChild(thead); + + let tbody = document.createElement("tbody"); + supplierPurchaseOrder[flagOrderItems].forEach((orderItem, index) => { + this.addRowSupplierPurchaseOrderItem(tbody, orderItem); + }); + tblOrderItems.appendChild(tbody); + + let cell = DOM.getCellFromElement(element); + let cellNew = cell.cloneNode(false); + cellNew.appendChild(tblOrderItems); + row.replaceChild(cellNew, cell); + console.log("tblOrderItems: ", tblOrderItems); + this.hookupOrderItemsFields(); + } + addRowSupplierPurchaseOrderItem(tbody, orderItem) { // productVariationTypeOptions, productVariationOptions, productCategoryOptions, productOptions, unitMeasurementOptions, + console.log("addRowSupplierPurchaseOrderItem: ", orderItem); + + let tdDisplayOrder = document.createElement("td"); + tdDisplayOrder.classList.add(flagDisplayOrder); + let inputDisplayOrder = document.createElement("input"); + inputDisplayOrder.classList.add(flagDisplayOrder); + inputDisplayOrder.type = 'number'; + inputDisplayOrder.step = 1; + DOM.setElementValuesCurrentAndPrevious(inputDisplayOrder, orderItem[flagDisplayOrder]); + tdDisplayOrder.appendChild(inputDisplayOrder); + + let tdCategory = document.createElement("td"); + tdCategory.classList.add(flagProductCategory); + DOM.setElementAttributesValuesCurrentAndPrevious(tdCategory, orderItem[attrIdProductCategory]); + let divCategory = document.createElement("div"); + divCategory.classList.add(flagProductCategory); + DOM.setElementAttributesValuesCurrentAndPrevious(divCategory, orderItem[attrIdProductCategory]); + // divCategory.textContent = orderItem[flagProductCategory]; + let productCategory = productCategories[orderItem[attrIdProductCategory]]; + divCategory.textContent = BusinessObjects.getObjectText(productCategory); + tdCategory.appendChild(divCategory); + + let tdProduct = document.createElement("td"); + tdProduct.classList.add(flagProduct); + DOM.setElementAttributesValuesCurrentAndPrevious(tdProduct, orderItem[attrIdProduct]); + let divProduct = document.createElement("div"); + divProduct.classList.add(flagProduct); + DOM.setElementAttributesValuesCurrentAndPrevious(divProduct, orderItem[attrIdProduct]); + // divProduct.textContent = orderItem[flagProduct]; + let product = products[orderItem[attrIdProduct]]; + divProduct.textContent = BusinessObjects.getObjectText(product); + tdProduct.appendChild(divProduct); + + let tdVariations = document.createElement("td"); + tdVariations.classList.add(flagProductVariations); + DOM.setElementAttributesValuesCurrentAndPrevious(tdVariations, orderItem[attrIdProductVariation]); + let divVariations = document.createElement("div"); + divVariations.classList.add(flagProductVariations); + DOM.setElementAttributesValuesCurrentAndPrevious(divVariations, orderItem[attrIdProductVariation]); + // divVariations.textContent = orderItem[flagProductVariations]; + let variationsText = ProductPermutation.getProductVariationsPreviewFromIdCsv(orderItem[flagProductVariations]); + divVariations.textContent = variationsText; + tdVariations.appendChild(divVariations); + + let tdUnitQuantity = document.createElement("td"); + tdUnitQuantity.classList.add(flagUnitMeasurementQuantity); + DOM.setElementAttributesValuesCurrentAndPrevious(tdUnitQuantity, orderItem[attrIdUnitMeasurementQuantity]); + let divUnitQuantity = document.createElement("div"); + divUnitQuantity.classList.add(flagUnitMeasurementQuantity); + DOM.setElementAttributesValuesCurrentAndPrevious(divUnitQuantity, orderItem[attrIdUnitMeasurementQuantity]); + let unitQuantity = unitMeasurements[orderItem[attrIdUnitMeasurementQuantity]]; + divUnitQuantity.textContent = BusinessObjects.getObjectText(unitQuantity); + tdUnitQuantity.appendChild(divUnitQuantity); + + let tdQuantityOrdered = document.createElement("td"); + tdQuantityOrdered.classList.add(flagQuantityOrdered); + let inputQuantityOrdered = document.createElement("input"); + inputQuantityOrdered.classList.add(flagQuantityOrdered); + inputQuantityOrdered.type = 'number'; + DOM.setElementValuesCurrentAndPrevious(inputQuantityOrdered, orderItem[flagQuantityOrdered]); + tdQuantityOrdered.appendChild(inputQuantityOrdered); + + let tdQuantityReceived = document.createElement("td"); + tdQuantityReceived.classList.add(flagQuantityReceived); + let inputQuantityReceived = document.createElement("input"); + inputQuantityReceived.classList.add(flagQuantityReceived); + inputQuantityReceived.type = 'number'; + DOM.setElementValuesCurrentAndPrevious(inputQuantityReceived, orderItem[flagQuantityReceived]); + tdQuantityReceived.appendChild(inputQuantityReceived); + + let tdCostTotalLocalVatExcl = document.createElement("td"); + tdCostTotalLocalVatExcl.classList.add(flagCostTotalLocalVatExcl); + let inputCostTotalLocalVatExcl = document.createElement("input"); + inputCostTotalLocalVatExcl.classList.add(flagCostTotalLocalVatExcl); + inputCostTotalLocalVatExcl.type = 'number'; + inputCostTotalLocalVatExcl.step = 0.01; + DOM.setElementValuesCurrentAndPrevious(inputCostTotalLocalVatExcl, orderItem[flagCostTotalLocalVatExcl]); + tdCostTotalLocalVatExcl.appendChild(inputCostTotalLocalVatExcl); + + let tdCostTotalLocalVatIncl = document.createElement("td"); + tdCostTotalLocalVatIncl.classList.add(flagCostTotalLocalVatIncl); + let inputCostTotalLocalVatIncl = document.createElement("input"); + inputCostTotalLocalVatIncl.classList.add(flagCostTotalLocalVatIncl); + inputCostTotalLocalVatIncl.type = 'number'; + inputCostTotalLocalVatIncl.step = 0.01; + DOM.setElementValuesCurrentAndPrevious(inputCostTotalLocalVatIncl, orderItem[flagCostTotalLocalVatIncl]); + tdCostTotalLocalVatIncl.appendChild(inputCostTotalLocalVatIncl); + + let tdCostUnitLocalVatExcl = document.createElement("td"); + tdCostUnitLocalVatExcl.classList.add(flagCostUnitLocalVatExcl); + let divCostUnitLocalVatExcl = document.createElement("div"); + divCostUnitLocalVatExcl.classList.add(flagCostUnitLocalVatExcl); + DOM.setElementValuesCurrentAndPrevious(divCostUnitLocalVatExcl, orderItem[flagCostUnitLocalVatExcl]); + tdCostUnitLocalVatExcl.appendChild(divCostUnitLocalVatExcl); + + let tdCostUnitLocalVatIncl = document.createElement("td"); + tdCostUnitLocalVatIncl.classList.add(flagCostUnitLocalVatIncl); + let divCostUnitLocalVatIncl = document.createElement("div"); + divCostUnitLocalVatIncl.classList.add(flagCostUnitLocalVatIncl); + DOM.setElementValuesCurrentAndPrevious(divCostUnitLocalVatIncl, orderItem[flagCostUnitLocalVatIncl]); + tdCostUnitLocalVatIncl.appendChild(divCostUnitLocalVatIncl); + + let tdLatencyDeliveryDays = document.createElement("td"); + tdLatencyDeliveryDays.classList.add(flagLatencyDeliveryDays); + let inputLatencyDeliveryDays = document.createElement("input"); + inputLatencyDeliveryDays.classList.add(flagLatencyDeliveryDays); + inputLatencyDeliveryDays.type = 'number'; + inputLatencyDeliveryDays.step = 1; + DOM.setElementValuesCurrentAndPrevious(inputLatencyDeliveryDays, orderItem[flagLatencyDeliveryDays]); + tdLatencyDeliveryDays.appendChild(inputLatencyDeliveryDays); + + let tdActive = document.createElement("td"); + tdActive.classList.add(flagActive); + let checkboxActive = document.createElement("input"); + checkboxActive.classList.add(flagActive); + checkboxActive.type = 'checkbox'; + DOM.setElementValuesCurrentAndPrevious(checkboxActive, orderItem[flagActive]); + tdActive.appendChild(checkboxActive); + + let tdDelete = document.createElement("td"); + tdDelete.classList.add(flagDelete); + let buttonDelete = document.createElement("button"); + buttonDelete.classList.add(flagDelete); + buttonDelete.textContent = 'x'; + tdDelete.appendChild(buttonDelete); + + let tr = document.createElement("tr"); + tr.classList.add(flagOrderItems); + tr.setAttribute(attrIdSupplierPurchaseOrder, orderItem[attrIdSupplierPurchaseOrder]); + tr.setAttribute(attrIdSupplierPurchaseOrderProductLink, orderItem[attrIdSupplierPurchaseOrderProductLink]); + tr.appendChild(tdDisplayOrder); + tr.appendChild(tdCategory); + tr.appendChild(tdProduct); + tr.appendChild(tdVariations); + tr.appendChild(tdUnitQuantity); + tr.appendChild(tdQuantityOrdered); + tr.appendChild(tdQuantityReceived); + tr.appendChild(tdCostTotalLocalVatExcl); + tr.appendChild(tdCostTotalLocalVatIncl); + tr.appendChild(tdCostUnitLocalVatExcl); + tr.appendChild(tdCostUnitLocalVatIncl); + tr.appendChild(tdLatencyDeliveryDays); + tr.appendChild(tdActive); + tr.appendChild(tdDelete); + tbody.appendChild(tr); + } + hookupFieldsOrderItemDisplayOrder() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' td.' + flagDisplayOrder + ' input'); + } + hookupFieldsOrderItemProductCategory() { + this.hookupTableCellDdlPreviews( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagProductCategory + , Utils.getListFromDict(productCategories) + , (cellSelector) => { this.hookupProductCategoryDdls(cellSelector); } + ); + } + hookupFieldsOrderItemProduct() { + this.hookupTableCellDdlPreviews(idTableMain + ' td.' + flagOrderItems + ' td.' + flagProduct, Utils.getListFromDict(products)); + } + /* + hookupFieldsOrderItemProductVariations() { + this.hookupEventHandler("click", idTableMain + ' td.' + flagOrderItems + ' td.' + flagProductVariations, (event, element) => this.handleClickProductPermutationVariationsPreview(event, element)); + } + */ + handleChangeElementProductVariationsSubtableCell(event, element) { + this.handleChangeNestedElementCellTable(event, element); // flagProductVariations); + } + hookupDdlsProductPermutationVariation() { + this.hookupTableCellDdls( + idTableMain + ' td.' + flagProductVariations + ' td.' + flagProductVariation + , (event, element) => { this.handleChangeElementProductVariationsSubtableCell(event, element); } + ); + } + hookupDdlsProductPermutationVariationType() { + this.hookupTableCellDdls( + idTableMain + ' td.' + flagProductVariations + ' td.' + flagProductVariationType + , (event, element) => { this.handleChangeElementProductVariationsSubtableCell(event, element); } + ); + } + hookupFieldsOrderItemUnitQuantity() { + this.hookupTableCellDdlPreviews( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagUnitMeasurementQuantity + , Utils.getListFromDict(unitMeasurements) + ); + } + hookupFieldsOrderItemQuantityOrdered() { + this.hookupChangeHandlerTableCells( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagQuantityOrdered + ' input' + ); + } + hookupFieldsOrderItemQuantityReceived() { + this.hookupChangeHandlerTableCells( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagQuantityReceived + ' input' + ); + } + hookupFieldsOrderItemCostTotalLocalVatExcl() { + this.hookupChangeHandlerTableCells( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagCostTotalLocalVatExcl + ' input' + , (event, element) => { + this.handleChangeNestedElementCellTable(event, element); // flagCostTotalLocalVatExcl); + this.updateFieldsCostUnitLocalVatExcl(element); + } + ); + } + hookupFieldsOrderItemCostTotalLocalVatIncl() { + this.hookupChangeHandlerTableCells( + idTableMain + ' td.' + flagOrderItems + ' td.' + flagCostTotalLocalVatIncl + ' input' + , (event, element) => { + this.handleChangeNestedElementCellTable(event, element); // flagCostTotalLocalVatIncl); + this.updateFieldsCostUnitLocalVatIncl(element); + } + ); + } + updateFieldsCostUnitLocalVatExcl(elementChanged) { + let row = elementChanged.closest('tr.' + flagOrderItems); + let inputCostTotalLocalVatExcl = row.querySelector('td.' + flagCostTotalLocalVatExcl + ' input'); + let costTotalLocalVatExcl = DOM.getElementValueCurrent(inputCostTotalLocalVatExcl); + let inputQuantityOrdered = row.querySelector('td.' + flagQuantityOrdered + ' input'); + let quantityOrdered = DOM.getElementValueCurrent(inputQuantityOrdered); + + let divCostUnitLocalVatExcl = row.querySelector('td.' + flagCostUnitLocalVatExcl + ' div'); + let costUnitLocalVatExcl = quantityOrdered == 0 ? 0 : costTotalLocalVatExcl / quantityOrdered; + DOM.setElementValuesCurrentAndPrevious(divCostUnitLocalVatExcl, costUnitLocalVatExcl); + + let rowSupplierPurchaseOrder = row.closest(idTableMain + ' > tbody > tr'); + let divCostGrandTotalLocalVatExcl = rowSupplierPurchaseOrder.querySelector('td.' + flagCostTotalLocalVatExcl + ' div'); + let inputsCostTotalLocalVatExcl = rowSupplierPurchaseOrder.querySelectorAll('td.' + flagOrderItems + ' td.' + flagCostTotalLocalVatExcl + ' input'); + let costGrandTotalLocalVatExcl = Array.from(inputsCostTotalLocalVatExcl).reduce((acc, input) => acc + Number(DOM.getElementValueCurrent(input)), 0); + DOM.setElementValueCurrent(divCostGrandTotalLocalVatExcl, costGrandTotalLocalVatExcl); + } + updateFieldsCostUnitLocalVatIncl(elementChanged) { + let row = elementChanged.closest('tr.' + flagOrderItems); + let inputCostTotalLocalVatIncl = row.querySelector('td.' + flagCostTotalLocalVatIncl + ' input'); + let costTotalLocalVatIncl = DOM.getElementValueCurrent(inputCostTotalLocalVatIncl); + let inputQuantityOrdered = row.querySelector('td.' + flagQuantityOrdered + ' input'); + let quantityOrdered = DOM.getElementValueCurrent(inputQuantityOrdered); + + let divCostUnitLocalVatIncl = row.querySelector('td.' + flagCostUnitLocalVatIncl + ' div'); + let costUnitLocalVatIncl = quantityOrdered == 0 ? 0 : costTotalLocalVatIncl / quantityOrdered; + DOM.setElementValuesCurrentAndPrevious(divCostUnitLocalVatIncl, costUnitLocalVatIncl); + + let rowSupplierPurchaseOrder = row.closest(idTableMain + ' > tbody > tr'); + let divCostGrandTotalLocalVatIncl = rowSupplierPurchaseOrder.querySelector('td.' + flagCostTotalLocalVatIncl + ' div'); + let inputsCostTotalLocalVatIncl = rowSupplierPurchaseOrder.querySelectorAll('td.' + flagOrderItems + ' td.' + flagCostTotalLocalVatIncl + ' input'); + let costGrandTotalLocalVatIncl = Array.from(inputsCostTotalLocalVatIncl).reduce((acc, input) => acc + Number(DOM.getElementValueCurrent(input)), 0); + DOM.setElementValueCurrent(divCostGrandTotalLocalVatIncl, costGrandTotalLocalVatIncl); + } + hookupFieldsOrderItemLatencyDeliveryDays() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' td.' + flagLatencyDeliveryDays + ' input'); + } + hookupFieldsOrderItemActive() { + this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagOrderItems + ' input.' + flagActive); + } + hookupFieldsOrderItemAddDelete() { + let selectorButton = idTableMain + ' td.' + flagOrderItems + ' td.' + flagOrderItems + ' button'; + let selectorButtonDelete = selectorButton + '.' + flagDelete; + let selectorButtonUndelete = selectorButton + '.' + flagAdd; + this.hookupButtonsRowDelete(selectorButtonDelete, selectorButtonUndelete); + this.hookupButtonsRowUndelete(selectorButtonDelete, selectorButtonUndelete); + this.hookupButtonsOrderItemAdd(); + } + hookupButtonsOrderItemAdd() { + this.hookupEventHandler("click", idTableMain + ' td.' + flagOrderItems + ' th button.' + flagAdd, (event, element) => { + let row = element.closest(idTableMain + ' > tbody > tr'); + let idSupplierPurchaseOrder = row.getAttribute(attrIdSupplierPurchaseOrder); + let hasActiveOrderItem = row.querySelectorAll('td.' + flagOrderItems + ' input.' + flagActive + ':checked').length > 0; + let countSupplierOrderItems = row.querySelectorAll('td.' + flagOrderItems + ' td.' + flagSupplierPurchaseOrder).length; + let supplierOrderItem = { + [attrIdSupplierPurchaseOrder]: idSupplierPurchaseOrder, + [attrIdSupplierPurchaseOrderProductLink]: -1 - countSupplierOrderItems, + [attrIdProductCategory]: 0, + [attrIdProduct]: 0, + [flagProductVariations]: '', + [attrIdUnitMeasurementQuantity]: 0, + [flagQuantityOrdered]: '', + [flagQuantityReceived]: '', + [flagCostTotalLocalVatExcl]: '', + [flagCostTotalLocalVatIncl]: '', + [flagCostUnitLocalVatExcl]: '', + [flagCostUnitLocalVatIncl]: '', + [flagLatencyDeliveryDays]: '', + [flagDisplayOrder]: countSupplierOrderItems + 1, + [flagActive]: !hasActiveOrderItem, + }; + let tbody = row.querySelector('td.' + flagOrderItems + ' table tbody'); + this.addRowSupplierPurchaseOrderItem(tbody, supplierOrderItem); + /* + if (!hasActiveOrderItem) { + let tdOrderItem = row.querySelector('td.' + flagOrderItems); + // tdOrderItem.setAttribute(attrIdSupplierOrderItem, supplierOrderItem[attrIdSupplierOrderItem]); + DOM.setElementAttributeValueCurrent(tdOrderItem, supplierOrderItem[attrIdSupplierPurchaseOrderProductLink]); + } + */ + this.hookupOrderItemsFields(); + }); + } + leave() { super.leave(); } diff --git a/static/js/pages/store/suppliers.js b/static/js/pages/store/suppliers.js index 80758fce..782c5adc 100644 --- a/static/js/pages/store/suppliers.js +++ b/static/js/pages/store/suppliers.js @@ -1,6 +1,6 @@ import API from "../../api.js"; -import BusinessObjects from "../../lib/business_objects.js"; +import BusinessObjects from "../../lib/business_objects/business_objects.js"; import DOM from "../../dom.js"; import Events from "../../lib/events.js"; import TableBasePage from "../base_table.js"; @@ -60,7 +60,7 @@ export default class PageStoreSuppliers extends TableBasePage { } getSupplierAddressesFromRow(row) { let supplierAddresses = []; - let trs = row.querySelectorAll('td.' + flagAddress + ' tr'); + let trs = row.querySelectorAll('td.' + flagAddress + ' tbody tr'); let address, inputPostcode, inputAddressLine1, inputAddressLine2, inputCity, inputCounty, ddlRegion, inputActive; trs.forEach((tr) => { inputPostcode = tr.querySelector('td.' + flagPostcode + ' textarea'); @@ -72,6 +72,7 @@ export default class PageStoreSuppliers extends TableBasePage { inputActive = tr.querySelector('td.' + flagActive + ' input'); address = { [attrIdSupplierAddress]: tr.getAttribute(attrIdSupplierAddress), + [attrIdSupplier]: row.getAttribute(attrIdSupplier), [flagPostcode]: DOM.getElementAttributeValueCurrent(inputPostcode), [flagAddressLine1]: DOM.getElementAttributeValueCurrent(inputAddressLine1), [flagAddressLine2]: DOM.getElementAttributeValueCurrent(inputAddressLine2), @@ -99,7 +100,7 @@ export default class PageStoreSuppliers extends TableBasePage { this.hookupEmailInputs(); this.hookupWebsiteInputs(); this.hookupCurrencyFields(); - this.hookupActiveCheckboxes(); + this.hookupInputsActiveTable(); } hookupNameCompanyInputs() { this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagNameCompany + ' textarea'); @@ -239,6 +240,8 @@ export default class PageStoreSuppliers extends TableBasePage { let ddlRegion = document.createElement("select"); ddlRegion.classList.add(flagRegion); let optionJson, option; + option = DOM.createOption(null); + ddlRegion.appendChild(option); regionOptions.forEach((regionOption) => { optionJson = BusinessObjects.getOptionJsonFromObjectJson(regionOption); option = DOM.createOption(optionJson); @@ -264,6 +267,7 @@ export default class PageStoreSuppliers extends TableBasePage { let tr = document.createElement("tr"); tr.setAttribute(attrIdSupplierAddress, supplierAddress[attrIdSupplierAddress]); + tr.setAttribute(attrIdSupplier, supplierAddress[attrIdSupplier]); tr.appendChild(tdPostcode); tr.appendChild(tdAddressLine1); tr.appendChild(tdAddressLine2); @@ -275,25 +279,28 @@ export default class PageStoreSuppliers extends TableBasePage { tbody.appendChild(tr); } hookupAddressPostcodeInputs() { - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagPostcode); + this.handleChangeElementAddressSubtableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagPostcode); + } + handleChangeElementAddressSubtableCells(event, element) { + this.handleChangeNestedElementCellTable(event, element); // flagAddress); } hookupAddressLine1Inputs() { - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagAddressLine1); + this.handleChangeElementAddressSubtableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagAddressLine1); } hookupAddressLine2Inputs() { - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagAddressLine2); + this.handleChangeElementAddressSubtableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagAddressLine2); } hookupAddressCityInputs() { - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagCity); + this.handleChangeElementAddressSubtableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagCity); } hookupAddressCountyInputs() { - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagCounty); + this.handleChangeElementAddressSubtableCells(idTableMain + ' td.' + flagAddress + ' textarea.' + flagCounty); } hookupAddressRegionDdls() { - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagAddress + ' select.' + flagRegion); + this.handleChangeElementAddressSubtableCells(idTableMain + ' td.' + flagAddress + ' select.' + flagRegion); } hookupAddressActiveCheckboxes() { - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagAddress + ' input.' + flagActive, (event, element) => { + this.handleChangeElementAddressSubtableCells(idTableMain + ' td.' + flagAddress + ' input.' + flagActive, (event, element) => { let rowSupplierAddress = element.closest('tr'); let idAddress = rowSupplierAddress.getAttribute(attrIdSupplierAddress); DOM.setElementAttributeValueCurrent(rowSupplierAddress, idAddress); @@ -313,6 +320,13 @@ export default class PageStoreSuppliers extends TableBasePage { */ }); } + hookupFieldsAddressAddDelete() { + let selectorButton = idTableMain + ' td.' + flagAddress + ' button'; + let selectorButtonDelete = selectorButton + '.' + flagDelete; + let selectorButtonUndelete = selectorButton + '.' + flagAdd; + this.hookupButtonsRowDelete(selectorButtonDelete, selectorButtonUndelete); + this.hookupButtonsRowUndelete(selectorButtonDelete, selectorButtonUndelete); + } hookupAddressDeleteButtons() { this.hookupEventHandler("click", idTableMain + ' td.' + flagAddress + ' button.' + flagDelete, (event, element) => { let row = DOM.getRowFromElement(element); @@ -377,9 +391,6 @@ export default class PageStoreSuppliers extends TableBasePage { hookupWebsiteInputs() { this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagWebsite + ' textarea'); } - hookupActiveCheckboxes(){ - this.hookupChangeHandlerTableCells(idTableMain + ' td.' + flagActive + ' input'); - } leave() { super.leave(); diff --git a/templates/components/store/_preview_DDL_supplier.html b/templates/components/store/_preview_DDL_supplier.html new file mode 100644 index 00000000..adc715d6 --- /dev/null +++ b/templates/components/store/_preview_DDL_supplier.html @@ -0,0 +1,17 @@ + + +{% with _is_blank_row = (is_blank_row or model.suppliers | length == 0 or supplier is not defined or supplier is none) %} + {% if not _is_blank_row %} +

{{ supplier.name_company }}
+ {% else %} +
+ {% endif %} +{% endwith %} \ No newline at end of file diff --git a/templates/components/store/_preview_manufacturing_purchase_order_items.html b/templates/components/store/_preview_manufacturing_purchase_order_items.html index dc80d35f..878d29ea 100644 --- a/templates/components/store/_preview_manufacturing_purchase_order_items.html +++ b/templates/components/store/_preview_manufacturing_purchase_order_items.html @@ -1,7 +1,7 @@ {% with _is_blank_row = (is_blank_row or order_items is not defined or order_items is none or is_blank_row is not defined) %} {% if not _is_blank_row %} - {% set str_items = order_items.to_preview_str() %} + {% set str_items = model.convert_list_objects_to_preview_str(order_items) %}
{{ str_items }}
{% else %} -
+
{% endif %} {% endwith %} \ No newline at end of file diff --git a/templates/components/store/_row_manufacturing_purchase_order.html b/templates/components/store/_row_manufacturing_purchase_order.html index 33100682..359f14e4 100644 --- a/templates/components/store/_row_manufacturing_purchase_order.html +++ b/templates/components/store/_row_manufacturing_purchase_order.html @@ -1,22 +1,36 @@ {% if is_blank_row %} - + {% include 'components/store/_preview_DDL_currency.html' %} - +
- +
+
+
- + {% include 'components/store/_preview_order_items.html' %} @@ -24,42 +38,42 @@ {% else %} - + {% set currency = order.currency %} {% include 'components/store/_preview_DDL_currency.html' %} - + > - + > - + > - + > - {% set order_items = order.order_items %} - {% set json_str_items = jsonify(order_items.to_json_list()) %} - + {% set order_items = order.items %} + {% set json_str_items = model.jsonify(model.convert_list_objects_to_list_options(order_items)) %} + {# {% include 'components/store/_preview_manufacturing_purchase_order_items.html' %} #} diff --git a/templates/components/store/_row_product.html b/templates/components/store/_row_product.html index a9d14a2c..808f1ca3 100644 --- a/templates/components/store/_row_product.html +++ b/templates/components/store/_row_product.html @@ -1,5 +1,5 @@ {% if is_blank_row %} - + {% include 'components/common/buttons/_slider_display_order.html' %} @@ -25,7 +25,7 @@ {% else %} - + {% set display_order = category.display_order %} {% include 'components/common/buttons/_slider_display_order.html' %} diff --git a/templates/components/store/_row_product_category.html b/templates/components/store/_row_product_category.html index 6dda33ac..fe3782f5 100644 --- a/templates/components/store/_row_product_category.html +++ b/templates/components/store/_row_product_category.html @@ -1,5 +1,5 @@ {% if is_blank_row %} - + {% include 'components/common/buttons/_slider_display_order.html' %} @@ -20,7 +20,7 @@ {% else %} - + {% set display_order = category.display_order %} {% include 'components/common/buttons/_slider_display_order.html' %} diff --git a/templates/components/store/_row_product_permutation.html b/templates/components/store/_row_product_permutation.html index 87c322b0..4887a43f 100644 --- a/templates/components/store/_row_product_permutation.html +++ b/templates/components/store/_row_product_permutation.html @@ -1,6 +1,6 @@ {% if is_blank_row %} - + {% include 'components/store/_preview_DDL_product_category.html' %} @@ -63,15 +63,15 @@ - - + + {% else %} - + {% include 'components/store/_preview_DDL_product_category.html' %} @@ -151,8 +151,8 @@ - - + + diff --git a/templates/components/store/_row_stock_item.html b/templates/components/store/_row_stock_item.html index 8d26c29a..56314b21 100644 --- a/templates/components/store/_row_stock_item.html +++ b/templates/components/store/_row_stock_item.html @@ -2,7 +2,7 @@ {% set date_time_now = model.format_date(datetime.now()) %} {% endif %} {% if is_blank_row %} - + {% include 'components/store/_preview_DDL_product_category.html' %} @@ -59,7 +59,7 @@ {% else %} - + {% include 'components/store/_preview_DDL_product_category.html' %} diff --git a/templates/components/store/_row_supplier.html b/templates/components/store/_row_supplier.html index 1ea3cc5e..540106d8 100644 --- a/templates/components/store/_row_supplier.html +++ b/templates/components/store/_row_supplier.html @@ -1,5 +1,5 @@ {% if is_blank_row %} - + @@ -32,7 +32,7 @@ {% else %} - + diff --git a/templates/components/store/_row_supplier_purchase_order.html b/templates/components/store/_row_supplier_purchase_order.html index cc3d5efa..bffb6ca9 100644 --- a/templates/components/store/_row_supplier_purchase_order.html +++ b/templates/components/store/_row_supplier_purchase_order.html @@ -1,27 +1,25 @@ {% if is_blank_row %} - - - + + + {% include 'components/store/_preview_DDL_supplier.html' %} {% include 'components/store/_preview_DDL_currency.html' %} - + {{ model.ATTR_VALUE_CURRENT }}="" {{ model.ATTR_VALUE_PREVIOUS }}="" + > - +
- + {% include 'components/store/_preview_order_items.html' %} @@ -29,7 +27,7 @@ {% else %} - + {% set supplier = order.supplier %} {% include 'components/store/_preview_DDL_supplier.html' %} @@ -39,22 +37,28 @@ {% include 'components/store/_preview_DDL_currency.html' %} - + #} +
+ >
- + #} +
+ >
- {% set order_items = supplier_purchase_order.order_items %} - {% set json_str_items = jsonify(order_items.to_json_list()) %} - + {% set order_items = order.items %} + {% set json_str_items = model.jsonify(model.convert_list_objects_to_list_options(order_items)) %} + {% include 'components/store/_preview_order_items.html' %} diff --git a/templates/js/sections/store.js b/templates/js/sections/store.js index afa7d258..01f80f0a 100644 --- a/templates/js/sections/store.js +++ b/templates/js/sections/store.js @@ -5,6 +5,7 @@ var attrIdCustomerAddress = "{{ model.ATTR_ID_CUSTOMER_ADDRESS }}"; var attrIdCustomerSalesOrder = "{{ model.ATTR_ID_CUSTOMER_SALES_ORDER }}"; var attrIdDiscount = "{{ model.ATTR_ID_DISCOUNT }}"; var attrIdManufacturingPurchaseOrder = "{{ model.ATTR_ID_MANUFACTURING_PURCHASE_ORDER }}"; +var attrIdManufacturingPurchaseOrderProductLink = "{{ model.ATTR_ID_MANUFACTURING_PURCHASE_ORDER_PRODUCT_LINK }}"; var attrIdPlant = "{{ model.ATTR_ID_PLANT }}"; var attrIdProduct = "{{ model.ATTR_ID_PRODUCT }}"; var attrIdProductCategory = "{{ model.ATTR_ID_PRODUCT_CATEGORY }}"; @@ -17,6 +18,9 @@ var attrIdStorageLocation = "{{ model.ATTR_ID_STORAGE_LOCATION }}"; var attrIdSupplier = "{{ model.ATTR_ID_SUPPLIER }}"; var attrIdSupplierAddress = "{{ model.ATTR_ID_SUPPLIER_ADDRESS }}"; var attrIdSupplierPurchaseOrder = "{{ model.ATTR_ID_SUPPLIER_PURCHASE_ORDER }}"; +var attrIdSupplierPurchaseOrderProductLink = "{{ model.ATTR_ID_SUPPLIER_PURCHASE_ORDER_PRODUCT_LINK }}"; +var attrIdUnitMeasurementLatencyManufacture = "{{ model.ATTR_ID_UNIT_MEASUREMENT_LATENCY_MANUFACTURE }}"; +var attrIdUnitMeasurementQuantity = "{{ model.ATTR_ID_UNIT_MEASUREMENT_QUANTITY }}"; var flagButtonBasketAdd = "{{ model.FLAG_BUTTON_BASKET_ADD }}"; var flagButtonBuyNow = "{{ model.FLAG_BUTTON_BUY_NOW }}"; {# @@ -50,7 +54,7 @@ var flagIsOutOfStock = "{{ model.FLAG_IS_OUT_OF_STOCK }}"; var flagIsSealed = "{{ model.FLAG_IS_SEALED }}"; var flagIsSubscription = "{{ model.FLAG_IS_SUBSCRIPTION }}"; var flagLatencyDeliveryDays = "{{ model.FLAG_LATENCY_DELIVERY_DAYS }}"; -var flagLatencyManufactureDays = "{{ model.FLAG_LATENCY_MANUFACTURE_DAYS }}"; +var flagLatencyManufacture = "{{ model.FLAG_LATENCY_MANUFACTURE }}"; var flagManufacturingPurchaseOrder = "{{ model.FLAG_MANUFACTURING_PURCHASE_ORDER }}"; var flagNamePluralUnitMeasurementIntervalExpirationUnsealed = "{{ model.FLAG_NAME_PLURAL_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED }}"; var flagNamePluralUnitMeasurementIntervalRecurrence = "{{ model.FLAG_NAME_PLURAL_UNIT_MEASUREMENT_INTERVAL_RECURRENCE }}"; @@ -58,6 +62,7 @@ var flagNamePluralUnitMeasurementQuantity = "{{ model.FLAG_NAME_PLURAL_UNIT_MEAS var flagNameSingularUnitMeasurementIntervalExpirationUnsealed = "{{ model.FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED }}"; var flagNameSingularUnitMeasurementIntervalRecurrence = "{{ model.FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_INTERVAL_RECURRENCE }}"; var flagNameSingularUnitMeasurementQuantity = "{{ model.FLAG_NAME_SINGULAR_UNIT_MEASUREMENT_QUANTITY }}"; +var flagOrderItems = "{{ model.FLAG_ORDER_ITEMS }}"; var flagPlant = "{{ model.FLAG_PLANT }}"; {# var flagPriceLocalVatExcl = "{{ model.FLAG_PRICE_LOCAL_VAT_EXCL }}"; @@ -78,6 +83,8 @@ var flagProfitLocalMin = "{{ model.FLAG_PROFIT_LOCAL_MIN }}"; var flagQuantity = "{{ model.FLAG_QUANTITY }}"; var flagQuantityMin = "{{ model.FLAG_QUANTITY_MIN }}"; var flagQuantityMax = "{{ model.FLAG_QUANTITY_MAX }}"; +var flagQuantityOrdered = "{{ model.FLAG_QUANTITY_ORDERED }}"; +var flagQuantityReceived = "{{ model.FLAG_QUANTITY_RECEIVED }}"; var flagQuantityStock = "{{ model.FLAG_QUANTITY_STOCK }}"; var flagRegion = "{{ model.FLAG_REGION }}"; var flagStockItem = "{{ model.FLAG_STOCK_ITEM }}"; @@ -94,6 +101,7 @@ var flagSymbolUnitMeasurementIntervalRecurrence = "{{ model.FLAG_SYMBOL_UNIT_MEA var flagSymbolUnitMeasurementQuantity = "{{ model.FLAG_SYMBOL_UNIT_MEASUREMENT_QUANTITY }}"; var flagUnitMeasurementIntervalExpirationUnsealed = "{{ model.FLAG_UNIT_MEASUREMENT_INTERVAL_EXPIRATION_UNSEALED }}"; var flagUnitMeasurementIntervalRecurrence = "{{ model.FLAG_UNIT_MEASUREMENT_INTERVAL_RECURRENCE }}"; +var flagUnitMeasurementLatencyManufacture = "{{ model.FLAG_UNIT_MEASUREMENT_LATENCY_MANUFACTURE }}"; var flagUnitMeasurementQuantity = "{{ model.FLAG_UNIT_MEASUREMENT_QUANTITY }}"; var hashGetStoreCustomerSalesOrder = "{{ model.HASH_GET_STORE_CUSTOMER_SALES_ORDER }}"; var hashGetStoreManufacturingPurchaseOrder = "{{ model.HASH_GET_STORE_MANUFACTURING_PURCHASE_ORDER }}"; diff --git a/templates/layouts/layout.html b/templates/layouts/layout.html index 3eb7514a..50fa5e75 100644 --- a/templates/layouts/layout.html +++ b/templates/layouts/layout.html @@ -98,7 +98,7 @@ var flagFormFilters = "{{ model.FLAG_FORM_FILTERS }}"; var flagImageLogo = "{{ model.FLAG_IMAGE_LOGO }}"; var flagInitialised = "{{ model.FLAG_INITIALISED }}"; - var flagItems = "{{ model.FLAG_ITEMS }}"; + // var flagItems = "{{ model.FLAG_ITEMS }}"; // var flagKeyPrimary = "{{ model.FLAG_KEY_PRIMARY }}"; var flagMessage = "{{ model.FLAG_MESSAGE }}"; var flagModal = "{{ model.FLAG_MODAL }}"; diff --git a/templates/pages/store/_manufacturing_purchase_orders.html b/templates/pages/store/_manufacturing_purchase_orders.html index 9b866d8b..f383839e 100644 --- a/templates/pages/store/_manufacturing_purchase_orders.html +++ b/templates/pages/store/_manufacturing_purchase_orders.html @@ -46,7 +46,7 @@ Cost Total VAT Incl. Price Total VAT Excl. Price Total VAT Incl. - Items + Items Active @@ -68,6 +68,14 @@ {% endblock %} \ No newline at end of file diff --git a/templates/pages/store/_product_permutations.html b/templates/pages/store/_product_permutations.html index b1cc01ee..4cd38f83 100644 --- a/templates/pages/store/_product_permutations.html +++ b/templates/pages/store/_product_permutations.html @@ -115,7 +115,7 @@ Cost Cost Currency Profit Local Min - Manufacturing Latency + Manufacturing Latency Active diff --git a/templates/pages/store/_supplier_purchase_orders.html b/templates/pages/store/_supplier_purchase_orders.html index 0ccaa192..69d88ea4 100644 --- a/templates/pages/store/_supplier_purchase_orders.html +++ b/templates/pages/store/_supplier_purchase_orders.html @@ -45,7 +45,7 @@ Currency Cost Total VAT Excl. Cost Total VAT Incl. - Items + Items Active @@ -67,7 +67,12 @@ {% endblock %} \ No newline at end of file