--
-- PostgreSQL database dump
--

-- Dumped from database version 12.11
-- Dumped by pg_dump version 12.11

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: rand(); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.rand() RETURNS double precision
    LANGUAGE sql
    AS $$SELECT random();$$;


ALTER FUNCTION public.rand() OWNER TO postgres;

--
-- Name: soundex(text); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.soundex(input text) RETURNS text
    LANGUAGE plpgsql IMMUTABLE STRICT COST 500
    AS $$
DECLARE
  soundex text = '';
  char text;
  symbol text;
  last_symbol text = '';
  pos int = 1;
BEGIN
  WHILE length(soundex) < 4 LOOP
    char = upper(substr(input, pos, 1));
    pos = pos + 1;
    CASE char
    WHEN '' THEN
      -- End of input string
      IF soundex = '' THEN
        RETURN '';
      ELSE
        RETURN rpad(soundex, 4, '0');
      END IF;
    WHEN 'B', 'F', 'P', 'V' THEN
      symbol = '1';
    WHEN 'C', 'G', 'J', 'K', 'Q', 'S', 'X', 'Z' THEN
      symbol = '2';
    WHEN 'D', 'T' THEN
      symbol = '3';
    WHEN 'L' THEN
      symbol = '4';
    WHEN 'M', 'N' THEN
      symbol = '5';
    WHEN 'R' THEN
      symbol = '6';
    ELSE
      -- Not a consonant; no output, but next similar consonant will be re-recorded
      symbol = '';
    END CASE;

    IF soundex = '' THEN
      -- First character; only accept strictly English ASCII characters
      IF char ~>=~ 'A' AND char ~<=~ 'Z' THEN
        soundex = char;
        last_symbol = symbol;
      END IF;
    ELSIF last_symbol != symbol THEN
      soundex = soundex || symbol;
      last_symbol = symbol;
    END IF;
  END LOOP;

  RETURN soundex;
END;
$$;


ALTER FUNCTION public.soundex(input text) OWNER TO postgres;

--
-- Name: substring_index(text, text, integer); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.substring_index(text, text, integer) RETURNS text
    LANGUAGE sql
    AS $_$SELECT array_to_string((string_to_array($1, $2)) [1:$3], $2);$_$;


ALTER FUNCTION public.substring_index(text, text, integer) OWNER TO postgres;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: a_v_pro_check_qties; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.a_v_pro_check_qties (
    id bigint NOT NULL,
    "Product" text,
    "AvQty" text,
    "Qty" text,
    "RequestQty" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "OriginalProduct" text,
    "NewRequestQty" text
);


ALTER TABLE public.a_v_pro_check_qties OWNER TO postgres;

--
-- Name: a_v_pro_check_qties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.a_v_pro_check_qties_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.a_v_pro_check_qties_id_seq OWNER TO postgres;

--
-- Name: a_v_pro_check_qties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.a_v_pro_check_qties_id_seq OWNED BY public.a_v_pro_check_qties.id;


--
-- Name: abouts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.abouts (
    id bigint NOT NULL,
    "Image" text,
    "Image_2" text,
    "Image_3" text,
    "Arabic_Title" text,
    "English_Title" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.abouts OWNER TO postgres;

--
-- Name: abouts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.abouts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.abouts_id_seq OWNER TO postgres;

--
-- Name: abouts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.abouts_id_seq OWNED BY public.abouts.id;


--
-- Name: abstracts_contractors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.abstracts_contractors (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Name" text,
    "Value" text,
    "Statement" text,
    "Contractor" text,
    "Project" text,
    "Edit" text,
    "Delete" text,
    "Edit_New_Code" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.abstracts_contractors OWNER TO postgres;

--
-- Name: abstracts_contractors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.abstracts_contractors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.abstracts_contractors_id_seq OWNER TO postgres;

--
-- Name: abstracts_contractors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.abstracts_contractors_id_seq OWNED BY public.abstracts_contractors.id;


--
-- Name: acccounting_manuals; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.acccounting_manuals (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Name" text NOT NULL,
    "Type" text NOT NULL,
    "Parent" text NOT NULL,
    "Note" text,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Account_Code" text,
    "Pro_Group" text,
    "NameEn" text,
    "SearchCode" text
);


ALTER TABLE public.acccounting_manuals OWNER TO postgres;

--
-- Name: acccounting_manuals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.acccounting_manuals_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.acccounting_manuals_id_seq OWNER TO postgres;

--
-- Name: acccounting_manuals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.acccounting_manuals_id_seq OWNED BY public.acccounting_manuals.id;


--
-- Name: accounts_default_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.accounts_default_data (
    id bigint NOT NULL,
    "Draw" text,
    "Coin" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Sure_Recipts" text,
    "Show_Group" text,
    "Account_Balance" text,
    "Salary" text,
    "Commission" text,
    "Coin_Show" text,
    "Cost_Show" text,
    "Draw_Show" text,
    "Collect_Show" text,
    "Sales_Bill_Show" text,
    "Hide_Edit_Delete" text,
    "Order_Number" text,
    "Tax_Show" text,
    "Cost_Center_Show" text,
    "Emp_Vouchers_Accounts" text
);


ALTER TABLE public.accounts_default_data OWNER TO postgres;

--
-- Name: accounts_default_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.accounts_default_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.accounts_default_data_id_seq OWNER TO postgres;

--
-- Name: accounts_default_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.accounts_default_data_id_seq OWNED BY public.accounts_default_data.id;


--
-- Name: activites; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.activites (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.activites OWNER TO postgres;

--
-- Name: activites_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.activites_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.activites_id_seq OWNER TO postgres;

--
-- Name: activites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.activites_id_seq OWNED BY public.activites.id;


--
-- Name: add_translates; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.add_translates (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Client" text,
    "Client_Type" text,
    "From_Lang" text,
    "To_Lang" text,
    "Company" text,
    "Num_Translted_Word" text,
    "ID_Name" text,
    "ID_Profession" text,
    "ID_Martial_Status" text,
    "Passport_Name" text,
    "Passport_Profession" text,
    "Passport_Martial_Status" text,
    "Extracted" text,
    "Extracted_Birthplace" text,
    "Extracted_Issuer" text,
    "CommercialRegistration" text,
    "Commercial_Name" text,
    "Commercial_Type" text,
    "Commercial_Start_Date" text,
    "Commercial_Number" text,
    "Commercial_Capital" text,
    "Commercial_Issuer" text,
    "Commercial_Address" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.add_translates OWNER TO postgres;

--
-- Name: add_translates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.add_translates_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.add_translates_id_seq OWNER TO postgres;

--
-- Name: add_translates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.add_translates_id_seq OWNED BY public.add_translates.id;


--
-- Name: additional_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.additional_products (
    id bigint NOT NULL,
    "Additional_Product" bigint,
    "Product" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.additional_products OWNER TO postgres;

--
-- Name: additional_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.additional_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.additional_products_id_seq OWNER TO postgres;

--
-- Name: additional_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.additional_products_id_seq OWNED BY public.additional_products.id;


--
-- Name: addressses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.addressses (
    id bigint NOT NULL,
    "Address_Name" text,
    "Street" text,
    "Special_Mark" text,
    "Buliding" text,
    "Floor" text,
    "Flat" text,
    "Details" text,
    "Location" text,
    "Governrate" bigint,
    "City" bigint,
    "Place" bigint,
    "Customer" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Lat" text,
    "Lng" text
);


ALTER TABLE public.addressses OWNER TO postgres;

--
-- Name: addressses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.addressses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.addressses_id_seq OWNER TO postgres;

--
-- Name: addressses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.addressses_id_seq OWNED BY public.addressses.id;


--
-- Name: admins; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.admins (
    id bigint NOT NULL,
    email character varying(191) NOT NULL,
    name text NOT NULL,
    password text NOT NULL,
    image text,
    phone text,
    hidden text DEFAULT '0'::text NOT NULL,
    emp text DEFAULT '0'::text NOT NULL,
    ship text DEFAULT '0'::text NOT NULL,
    vend text DEFAULT '0'::text NOT NULL,
    status text DEFAULT '0'::text NOT NULL,
    remember_token character varying(100),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    cli bigint DEFAULT 0,
    lat text,
    long text,
    account bigint,
    safe bigint,
    store bigint,
    type text,
    roles_name text,
    code text,
    token text,
    price_sale text,
    discount text,
    price_1 text,
    price_2 text,
    price_3 text,
    pos_pay text,
    executor text,
    cost_price text,
    price_level text,
    guest text,
    pos_stores text,
    pos_hold text,
    cost_price_purch text,
    cost_price_sales text,
    manu_order_precent text,
    pos_product text DEFAULT 0,
    "Cash" text,
    "Later" text,
    "Check" text,
    "Installment" text,
    "Cash_Visa" text,
    "Cash_Collection" text,
    "Delivery" text,
    "InstallmentCompanies" text,
    "Date" text,
    ticket_price text,
    ticket_discount text,
    "nameEn" text,
    package text,
    job_order_price text,
    "Visa_Network" text,
    bill_discount text,
    pos_safes text,
    expire text,
    expire_type text DEFAULT 0,
    attend_date text,
    bank text,
    "Apps" text
);


ALTER TABLE public.admins OWNER TO postgres;

--
-- Name: admins_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.admins_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.admins_id_seq OWNER TO postgres;

--
-- Name: admins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.admins_id_seq OWNED BY public.admins.id;


--
-- Name: all_groups; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.all_groups (
    id bigint NOT NULL,
    "Group" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Name" text
);


ALTER TABLE public.all_groups OWNER TO postgres;

--
-- Name: all_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.all_groups_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.all_groups_id_seq OWNER TO postgres;

--
-- Name: all_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.all_groups_id_seq OWNED BY public.all_groups.id;


--
-- Name: allowences_emps; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.allowences_emps (
    id bigint NOT NULL,
    "AmountAllow" text,
    "Allow" bigint,
    "Emp" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.allowences_emps OWNER TO postgres;

--
-- Name: allowences_emps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.allowences_emps_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.allowences_emps_id_seq OWNER TO postgres;

--
-- Name: allowences_emps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.allowences_emps_id_seq OWNED BY public.allowences_emps.id;


--
-- Name: apps_change_prices; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.apps_change_prices (
    id bigint NOT NULL,
    "App" text,
    "Product" text,
    "Price_One" text,
    "Price_Two" text,
    "Price_Three" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Barcode" text
);


ALTER TABLE public.apps_change_prices OWNER TO postgres;

--
-- Name: apps_change_prices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.apps_change_prices_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.apps_change_prices_id_seq OWNER TO postgres;

--
-- Name: apps_change_prices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.apps_change_prices_id_seq OWNED BY public.apps_change_prices.id;


--
-- Name: area_pincode_a_p_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.area_pincode_a_p_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.area_pincode_a_p_id_seq OWNER TO postgres;

--
-- Name: articles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.articles (
    id bigint NOT NULL,
    "Image" text,
    "Sub_Image" text,
    "Date" text,
    "Arabic_Title" text,
    "English_Title" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.articles OWNER TO postgres;

--
-- Name: articles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.articles_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.articles_id_seq OWNER TO postgres;

--
-- Name: articles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.articles_id_seq OWNED BY public.articles.id;


--
-- Name: assay_bill_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assay_bill_details (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "TDiscount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "Store" text,
    "Product" text,
    "Exp_Date" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "Date" text,
    "Vendor" text,
    "SmallCode" text,
    "SmallQty" text,
    "Code" text,
    "Refernce_Number" text,
    "Safe" text,
    "Delegate" text,
    "Coin" text,
    "User" text,
    "Cost_Center" text,
    "Type" text,
    "Ship" text,
    "Payment_Method" text,
    "Total_Net" text,
    "ChassisNumber" text,
    "MotorNumber" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Bill" bigint
);


ALTER TABLE public.assay_bill_details OWNER TO postgres;

--
-- Name: assay_bill_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assay_bill_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.assay_bill_details_id_seq OWNER TO postgres;

--
-- Name: assay_bill_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assay_bill_details_id_seq OWNED BY public.assay_bill_details.id;


--
-- Name: assay_bills; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assay_bills (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Payment_Method" text,
    "Vendor_Bill_Date" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Safe" text,
    "Vendor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "DiscountBill" text,
    "TaxBill" text,
    "TaxCode" text,
    "Time" text,
    "Branch" text,
    "File" text,
    "Current_Credit" text,
    "Residual" text,
    "Total_Net" text,
    "Project" text,
    "Assay" text,
    "Done" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.assay_bills OWNER TO postgres;

--
-- Name: assay_bills_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assay_bills_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.assay_bills_id_seq OWNER TO postgres;

--
-- Name: assay_bills_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assay_bills_id_seq OWNED BY public.assay_bills.id;


--
-- Name: assay_project_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assay_project_details (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "TDiscount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "Store" text,
    "Product" text,
    "Exp_Date" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "Date" text,
    "Vendor" text,
    "SmallCode" text,
    "SmallQty" text,
    "Code" text,
    "Refernce_Number" text,
    "Safe" text,
    "Delegate" text,
    "Coin" text,
    "User" text,
    "Cost_Center" text,
    "Type" text,
    "Ship" text,
    "Payment_Method" text,
    "Total_Net" text,
    "ChassisNumber" text,
    "MotorNumber" text,
    "Asay" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.assay_project_details OWNER TO postgres;

--
-- Name: assay_project_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assay_project_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.assay_project_details_id_seq OWNER TO postgres;

--
-- Name: assay_project_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assay_project_details_id_seq OWNED BY public.assay_project_details.id;


--
-- Name: assay_projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assay_projects (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Payment_Method" text,
    "Vendor_Bill_Date" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Safe" text,
    "Vendor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "DiscountBill" text,
    "TaxBill" text,
    "TaxCode" text,
    "Time" text,
    "Branch" text,
    "File" text,
    "Current_Credit" text,
    "Residual" text,
    "Total_Net" text,
    "Project" text,
    "Done" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.assay_projects OWNER TO postgres;

--
-- Name: assay_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assay_projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.assay_projects_id_seq OWNER TO postgres;

--
-- Name: assay_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assay_projects_id_seq OWNED BY public.assay_projects.id;


--
-- Name: assembly_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assembly_products (
    id bigint NOT NULL,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Total" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "Unit" bigint,
    "Product" bigint,
    p_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.assembly_products OWNER TO postgres;

--
-- Name: assembly_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assembly_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.assembly_products_id_seq OWNER TO postgres;

--
-- Name: assembly_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assembly_products_id_seq OWNED BY public.assembly_products.id;


--
-- Name: assets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assets (
    id bigint NOT NULL,
    "Code" text,
    "Name" text,
    "Asset_Type" text,
    "Depreciation_Method" text,
    "Purchases_Date" text,
    "Operation_Date" text,
    "Cost" text,
    "Previous_Depreciation" text,
    "Asset_Net" text,
    "Annual_Depreciation_Ratio" text,
    "Annual_Depreciation" text,
    "Life_Span" text,
    "Image" text,
    "Note" text,
    "Depreciation_Expenses" bigint,
    "Depreciation_Complex" bigint,
    "Main_Account" bigint,
    "Account" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Draw" text,
    "Coin" bigint,
    "Cost_Center" bigint,
    "Branch" bigint,
    "Sort_Asset" text,
    "Vendor" bigint,
    "Safe" bigint,
    "Ehlak" text,
    "Payment_Method" text,
    "M1" text,
    "M2" text,
    "M3" text,
    "M4" text,
    "M5" text,
    "M6" text,
    "M7" text,
    "M8" text,
    "M9" text,
    "M10" text,
    "M11" text,
    "M12" text,
    "NameEn" text,
    "Asset_Type_En" text,
    "Depreciation_Method_En" text,
    arr bigint,
    "Delete" text,
    "Sale" text,
    "Amount" text,
    "Client" text,
    "CurrentAssetPrice" text,
    "Last_Depreciation_Month" text
);


ALTER TABLE public.assets OWNER TO postgres;

--
-- Name: assets_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assets_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.assets_arr_seq OWNER TO postgres;

--
-- Name: assets_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assets_arr_seq OWNED BY public.assets."Code";


--
-- Name: assets_expenses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.assets_expenses (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Name" text NOT NULL,
    "Draw" text NOT NULL,
    "Amount" text NOT NULL,
    "Asset" bigint,
    "Safe" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.assets_expenses OWNER TO postgres;

--
-- Name: assets_expenses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assets_expenses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.assets_expenses_id_seq OWNER TO postgres;

--
-- Name: assets_expenses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assets_expenses_id_seq OWNED BY public.assets_expenses.id;


--
-- Name: assets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.assets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.assets_id_seq OWNER TO postgres;

--
-- Name: assets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.assets_id_seq OWNED BY public.assets.id;


--
-- Name: attend_departure_import; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.attend_departure_import (
    id bigint NOT NULL,
    "In_Time" text,
    "Out_Time" text,
    "Date" text,
    "Month" text,
    "Note" text,
    "Attend" text,
    "Emp" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.attend_departure_import OWNER TO postgres;

--
-- Name: attend_departure_import_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.attend_departure_import_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.attend_departure_import_id_seq OWNER TO postgres;

--
-- Name: attend_departure_import_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.attend_departure_import_id_seq OWNED BY public.attend_departure_import.id;


--
-- Name: attendance_emps; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.attendance_emps (
    id bigint NOT NULL,
    "In_Time" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Note" text,
    "Attend" bigint,
    "Emp" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.attendance_emps OWNER TO postgres;

--
-- Name: attendance_emps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.attendance_emps_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.attendance_emps_id_seq OWNER TO postgres;

--
-- Name: attendance_emps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.attendance_emps_id_seq OWNED BY public.attendance_emps.id;


--
-- Name: attendances; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.attendances (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Note" text,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Status" text,
    arr bigint
);


ALTER TABLE public.attendances OWNER TO postgres;

--
-- Name: attendances_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.attendances_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.attendances_arr_seq OWNER TO postgres;

--
-- Name: attendances_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.attendances_arr_seq OWNED BY public.attendances."Code";


--
-- Name: attendances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.attendances_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.attendances_id_seq OWNER TO postgres;

--
-- Name: attendances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.attendances_id_seq OWNED BY public.attendances.id;


--
-- Name: attendence_policy_emps; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.attendence_policy_emps (
    id bigint NOT NULL,
    "Emp" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "From" integer,
    "To" integer,
    "Discount" numeric
);


ALTER TABLE public.attendence_policy_emps OWNER TO postgres;

--
-- Name: attendence_policy_emps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.attendence_policy_emps_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.attendence_policy_emps_id_seq OWNER TO postgres;

--
-- Name: attendence_policy_emps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.attendence_policy_emps_id_seq OWNED BY public.attendence_policy_emps.id;


--
-- Name: barcode_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.barcode_products (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Code" text NOT NULL,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Group" text
);


ALTER TABLE public.barcode_products OWNER TO postgres;

--
-- Name: barcode_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.barcode_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.barcode_products_id_seq OWNER TO postgres;

--
-- Name: barcode_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.barcode_products_id_seq OWNED BY public.barcode_products.id;


--
-- Name: barcode_settings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.barcode_settings (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Name" text NOT NULL,
    "Type" text NOT NULL,
    "Direction" text NOT NULL,
    "Width" text NOT NULL,
    "Height" text NOT NULL,
    "Padding_L" text NOT NULL,
    "Padding_R" text NOT NULL,
    "Padding_T" text NOT NULL,
    "Padding_B" text NOT NULL,
    "Margin_L" text NOT NULL,
    "Margin_R" text NOT NULL,
    "Margin_T" text NOT NULL,
    "Margin_B" text NOT NULL,
    "Barcode_Width" text NOT NULL,
    "Barcode_Height" text NOT NULL,
    "Font_Size" text NOT NULL,
    "Line_Height" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Height_Logo" character varying,
    "Width_Logo" character varying,
    "NameEn" text,
    arr bigint
);


ALTER TABLE public.barcode_settings OWNER TO postgres;

--
-- Name: barcode_settings_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.barcode_settings_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.barcode_settings_arr_seq OWNER TO postgres;

--
-- Name: barcode_settings_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.barcode_settings_arr_seq OWNED BY public.barcode_settings.arr;


--
-- Name: barcode_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.barcode_settings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.barcode_settings_id_seq OWNER TO postgres;

--
-- Name: barcode_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.barcode_settings_id_seq OWNED BY public.barcode_settings.id;


--
-- Name: barcode_shows; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.barcode_shows (
    id bigint NOT NULL,
    "Company_Name" text,
    "Product_Name" text,
    "Product_Price" text,
    "Unit" text,
    "Coin" text,
    "Group" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Code" text,
    "Logo" text
);


ALTER TABLE public.barcode_shows OWNER TO postgres;

--
-- Name: barcode_shows_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.barcode_shows_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.barcode_shows_id_seq OWNER TO postgres;

--
-- Name: barcode_shows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.barcode_shows_id_seq OWNED BY public.barcode_shows.id;


--
-- Name: befroe_footers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.befroe_footers (
    id bigint NOT NULL,
    "Image" text NOT NULL,
    "Arabic_Title" text NOT NULL,
    "Arabic_Desc" text NOT NULL,
    "English_Title" text NOT NULL,
    "English_Desc" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.befroe_footers OWNER TO postgres;

--
-- Name: befroe_footers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.befroe_footers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.befroe_footers_id_seq OWNER TO postgres;

--
-- Name: befroe_footers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.befroe_footers_id_seq OWNED BY public.befroe_footers.id;


--
-- Name: beneftis_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.beneftis_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.beneftis_types OWNER TO postgres;

--
-- Name: beneftis_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.beneftis_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.beneftis_types_id_seq OWNER TO postgres;

--
-- Name: beneftis_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.beneftis_types_id_seq OWNED BY public.beneftis_types.id;


--
-- Name: bones_sales_petrols; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.bones_sales_petrols (
    id bigint NOT NULL,
    "Bone_Amount" text NOT NULL,
    "Bone" bigint,
    "SalesPetrol" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.bones_sales_petrols OWNER TO postgres;

--
-- Name: bones_sales_petrols_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.bones_sales_petrols_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.bones_sales_petrols_id_seq OWNER TO postgres;

--
-- Name: bones_sales_petrols_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.bones_sales_petrols_id_seq OWNED BY public.bones_sales_petrols.id;


--
-- Name: bones_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.bones_types (
    id bigint NOT NULL,
    "Name" text,
    "Account" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.bones_types OWNER TO postgres;

--
-- Name: bones_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.bones_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.bones_types_id_seq OWNER TO postgres;

--
-- Name: bones_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.bones_types_id_seq OWNED BY public.bones_types.id;


--
-- Name: borrowas; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.borrowas (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Amount" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Safe" bigint NOT NULL,
    "Emp" bigint,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" text DEFAULT 0,
    "Refernce_Number" text
);


ALTER TABLE public.borrowas OWNER TO postgres;

--
-- Name: borrowas_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.borrowas_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.borrowas_arr_seq OWNER TO postgres;

--
-- Name: borrowas_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.borrowas_arr_seq OWNED BY public.borrowas."Code";


--
-- Name: borrowas_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.borrowas_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.borrowas_id_seq OWNER TO postgres;

--
-- Name: borrowas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.borrowas_id_seq OWNED BY public.borrowas.id;


--
-- Name: branches; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.branches (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Letter" text,
    "Code" text,
    "Location" text,
    "Budget" text,
    "Lat" text,
    "Lang" text,
    "Branch" text
);


ALTER TABLE public.branches OWNER TO postgres;

--
-- Name: branches_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.branches_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.branches_id_seq OWNER TO postgres;

--
-- Name: branches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.branches_id_seq OWNED BY public.branches.id;


--
-- Name: brands; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.brands (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Note" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Image" text,
    "Sales_Show" text,
    "Store_Show" text,
    "NameEn" text,
    "Sales_Precet" text DEFAULT 0
);


ALTER TABLE public.brands OWNER TO postgres;

--
-- Name: brands_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.brands_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.brands_id_seq OWNER TO postgres;

--
-- Name: brands_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.brands_id_seq OWNED BY public.brands.id;


--
-- Name: campaigns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.campaigns (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    "Platform" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.campaigns OWNER TO postgres;

--
-- Name: campaigns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.campaigns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.campaigns_id_seq OWNER TO postgres;

--
-- Name: campaigns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.campaigns_id_seq OWNED BY public.campaigns.id;


--
-- Name: capital_increases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.capital_increases (
    id bigint NOT NULL,
    "Date" text,
    "Month" text,
    "Value" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.capital_increases OWNER TO postgres;

--
-- Name: capital_increases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.capital_increases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.capital_increases_id_seq OWNER TO postgres;

--
-- Name: capital_increases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.capital_increases_id_seq OWNED BY public.capital_increases.id;


--
-- Name: capitals; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.capitals (
    id bigint NOT NULL,
    "Authorized_Capital" text,
    "Source_Capital" text,
    "Shares_Number" text,
    "Nominal_Value_of_Shares" text,
    "Actual_Share_Value" text,
    "Actual_Capital" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Working_Capital" text,
    "New_Shares_Number" text,
    "Capital_Increase" text,
    "New_Source_Capital" text,
    "Total_Investment" text
);


ALTER TABLE public.capitals OWNER TO postgres;

--
-- Name: capitals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.capitals_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.capitals_id_seq OWNER TO postgres;

--
-- Name: capitals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.capitals_id_seq OWNED BY public.capitals.id;


--
-- Name: car_shippings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.car_shippings (
    id bigint NOT NULL,
    "Name" text,
    "Max_Load" text,
    "Delegate" text,
    "Driver" text,
    "Car_Number" text,
    "Color" text,
    "Lisence_Expire_Date" text,
    "GPS_Num" text,
    "Car_Type" text,
    "Car_Statue" text,
    "Insurance" text,
    "Ownership" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Cost_Center" text,
    "Rent_Amount" text,
    "Deal_Type" text,
    "Deal_Amount" text,
    "Account" text,
    "AccountMerit" text,
    "Minimum" text
);


ALTER TABLE public.car_shippings OWNER TO postgres;

--
-- Name: car_shippings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.car_shippings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.car_shippings_id_seq OWNER TO postgres;

--
-- Name: car_shippings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.car_shippings_id_seq OWNED BY public.car_shippings.id;


--
-- Name: cars_sales_petrols; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cars_sales_petrols (
    id bigint NOT NULL,
    "Car_Amount" text NOT NULL,
    "Car" bigint,
    "SalesPetrol" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.cars_sales_petrols OWNER TO postgres;

--
-- Name: cars_sales_petrols_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.cars_sales_petrols_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.cars_sales_petrols_id_seq OWNER TO postgres;

--
-- Name: cars_sales_petrols_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.cars_sales_petrols_id_seq OWNED BY public.cars_sales_petrols.id;


--
-- Name: cart_stores; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cart_stores (
    id bigint NOT NULL,
    "Name" text,
    "NameEn" text,
    "V_Name" text,
    "VV_Name" text,
    "P_Code" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "Image" text,
    "Total" text,
    "User" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Product" text
);


ALTER TABLE public.cart_stores OWNER TO postgres;

--
-- Name: cart_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.cart_stores_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.cart_stores_id_seq OWNER TO postgres;

--
-- Name: cart_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.cart_stores_id_seq OWNED BY public.cart_stores.id;


--
-- Name: catalog_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.catalog_requests (
    id bigint NOT NULL,
    "Product" bigint,
    "Product_Code" character varying(191),
    "Name" character varying(191) NOT NULL,
    "Phone" character varying(191) NOT NULL,
    "Governrate" character varying(191) NOT NULL,
    "Status" character varying(191) DEFAULT 'New'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.catalog_requests OWNER TO postgres;

--
-- Name: catalog_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.catalog_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.catalog_requests_id_seq OWNER TO postgres;

--
-- Name: catalog_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.catalog_requests_id_seq OWNED BY public.catalog_requests.id;


--
-- Name: chat_issues; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.chat_issues (
    id bigint NOT NULL,
    "Name" text,
    "Date" text,
    "Time" text,
    "Desc" text,
    "Image" text,
    "Issue" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Type" text,
    "Appear" text
);


ALTER TABLE public.chat_issues OWNER TO postgres;

--
-- Name: chat_issues_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.chat_issues_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.chat_issues_id_seq OWNER TO postgres;

--
-- Name: chat_issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.chat_issues_id_seq OWNED BY public.chat_issues.id;


--
-- Name: checks_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.checks_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.checks_types OWNER TO postgres;

--
-- Name: checks_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.checks_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.checks_types_id_seq OWNER TO postgres;

--
-- Name: checks_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.checks_types_id_seq OWNED BY public.checks_types.id;


--
-- Name: cities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cities (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    "Gov" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Ship_Price" text,
    "Shipping_Company" text,
    "SearchCode" text,
    "ShippingCode" text
);


ALTER TABLE public.cities OWNER TO postgres;

--
-- Name: cities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.cities_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.cities_id_seq OWNER TO postgres;

--
-- Name: cities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.cities_id_seq OWNED BY public.cities.id;


--
-- Name: clearances; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.clearances (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Contract_Num" text,
    "Client" text,
    "System" text,
    "Insurance" text,
    "Issue" text,
    "Amount" text,
    "Note" text,
    "Unit" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Recipt" text
);


ALTER TABLE public.clearances OWNER TO postgres;

--
-- Name: clearances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.clearances_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.clearances_id_seq OWNER TO postgres;

--
-- Name: clearances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.clearances_id_seq OWNED BY public.clearances.id;


--
-- Name: client_account_statement_column_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.client_account_statement_column_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Client" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ShiftCode" text,
    "Executor" text
);


ALTER TABLE public.client_account_statement_column_sechdules OWNER TO postgres;

--
-- Name: client_account_statement_column_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.client_account_statement_column_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.client_account_statement_column_sechdules_id_seq OWNER TO postgres;

--
-- Name: client_account_statement_column_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.client_account_statement_column_sechdules_id_seq OWNED BY public.client_account_statement_column_sechdules.id;


--
-- Name: client_account_statement_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.client_account_statement_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Client" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ShiftCode" text,
    "Executor" text
);


ALTER TABLE public.client_account_statement_columns OWNER TO postgres;

--
-- Name: client_account_statement_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.client_account_statement_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.client_account_statement_columns_id_seq OWNER TO postgres;

--
-- Name: client_account_statement_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.client_account_statement_columns_id_seq OWNED BY public.client_account_statement_columns.id;


--
-- Name: client_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.client_filters (
    id bigint NOT NULL,
    "Product" text NOT NULL,
    "Code" text,
    "Name" text,
    "VName" text,
    "VVName" text,
    "V1" text,
    "V2" text,
    "Qty" text,
    "Price" text,
    "Total" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Client" text
);


ALTER TABLE public.client_filters OWNER TO postgres;

--
-- Name: client_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.client_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.client_filters_id_seq OWNER TO postgres;

--
-- Name: client_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.client_filters_id_seq OWNED BY public.client_filters.id;


--
-- Name: client_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.client_requests (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Client" text,
    "File" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.client_requests OWNER TO postgres;

--
-- Name: client_requests_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.client_requests_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.client_requests_arr_seq OWNER TO postgres;

--
-- Name: client_requests_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.client_requests_arr_seq OWNED BY public.client_requests."Code";


--
-- Name: client_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.client_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.client_requests_id_seq OWNER TO postgres;

--
-- Name: client_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.client_requests_id_seq OWNED BY public.client_requests.id;


--
-- Name: client_sales_petrols; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.client_sales_petrols (
    id bigint NOT NULL,
    "Customer_Amount" text NOT NULL,
    "Customer" bigint,
    "SalesPetrol" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.client_sales_petrols OWNER TO postgres;

--
-- Name: client_sales_petrols_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.client_sales_petrols_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.client_sales_petrols_id_seq OWNER TO postgres;

--
-- Name: client_sales_petrols_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.client_sales_petrols_id_seq OWNED BY public.client_sales_petrols.id;


--
-- Name: client_statuses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.client_statuses (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.client_statuses OWNER TO postgres;

--
-- Name: client_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.client_statuses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.client_statuses_id_seq OWNER TO postgres;

--
-- Name: client_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.client_statuses_id_seq OWNED BY public.client_statuses.id;


--
-- Name: clients_statements_column_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.clients_statements_column_sechdules (
    id bigint NOT NULL,
    "Account_Code" text,
    "Account_Name" text,
    "Debiator_Before" text,
    "Creditor_Before" text,
    "Total_Debitor" text,
    "Total_Creditor" text,
    "Debitor_Balance" text,
    "Creditor_Balance" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.clients_statements_column_sechdules OWNER TO postgres;

--
-- Name: clients_statements_column_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.clients_statements_column_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.clients_statements_column_sechdules_id_seq OWNER TO postgres;

--
-- Name: clients_statements_column_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.clients_statements_column_sechdules_id_seq OWNED BY public.clients_statements_column_sechdules.id;


--
-- Name: clients_statements_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.clients_statements_columns (
    id bigint NOT NULL,
    "Account_Code" text,
    "Account_Name" text,
    "Debiator_Before" text,
    "Creditor_Before" text,
    "Total_Debitor" text,
    "Total_Creditor" text,
    "Debitor_Balance" text,
    "Creditor_Balance" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.clients_statements_columns OWNER TO postgres;

--
-- Name: clients_statements_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.clients_statements_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.clients_statements_columns_id_seq OWNER TO postgres;

--
-- Name: clients_statements_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.clients_statements_columns_id_seq OWNED BY public.clients_statements_columns.id;


--
-- Name: coins; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.coins (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Draw" text,
    "Symbol" text,
    "Code" text,
    "Image" text
);


ALTER TABLE public.coins OWNER TO postgres;

--
-- Name: coins_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.coins_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.coins_id_seq OWNER TO postgres;

--
-- Name: coins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.coins_id_seq OWNED BY public.coins.id;


--
-- Name: comments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.comments (
    id bigint NOT NULL,
    "Comment" text NOT NULL,
    "Date" text NOT NULL,
    "Product" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.comments OWNER TO postgres;

--
-- Name: comments_clients; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.comments_clients (
    id bigint NOT NULL,
    "Comment" text,
    "Responsible" bigint,
    "Customer" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "CommentEn" text,
    "Code" text,
    "Date" text,
    "Rate" text,
    "Visit_Cost" text,
    "Note" text,
    "Time" text,
    "Type" text,
    lat text,
    lng text,
    "Voice" text,
    "Next_Meet" text
);


ALTER TABLE public.comments_clients OWNER TO postgres;

--
-- Name: comments_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.comments_clients_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.comments_clients_id_seq OWNER TO postgres;

--
-- Name: comments_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.comments_clients_id_seq OWNED BY public.comments_clients.id;


--
-- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.comments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.comments_id_seq OWNER TO postgres;

--
-- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.comments_id_seq OWNED BY public.comments.id;


--
-- Name: company_cars; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.company_cars (
    id bigint NOT NULL,
    "Name" text,
    "Number" text,
    "Account" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.company_cars OWNER TO postgres;

--
-- Name: company_cars_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.company_cars_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.company_cars_id_seq OWNER TO postgres;

--
-- Name: company_cars_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.company_cars_id_seq OWNED BY public.company_cars.id;


--
-- Name: company_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.company_data (
    id bigint NOT NULL,
    "Name" text,
    "Phone1" text,
    "Phone2" text,
    "Address" text,
    "Commercial_Record" text,
    "Tax_File_Number" text,
    "Logo" text,
    "Icon" text,
    "Print_Text" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Print_Text_Footer" text,
    "Seal" text,
    "Print_Text_Footer_Sales" text,
    "Name_Sales_Bill" text,
    "Name_Sales_Order_Bill" text,
    "Print_Text_Footer_Quote" text,
    "Name_Quote_Bill" text,
    "Print_Text_Footer_Secretariat" text,
    "Logo_Store" text,
    "Phone3" text,
    "Phone4" text,
    "Icon_Store" text,
    "View" text,
    "Tax_Registration_Number" text,
    "Tax_activity_code" text,
    work_nature text,
    "Governrate" text,
    "City" text,
    "Place" text,
    "Nationality" text,
    "Buliding_Num" text,
    "Street" text,
    "Postal_Code" text,
    tax_magistrate text,
    "Client_ID" text,
    "Serial_Client_ID" text,
    "Version_Type" text,
    "Computer_SN" text,
    "Invoice_Type" text,
    "Floor" text,
    "Room" text,
    "Landmark" text,
    "Add_Info" text,
    "Print_Text_Footer_Manufacturing" text,
    "POS_Version" text,
    "Path" text,
    "DB_Backup" text,
    "NameEn" text,
    "Print_Text_En" text,
    "Print_Text_Footer_En" text,
    "Print_Text_Footer_Manufacturing_En" text,
    "Print_Text_Footer_Sales_En" text,
    "Print_Text_Footer_Quote_En" text,
    "Print_Text_Footer_Secretariat_En" text,
    "Name_Sales_Bill_En" text,
    "Name_Sales_Order_Bill_En" text,
    "Name_Quote_Bill_En" text,
    "AddressEn" text,
    "HomeMainScreen" text,
    "PDF" text,
    "Email" text,
    "Location" text,
    "Bill_View" text,
    "Font_Type" text,
    "Welcome_Arabic_Word_App" text,
    "Welcome_English_Word_App" text,
    "Domain" text,
    "Serial_App" text,
    "Attend_Lat" text,
    "Attend_Lng" text,
    "Attend_Space" text,
    "Attend_Time_Before" text,
    "Attend_Time_After" text,
    "Departure_Time_Before" text,
    "Departure_Time_After" text,
    "Verfification_Time" text,
    "Organaziation_Common_Name" text,
    "Organaziation_Name" text,
    "Organaziation_Tax_ID" text,
    "Organaziation_Address" text,
    "Organaziation_Department" text,
    "Organaziation_Category" text,
    "ZATCA_Production" text,
    "OTP_Status" text DEFAULT 0,
    "Use_Zatca" text DEFAULT 0,
    "Backup_Time" text,
    "Purchases_Print_View" text,
    "Purchases_Order_Print_View" text,
    "Sales_Order_Print_View" text,
    "Quote_Print_View" text,
    zatca_environment character varying(191),
    zatca_compliance_certificate text,
    zatca_compliance_secret character varying(191),
    zatca_compliance_request_id character varying(191),
    zatca_production_certificate text,
    zatca_production_secret character varying(191),
    zatca_production_request_id character varying(191),
    zatca_csr_path character varying(191),
    zatca_private_key_path character varying(191),
    zatca_last_icv bigint DEFAULT '0'::bigint NOT NULL,
    zatca_last_invoice_hash text,
    zatca_onboarded_at timestamp(0) without time zone,
    "Statement_Print_View" text
);


ALTER TABLE public.company_data OWNER TO postgres;

--
-- Name: company_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.company_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.company_data_id_seq OWNER TO postgres;

--
-- Name: company_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.company_data_id_seq OWNED BY public.company_data.id;


--
-- Name: compare_prices_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.compare_prices_columns (
    id bigint NOT NULL,
    "Date" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Credit" text,
    "Group" text,
    "Brand" text,
    "Store" text,
    "User" text,
    "Safe" text,
    "Branch" text,
    "SalePrice" text,
    "ProductPrice" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.compare_prices_columns OWNER TO postgres;

--
-- Name: compare_prices_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.compare_prices_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.compare_prices_columns_id_seq OWNER TO postgres;

--
-- Name: compare_prices_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.compare_prices_columns_id_seq OWNED BY public.compare_prices_columns.id;


--
-- Name: compare_prices_columns_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.compare_prices_columns_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Credit" text,
    "Group" text,
    "Brand" text,
    "Store" text,
    "User" text,
    "Safe" text,
    "Branch" text,
    "SalePrice" text,
    "ProductPrice" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.compare_prices_columns_sechdules OWNER TO postgres;

--
-- Name: compare_prices_columns_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.compare_prices_columns_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.compare_prices_columns_sechdules_id_seq OWNER TO postgres;

--
-- Name: compare_prices_columns_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.compare_prices_columns_sechdules_id_seq OWNED BY public.compare_prices_columns_sechdules.id;


--
-- Name: compare_prices_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.compare_prices_filter_twos (
    id bigint NOT NULL,
    "Date" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Current" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "Unit" text,
    "Group" text,
    "Store" text,
    "Product" text,
    "V1" text,
    "V2" text,
    "User" text,
    "CostIn" text,
    "CostOut" text,
    "CostCurrent" text,
    "CostOneIn" text,
    "CostOneOut" text,
    "CostOneCurrent" text,
    "QTY" text,
    "Brand" text,
    "Safe" text,
    "Branch" text,
    "SalePrice" text,
    "ProductPrice" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.compare_prices_filter_twos OWNER TO postgres;

--
-- Name: compare_prices_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.compare_prices_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.compare_prices_filter_twos_id_seq OWNER TO postgres;

--
-- Name: compare_prices_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.compare_prices_filter_twos_id_seq OWNED BY public.compare_prices_filter_twos.id;


--
-- Name: compare_prices_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.compare_prices_filters (
    id bigint NOT NULL,
    "Date" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Current" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "Unit" text,
    "Group" text,
    "Store" text,
    "Product" text,
    "V1" text,
    "V2" text,
    "User" text,
    "CostIn" text,
    "CostOut" text,
    "CostCurrent" text,
    "CostOneIn" text,
    "CostOneOut" text,
    "CostOneCurrent" text,
    "QTY" text,
    "Brand" text,
    "Safe" text,
    "Branch" text,
    "SalePrice" text,
    "ProductPrice" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.compare_prices_filters OWNER TO postgres;

--
-- Name: compare_prices_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.compare_prices_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.compare_prices_filters_id_seq OWNER TO postgres;

--
-- Name: compare_prices_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.compare_prices_filters_id_seq OWNED BY public.compare_prices_filters.id;


--
-- Name: compares; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.compares (
    id bigint NOT NULL,
    "Product" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.compares OWNER TO postgres;

--
-- Name: compares_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.compares_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.compares_id_seq OWNER TO postgres;

--
-- Name: compares_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.compares_id_seq OWNED BY public.compares.id;


--
-- Name: competitors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.competitors (
    id bigint NOT NULL,
    "Facebook" character varying(191),
    "Twitter" character varying(191),
    "Instagram" character varying(191),
    "Name" character varying(191),
    "Country" text,
    "Whatsapp" character varying(191),
    "Addtional_Link" character varying(191),
    "Phone" character varying(191),
    "Pinterest" character varying(191),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text,
    "Website" text
);


ALTER TABLE public.competitors OWNER TO postgres;

--
-- Name: competitors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.competitors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.competitors_id_seq OWNER TO postgres;

--
-- Name: competitors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.competitors_id_seq OWNED BY public.competitors.id;


--
-- Name: consist_maintainces; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.consist_maintainces (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "Exp_Date" text,
    "Store" text,
    "Product" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "Maintaince" text,
    "TDiscount" text,
    "Group" text,
    "Brand" text,
    "Code" text,
    "Date" text,
    "Note" text,
    "Serial_Num" text,
    "Total_Price" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_Cost" text,
    "Total_Bf_Taxes" text,
    "Total_Taxes" text,
    "Draw" text,
    "Company" text,
    "Device_Type" text,
    "Device_Case" text,
    "Coin" text,
    "Cost_Center" text,
    "Account" text,
    "User" text,
    "Status" text,
    "Pattern_Image" text,
    "Time" text,
    "Payment_Method" text,
    "Password" text,
    "Pay" text,
    "Eng_Note" text,
    "Reason" text,
    "Report_Client" text,
    "Work" text,
    "StoreMain" text,
    "Eng" text,
    "Recipient" text,
    "Branch" text,
    "RefuseReason" text,
    "NoteRecived" text,
    "Returned" text,
    "CustomerGroup" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.consist_maintainces OWNER TO postgres;

--
-- Name: consist_maintainces_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.consist_maintainces_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.consist_maintainces_id_seq OWNER TO postgres;

--
-- Name: consist_maintainces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.consist_maintainces_id_seq OWNED BY public.consist_maintainces.id;


--
-- Name: consists; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.consists (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Darw" text NOT NULL,
    "Products_Number" text NOT NULL,
    "Total_Qty" text NOT NULL,
    "Total_Price" text NOT NULL,
    "Account" bigint NOT NULL,
    "Store" bigint,
    "Coin" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Time" text,
    "Branch" text,
    arr bigint,
    "Delete" text DEFAULT 0
);


ALTER TABLE public.consists OWNER TO postgres;

--
-- Name: consists_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.consists_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.consists_arr_seq OWNER TO postgres;

--
-- Name: consists_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.consists_arr_seq OWNED BY public.consists.arr;


--
-- Name: consists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.consists_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.consists_id_seq OWNER TO postgres;

--
-- Name: consists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.consists_id_seq OWNED BY public.consists.id;


--
-- Name: contact_u_s; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.contact_u_s (
    id bigint NOT NULL,
    "Map" text,
    "Arabic_Title" text,
    "English_Title" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    "Opening_Hours" text,
    "Phone1" text,
    "Phone2" text,
    "Phone_Header" text,
    "Email" text,
    "Arabic_Address" text,
    "English_Address" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.contact_u_s OWNER TO postgres;

--
-- Name: contact_u_s_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.contact_u_s_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.contact_u_s_id_seq OWNER TO postgres;

--
-- Name: contact_u_s_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.contact_u_s_id_seq OWNED BY public.contact_u_s.id;


--
-- Name: contract_statuses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.contract_statuses (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.contract_statuses OWNER TO postgres;

--
-- Name: contract_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.contract_statuses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.contract_statuses_id_seq OWNER TO postgres;

--
-- Name: contract_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.contract_statuses_id_seq OWNED BY public.contract_statuses.id;


--
-- Name: contractors_real_projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.contractors_real_projects (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Expenses_Account" text,
    "Merit_Account" text,
    "Project" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.contractors_real_projects OWNER TO postgres;

--
-- Name: contractors_real_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.contractors_real_projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.contractors_real_projects_id_seq OWNER TO postgres;

--
-- Name: contractors_real_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.contractors_real_projects_id_seq OWNED BY public.contractors_real_projects.id;


--
-- Name: cost_centers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cost_centers (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Parent" text DEFAULT 0,
    "Type" text DEFAULT 0
);


ALTER TABLE public.cost_centers OWNER TO postgres;

--
-- Name: cost_centers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.cost_centers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.cost_centers_id_seq OWNER TO postgres;

--
-- Name: cost_centers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.cost_centers_id_seq OWNED BY public.cost_centers.id;


--
-- Name: counters_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.counters_types (
    id bigint NOT NULL,
    "Name" text,
    "Current_Read" text,
    "Store" bigint,
    "Product" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.counters_types OWNER TO postgres;

--
-- Name: counters_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.counters_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.counters_types_id_seq OWNER TO postgres;

--
-- Name: counters_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.counters_types_id_seq OWNED BY public.counters_types.id;


--
-- Name: countris; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.countris (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text NOT NULL,
    "Flag" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Safe" text,
    "Coin" text,
    "Store" text,
    "Code" text,
    "SearchCode" text
);


ALTER TABLE public.countris OWNER TO postgres;

--
-- Name: countris_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.countris_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.countris_id_seq OWNER TO postgres;

--
-- Name: countris_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.countris_id_seq OWNED BY public.countris.id;


--
-- Name: coupon_codes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.coupon_codes (
    id bigint NOT NULL,
    "Code" text,
    "Amount" text,
    "Status" text,
    "Num" text,
    "Used" text,
    "Expire" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.coupon_codes OWNER TO postgres;

--
-- Name: coupon_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.coupon_codes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.coupon_codes_id_seq OWNER TO postgres;

--
-- Name: coupon_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.coupon_codes_id_seq OWNED BY public.coupon_codes.id;


--
-- Name: courses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.courses (
    id bigint NOT NULL,
    "Code" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    "Category" text,
    "Lec_Num" text,
    "Hours" text,
    "Subject" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Note" text
);


ALTER TABLE public.courses OWNER TO postgres;

--
-- Name: courses_categories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.courses_categories (
    id bigint NOT NULL,
    "Image" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.courses_categories OWNER TO postgres;

--
-- Name: courses_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.courses_categories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.courses_categories_id_seq OWNER TO postgres;

--
-- Name: courses_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.courses_categories_id_seq OWNED BY public.courses_categories.id;


--
-- Name: courses_halls; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.courses_halls (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Chairs_Num" text,
    "Wiifii" text,
    "Air_Condition" text,
    "Place" text,
    "Number" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.courses_halls OWNER TO postgres;

--
-- Name: courses_halls_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.courses_halls_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.courses_halls_id_seq OWNER TO postgres;

--
-- Name: courses_halls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.courses_halls_id_seq OWNED BY public.courses_halls.id;


--
-- Name: courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.courses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.courses_id_seq OWNER TO postgres;

--
-- Name: courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.courses_id_seq OWNED BY public.courses.id;


--
-- Name: courses_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.courses_types (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.courses_types OWNER TO postgres;

--
-- Name: courses_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.courses_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.courses_types_id_seq OWNER TO postgres;

--
-- Name: courses_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.courses_types_id_seq OWNED BY public.courses_types.id;


--
-- Name: crm_default_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.crm_default_data (
    id bigint NOT NULL,
    "Price_Level" text,
    "Governrate" bigint,
    "City" bigint,
    "Responsible" bigint,
    "Activity" bigint,
    "Campagin" bigint,
    "ClientStatus" bigint,
    "Platforms" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Client_Delegate" text DEFAULT 0,
    "Nationality" text,
    "ClientGroup" text
);


ALTER TABLE public.crm_default_data OWNER TO postgres;

--
-- Name: crm_default_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.crm_default_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.crm_default_data_id_seq OWNER TO postgres;

--
-- Name: crm_default_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.crm_default_data_id_seq OWNED BY public.crm_default_data.id;


--
-- Name: custom_prints; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.custom_prints (
    id bigint NOT NULL,
    "Sales_Print_Type" text,
    "Sales_Bill_Code" text,
    "Sales_Date" text,
    "Sales_Coin" text,
    "Sales_Draw" text,
    "Sales_Payment_Method" text,
    "Sales_Status" text,
    "Sales_Executor" text,
    "Sales_Refernce_Number" text,
    "Sales_Safe" text,
    "Sales_Client" text,
    "Sales_Delegate" text,
    "Sales_Store" text,
    "Sales_User" text,
    "Sales_Cost_Center" text,
    "Sales_Notes" text,
    "Sales_Pro_Code" text,
    "Sales_Pro_Name" text,
    "Sales_Pro_Unit" text,
    "Sales_Pro_Qty" text,
    "Sales_Pro_Price" text,
    "Sales_Pro_Discount" text,
    "Sales_Pro_Total_Bf_Tax" text,
    "Sales_Pro_Total_Tax" text,
    "Sales_Pro_Total" text,
    "Sales_Pro_Store" text,
    "Sales_Pro_Desc" text,
    "Sales_Pro_Exp_Date" text,
    "Sales_Pro_Weight" text,
    "Sales_Pro_Patch_Number" text,
    "Sales_Product_Numbers" text,
    "Sales_Total_Qty" text,
    "Sales_Total_Discount" text,
    "Sales_Total_Bf_Taxes" text,
    "Sales_Total_Taxes" text,
    "Sales_Total_Price" text,
    "Sales_Paid" text,
    "Sales_Residual" text,
    "Sales_Taknet" text,
    "Sales_Credit" text,
    "Sales_Barcode" text,
    "Sales_Text" text,
    "Sales_Seal" text,
    "Purch_Print_Type" text,
    "Purch_Bill_Code" text,
    "Purch_Date" text,
    "Purch_Vendor_Bill_Date" text,
    "Purch_Coin" text,
    "Purch_Draw" text,
    "Purch_Payment_Method" text,
    "Purch_Status" text,
    "Purch_Refernce_Number" text,
    "Purch_Safe" text,
    "Purch_Vendor" text,
    "Purch_Delegate" text,
    "Purch_Store" text,
    "Purch_User" text,
    "Purch_Cost_Center" text,
    "Purch_Notes" text,
    "Purch_Pro_Code" text,
    "Purch_Pro_Name" text,
    "Purch_Pro_Unit" text,
    "Purch_Pro_Qty" text,
    "Purch_Pro_Price" text,
    "Purch_Pro_Discount" text,
    "Purch_Pro_Total_Bf_Tax" text,
    "Purch_Pro_Total_Tax" text,
    "Purch_Pro_Total" text,
    "Purch_Pro_Store" text,
    "Purch_Pro_Exp_Date" text,
    "Purch_Product_Numbers" text,
    "Purch_Total_Qty" text,
    "Purch_Total_Discount" text,
    "Purch_Total_Bf_Taxes" text,
    "Purch_Total_Taxes" text,
    "Purch_Total_Price" text,
    "Purch_Paid" text,
    "Purch_Residual" text,
    "Purch_Taknet" text,
    "Purch_Credit" text,
    "Purch_Barcode" text,
    "Purch_Text" text,
    "Purch_Seal" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Sales_Client_Phone" text,
    "Sales_Resdiual" text,
    "Sales_Total_Return" text,
    "Sales_Client_Address" text,
    "Sales_Pro_Total_Net" text,
    "Purch_Pro_Total_Net" text
);


ALTER TABLE public.custom_prints OWNER TO postgres;

--
-- Name: custom_prints_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.custom_prints_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.custom_prints_id_seq OWNER TO postgres;

--
-- Name: custom_prints_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.custom_prints_id_seq OWNED BY public.custom_prints.id;


--
-- Name: customer_comments_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.customer_comments_products (
    id bigint NOT NULL,
    "Product" bigint NOT NULL,
    "Comment" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.customer_comments_products OWNER TO postgres;

--
-- Name: customer_comments_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customer_comments_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customer_comments_products_id_seq OWNER TO postgres;

--
-- Name: customer_comments_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customer_comments_products_id_seq OWNED BY public.customer_comments_products.id;


--
-- Name: customer_follow_ups; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.customer_follow_ups (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Client" text,
    "Subject" text,
    "Rate" text,
    "Emp" text,
    "Visit_Cost" text,
    "Note" text,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.customer_follow_ups OWNER TO postgres;

--
-- Name: customer_follow_ups_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customer_follow_ups_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customer_follow_ups_arr_seq OWNER TO postgres;

--
-- Name: customer_follow_ups_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customer_follow_ups_arr_seq OWNED BY public.customer_follow_ups.arr;


--
-- Name: customer_follow_ups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customer_follow_ups_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customer_follow_ups_id_seq OWNER TO postgres;

--
-- Name: customer_follow_ups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customer_follow_ups_id_seq OWNED BY public.customer_follow_ups.id;


--
-- Name: customer_sizes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.customer_sizes (
    id bigint NOT NULL,
    "Customers_ID" bigint NOT NULL,
    "SizeName" text,
    "L" text,
    "LB" text,
    "B" text,
    "S" text,
    "AH" text,
    "CH" text,
    chest_full text,
    "BK" text,
    "HD" text,
    cuff text,
    gusset_len text,
    gusset_width_mm text,
    front text,
    neck_size text,
    net_chest text,
    front_shoulder_height text,
    shoulder_height text,
    back_neck_depth text,
    back_down_shoulder text,
    shoulder_opening text,
    hand_cuff text,
    arm_rotation text,
    arm_length text,
    arm_elbow_width text,
    neck_height text,
    front_neck_depth text,
    "Pocket_chest_height" text,
    neck_height_qalap text,
    hand_length_kabk text,
    hand_rotation_kabk text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Kabak_Width" text,
    neck_size_qalap text,
    "B_Net" text,
    "BK_Net" text,
    "HD_Net" text,
    "IshtakTopWidth" text,
    "IshtakBottomWidth" text,
    "SideTopWidth" text,
    "SideBottomWidth" text
);


ALTER TABLE public.customer_sizes OWNER TO postgres;

--
-- Name: customer_sizes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customer_sizes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customer_sizes_id_seq OWNER TO postgres;

--
-- Name: customer_sizes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customer_sizes_id_seq OWNED BY public.customer_sizes.id;


--
-- Name: customers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.customers (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text,
    "Name" text NOT NULL,
    "Price_Level" text,
    "Phone" text,
    email text,
    password text,
    "ID_Number" text,
    "Address" text,
    "Qualifications" text,
    "Birthdate" text,
    "Social_Status" text,
    "Passport_Number" text,
    "Company_Name" text,
    "Commercial_Registration_No" text,
    "Tax_Card_No" text,
    "Bank_Account" text,
    "Image" text,
    "Next_Time" text,
    "Executions_Status" text,
    "Governrate" bigint,
    "City" bigint,
    "Responsible" bigint,
    "Activity" bigint,
    "Campagin" bigint,
    "ClientStatus" bigint,
    "Account" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Platform" bigint,
    "Contract_Start" text,
    "Contract_End" text,
    code text,
    country text,
    "Tax_Registration_Number" text,
    "Tax_activity_code" text,
    work_nature text,
    "Buliding_Num" text,
    "Street" text,
    "Postal_Code" text,
    tax_magistrate text,
    "Floor" text,
    "Room" text,
    "Landmark" text,
    "Add_Info" text,
    "Phone2" text,
    "Phone3" text,
    "Phone4" text,
    "Warranty" text,
    "Group" bigint,
    "Place" bigint,
    "Nationality" bigint,
    "Product" bigint,
    token text,
    "NameEn" text,
    arr bigint,
    "SearchCode" text,
    "Credit_Limit" text,
    "Respon_Person" text,
    "Respon_Person_Phone" text,
    "Operating_Date" text,
    "Activation_Serial" text,
    "Activation_Code" text,
    "Repayment_Period" text,
    "SecurityInquiry" text,
    "ReasonSecurityInquiry" text,
    "FieldInquiry" text,
    "ResonFieldInquiry" text,
    "Lat" text,
    "Lang" text,
    "Guarantor" text,
    "Branch" text,
    "Points" text
);


ALTER TABLE public.customers OWNER TO postgres;

--
-- Name: customers_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customers_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customers_arr_seq OWNER TO postgres;

--
-- Name: customers_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customers_arr_seq OWNED BY public.customers.arr;


--
-- Name: customers_files; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.customers_files (
    id bigint NOT NULL,
    "File" text NOT NULL,
    "Customer" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.customers_files OWNER TO postgres;

--
-- Name: customers_files_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customers_files_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customers_files_id_seq OWNER TO postgres;

--
-- Name: customers_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customers_files_id_seq OWNED BY public.customers_files.id;


--
-- Name: customers_groups; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.customers_groups (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Discount" text
);


ALTER TABLE public.customers_groups OWNER TO postgres;

--
-- Name: customers_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customers_groups_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customers_groups_id_seq OWNER TO postgres;

--
-- Name: customers_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customers_groups_id_seq OWNED BY public.customers_groups.id;


--
-- Name: customers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customers_id_seq OWNER TO postgres;

--
-- Name: customers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customers_id_seq OWNED BY public.customers.id;


--
-- Name: customers_rate_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.customers_rate_types (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.customers_rate_types OWNER TO postgres;

--
-- Name: customers_rate_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customers_rate_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customers_rate_types_id_seq OWNER TO postgres;

--
-- Name: customers_rate_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customers_rate_types_id_seq OWNED BY public.customers_rate_types.id;


--
-- Name: customers_tickets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.customers_tickets (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Problem" text NOT NULL,
    "Status" text NOT NULL,
    "Bill_Number" text,
    "Responsible" bigint,
    "Customer" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ProblemEn" text,
    arr bigint,
    "TicketIssues" text,
    "Date" text,
    "Voice" text,
    lat text,
    lng text
);


ALTER TABLE public.customers_tickets OWNER TO postgres;

--
-- Name: customers_tickets_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customers_tickets_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customers_tickets_arr_seq OWNER TO postgres;

--
-- Name: customers_tickets_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customers_tickets_arr_seq OWNED BY public.customers_tickets.arr;


--
-- Name: customers_tickets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.customers_tickets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.customers_tickets_id_seq OWNER TO postgres;

--
-- Name: customers_tickets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.customers_tickets_id_seq OWNED BY public.customers_tickets.id;


--
-- Name: deducations_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.deducations_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.deducations_types OWNER TO postgres;

--
-- Name: deducations_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.deducations_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.deducations_types_id_seq OWNER TO postgres;

--
-- Name: deducations_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.deducations_types_id_seq OWNED BY public.deducations_types.id;


--
-- Name: deductions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.deductions (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Amount" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Emp" bigint,
    "Coin" bigint NOT NULL,
    "Type" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.deductions OWNER TO postgres;

--
-- Name: deductions_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.deductions_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.deductions_arr_seq OWNER TO postgres;

--
-- Name: deductions_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.deductions_arr_seq OWNED BY public.deductions.arr;


--
-- Name: deductions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.deductions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.deductions_id_seq OWNER TO postgres;

--
-- Name: deductions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.deductions_id_seq OWNED BY public.deductions.id;


--
-- Name: default_data_show_hides; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.default_data_show_hides (
    id bigint NOT NULL,
    "Status" text,
    "Shipping_Company" text,
    "Vendor_Date" text,
    "Expire_Date" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Coin" text,
    "Draw" text,
    "Delegate_Sale" text,
    "Delegate_Purchase" text,
    "Note" text,
    "Refrence_Number" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Cost_Center" text,
    "Branch" text,
    "Serial_Num" text,
    "Pass" text,
    "Pattern_Image" text,
    "Barcode_Print" text,
    "Unit_Print" text,
    "Total_BF_Print" text,
    "Discount_Print" text,
    "Tax_Print" text,
    "A5" text,
    "A4" text,
    "CM8" text,
    "Group_Brand" text,
    "Patch_Number" text,
    "Manufacturing_Model_Shortcomings" text,
    "Search_Typical" text,
    "Validity_Product" text,
    "Executor_Sale" text,
    "Totuch_Screen" text,
    "Tax_POS" text,
    "TotalDiscountPrint" text,
    "TotalTaxPrint" text,
    "ProductsNumber" text,
    "TotalQtyPrint" text,
    "Credit" text,
    "Barcode" text,
    "Taknet" text,
    "Address" text,
    "Phone1" text,
    "Phone2" text,
    "Phone3" text,
    "Phone4" text,
    "Text" text,
    "Seal" text,
    "Code_Report" text,
    "Unit" text,
    "Refrence_Number_Print" text,
    "Icon_Payment_Recipt" text,
    "SearchCode" text,
    "TaxOnTotal" text,
    "TotalBfTax" text,
    "AvQty" text,
    "Disc" text,
    "Tax" text,
    "Store" text,
    "TaxBill" text,
    "Change_Way_Stores_Transfer" text,
    "Note_POS" text,
    "Open_Drawer" text,
    client_delivery text,
    "POS_RecivedDate" text,
    "POS_Barcode" text,
    "POS_Qty" text,
    "Show_File_InsurancePaper" text,
    "Show_File_Checks" text,
    "Show_File_Purchases" text,
    "Show_File_Sales" text,
    "Show_File_PaymentVoucher" text,
    "Show_File_ReciptVoucher" text,
    "Show_File_TransferStores" text,
    "Thickness_Print" text,
    "Height_Print" text,
    "Thickness" text,
    "Height" text,
    "Items_Guide_Store_Show" text,
    "Sales_Pro_Desc" text,
    "Show_Barcode" text,
    "Show_Net" text,
    "Show_Unit" text,
    "Show_Total" text,
    "ChassisNumber" text,
    "MotorNumber" text,
    "Shipping_Price" text,
    "OpenInputTransferSales" text DEFAULT 0
);


ALTER TABLE public.default_data_show_hides OWNER TO postgres;

--
-- Name: default_data_show_hides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.default_data_show_hides_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.default_data_show_hides_id_seq OWNER TO postgres;

--
-- Name: default_data_show_hides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.default_data_show_hides_id_seq OWNED BY public.default_data_show_hides.id;


--
-- Name: default_sewing_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.default_sewing_orders (
    id bigint NOT NULL,
    "Draw" text,
    "Payment_Method" text,
    "Status" text,
    "DXF_Height_cm" text,
    "Branch" bigint,
    "RecivedBranch" bigint,
    "Safe" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "Delegate" bigint,
    "Client" bigint,
    "Product" bigint,
    "SewingType" bigint,
    "Store" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Account" bigint,
    "TaxType" text
);


ALTER TABLE public.default_sewing_orders OWNER TO postgres;

--
-- Name: default_sewing_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.default_sewing_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.default_sewing_orders_id_seq OWNER TO postgres;

--
-- Name: default_sewing_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.default_sewing_orders_id_seq OWNED BY public.default_sewing_orders.id;


--
-- Name: delivery_apps; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.delivery_apps (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Type" text,
    "Account" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.delivery_apps OWNER TO postgres;

--
-- Name: delivery_apps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.delivery_apps_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.delivery_apps_id_seq OWNER TO postgres;

--
-- Name: delivery_apps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.delivery_apps_id_seq OWNED BY public.delivery_apps.id;


--
-- Name: depaarture_policy_emps; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.depaarture_policy_emps (
    id bigint NOT NULL,
    "Emp" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "From" integer,
    "To" integer,
    "Discount" numeric
);


ALTER TABLE public.depaarture_policy_emps OWNER TO postgres;

--
-- Name: depaarture_policy_emps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.depaarture_policy_emps_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.depaarture_policy_emps_id_seq OWNER TO postgres;

--
-- Name: depaarture_policy_emps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.depaarture_policy_emps_id_seq OWNED BY public.depaarture_policy_emps.id;


--
-- Name: departure_emps; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.departure_emps (
    id bigint NOT NULL,
    "In_Time" text NOT NULL,
    "Out_Time" text NOT NULL,
    "Hours_Number" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Note" text,
    "Departure" bigint,
    "Emp" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Disc_Late" text,
    "Disc_Early" text
);


ALTER TABLE public.departure_emps OWNER TO postgres;

--
-- Name: departure_emps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.departure_emps_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.departure_emps_id_seq OWNER TO postgres;

--
-- Name: departure_emps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.departure_emps_id_seq OWNED BY public.departure_emps.id;


--
-- Name: departures; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.departures (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Note" text,
    "Attend" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.departures OWNER TO postgres;

--
-- Name: departures_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.departures_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.departures_arr_seq OWNER TO postgres;

--
-- Name: departures_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.departures_arr_seq OWNED BY public.departures.arr;


--
-- Name: departures_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.departures_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.departures_id_seq OWNER TO postgres;

--
-- Name: departures_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.departures_id_seq OWNED BY public.departures.id;


--
-- Name: desvice_cases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.desvice_cases (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.desvice_cases OWNER TO postgres;

--
-- Name: desvice_cases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.desvice_cases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.desvice_cases_id_seq OWNER TO postgres;

--
-- Name: desvice_cases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.desvice_cases_id_seq OWNED BY public.desvice_cases.id;


--
-- Name: device_descrips; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.device_descrips (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    "Sort" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.device_descrips OWNER TO postgres;

--
-- Name: device_descrips_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.device_descrips_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.device_descrips_id_seq OWNER TO postgres;

--
-- Name: device_descrips_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.device_descrips_id_seq OWNED BY public.device_descrips.id;


--
-- Name: devices_typesies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.devices_typesies (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    "Company" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.devices_typesies OWNER TO postgres;

--
-- Name: devices_typesies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.devices_typesies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.devices_typesies_id_seq OWNER TO postgres;

--
-- Name: devices_typesies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.devices_typesies_id_seq OWNED BY public.devices_typesies.id;


--
-- Name: disclaimers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.disclaimers (
    id bigint NOT NULL,
    "Date" text,
    "File" text,
    "Emp" text,
    "Note" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.disclaimers OWNER TO postgres;

--
-- Name: disclaimers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.disclaimers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.disclaimers_id_seq OWNER TO postgres;

--
-- Name: disclaimers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.disclaimers_id_seq OWNED BY public.disclaimers.id;


--
-- Name: discounts_emps; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.discounts_emps (
    id bigint NOT NULL,
    "AmountDiscount" text,
    "Discount" bigint,
    "Emp" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.discounts_emps OWNER TO postgres;

--
-- Name: discounts_emps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.discounts_emps_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.discounts_emps_id_seq OWNER TO postgres;

--
-- Name: discounts_emps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.discounts_emps_id_seq OWNED BY public.discounts_emps.id;


--
-- Name: documentary__credits; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.documentary__credits (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Document_Number" text,
    "Foreign_Currency" text,
    "Shipping_Company" text,
    "Shipping_Method" text,
    "Payment_Method" text,
    "Customs_Certificate_Number" text,
    "Bill_Lading_Number" text,
    "Origin_Country" text,
    "Commercial_Invoice_Number" text,
    "Status" text,
    "Coin" text,
    "Draw" text,
    "Bank" text,
    "Vendor" text,
    "CommercialInvoiceFile" text,
    "OriginCertificateFile" text,
    "LadingBillFile" text,
    "PackingStatementFile" text,
    "WeightsStatementFile" text,
    "CustomsCertificateFile" text,
    "AnalysisCertificateFile" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.documentary__credits OWNER TO postgres;

--
-- Name: documentary__credits_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.documentary__credits_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.documentary__credits_id_seq OWNER TO postgres;

--
-- Name: documentary__credits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.documentary__credits_id_seq OWNED BY public.documentary__credits.id;


--
-- Name: domains; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.domains (
    id integer NOT NULL,
    domain character varying(255) NOT NULL,
    tenant_id character varying(191) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.domains OWNER TO postgres;

--
-- Name: domains_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.domains_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.domains_id_seq OWNER TO postgres;

--
-- Name: domains_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.domains_id_seq OWNED BY public.domains.id;


--
-- Name: dxf_heights; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.dxf_heights (
    id bigint NOT NULL,
    "Name" text,
    "Num" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.dxf_heights OWNER TO postgres;

--
-- Name: dxf_heights_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.dxf_heights_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.dxf_heights_id_seq OWNER TO postgres;

--
-- Name: dxf_heights_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.dxf_heights_id_seq OWNED BY public.dxf_heights.id;


--
-- Name: emp_covenants; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_covenants (
    id bigint NOT NULL,
    "Emp" text,
    "Date" text,
    "Name" text,
    "Price" text,
    "Reason" text,
    "Life_Expectancy" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_covenants OWNER TO postgres;

--
-- Name: emp_covenants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_covenants_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_covenants_id_seq OWNER TO postgres;

--
-- Name: emp_covenants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_covenants_id_seq OWNED BY public.emp_covenants.id;


--
-- Name: emp_excs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_excs (
    id bigint NOT NULL,
    "Name" text,
    "Account" text,
    "Emp_Type" text,
    "Salary" text,
    "Phone" text,
    "Job" text,
    "Department" text,
    "Store1" text,
    "Store2" text,
    "Store3" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_excs OWNER TO postgres;

--
-- Name: emp_excs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_excs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_excs_id_seq OWNER TO postgres;

--
-- Name: emp_excs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_excs_id_seq OWNED BY public.emp_excs.id;


--
-- Name: emp_installment_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_installment_details (
    id bigint NOT NULL,
    "Date" text,
    "Value" text,
    "Status" text,
    "Emp" bigint,
    "Install" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_installment_details OWNER TO postgres;

--
-- Name: emp_installment_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_installment_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_installment_details_id_seq OWNER TO postgres;

--
-- Name: emp_installment_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_installment_details_id_seq OWNED BY public.emp_installment_details.id;


--
-- Name: emp_installments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_installments (
    id bigint NOT NULL,
    "Amount" text NOT NULL,
    "Years_Number" text NOT NULL,
    "First_Date" text NOT NULL,
    "Install" text NOT NULL,
    "Install_Numbers" text NOT NULL,
    "Status" text NOT NULL,
    "Emp" bigint,
    "Loan" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_installments OWNER TO postgres;

--
-- Name: emp_installments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_installments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_installments_id_seq OWNER TO postgres;

--
-- Name: emp_installments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_installments_id_seq OWNED BY public.emp_installments.id;


--
-- Name: emp_mails; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_mails (
    id bigint NOT NULL,
    "Message" text,
    "Emp" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_mails OWNER TO postgres;

--
-- Name: emp_mails_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_mails_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_mails_id_seq OWNER TO postgres;

--
-- Name: emp_mails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_mails_id_seq OWNED BY public.emp_mails.id;


--
-- Name: emp_movements; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_movements (
    id bigint NOT NULL,
    "Date" text,
    "Time" text,
    "Emp" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_movements OWNER TO postgres;

--
-- Name: emp_movements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_movements_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_movements_id_seq OWNER TO postgres;

--
-- Name: emp_movements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_movements_id_seq OWNED BY public.emp_movements.id;


--
-- Name: emp_p_o_s_stores; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_p_o_s_stores (
    id bigint NOT NULL,
    "Emp" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Store" text
);


ALTER TABLE public.emp_p_o_s_stores OWNER TO postgres;

--
-- Name: emp_p_o_s_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_p_o_s_stores_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_p_o_s_stores_id_seq OWNER TO postgres;

--
-- Name: emp_p_o_s_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_p_o_s_stores_id_seq OWNED BY public.emp_p_o_s_stores.id;


--
-- Name: emp_payment_accounts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_payment_accounts (
    id bigint NOT NULL,
    "Emp" text,
    "Account" text,
    "Account_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_payment_accounts OWNER TO postgres;

--
-- Name: emp_payment_accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_payment_accounts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_payment_accounts_id_seq OWNER TO postgres;

--
-- Name: emp_payment_accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_payment_accounts_id_seq OWNED BY public.emp_payment_accounts.id;


--
-- Name: emp_ratios; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_ratios (
    id bigint NOT NULL,
    "Salary" text NOT NULL,
    "Type" text NOT NULL,
    "Emp" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Typee" text,
    "From" integer,
    "To" integer,
    "Rate" numeric(8,2)
);


ALTER TABLE public.emp_ratios OWNER TO postgres;

--
-- Name: emp_ratios_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_ratios_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_ratios_id_seq OWNER TO postgres;

--
-- Name: emp_ratios_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_ratios_id_seq OWNED BY public.emp_ratios.id;


--
-- Name: emp_recipt_accounts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_recipt_accounts (
    id bigint NOT NULL,
    "Emp" text,
    "Account" text,
    "Account_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_recipt_accounts OWNER TO postgres;

--
-- Name: emp_recipt_accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_recipt_accounts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_recipt_accounts_id_seq OWNER TO postgres;

--
-- Name: emp_recipt_accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_recipt_accounts_id_seq OWNED BY public.emp_recipt_accounts.id;


--
-- Name: emp_safes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emp_safes (
    id bigint NOT NULL,
    "Safe" text,
    "Emp" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emp_safes OWNER TO postgres;

--
-- Name: emp_safes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emp_safes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emp_safes_id_seq OWNER TO postgres;

--
-- Name: emp_safes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emp_safes_id_seq OWNED BY public.emp_safes.id;


--
-- Name: empassies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.empassies (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Arabic_Address" text,
    "English_Address" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.empassies OWNER TO postgres;

--
-- Name: empassies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.empassies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.empassies_id_seq OWNER TO postgres;

--
-- Name: empassies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.empassies_id_seq OWNED BY public.empassies.id;


--
-- Name: empassy_reserve_dates; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.empassy_reserve_dates (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Client" text,
    "Purpose" text,
    "Empassy" text,
    "Booking_Date" text,
    "Cost" text,
    "Pay" text,
    "Residual" text,
    "Safe" text,
    "Draw" text,
    "Coin" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.empassy_reserve_dates OWNER TO postgres;

--
-- Name: empassy_reserve_dates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.empassy_reserve_dates_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.empassy_reserve_dates_id_seq OWNER TO postgres;

--
-- Name: empassy_reserve_dates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.empassy_reserve_dates_id_seq OWNED BY public.empassy_reserve_dates.id;


--
-- Name: employesses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.employesses (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Name" text NOT NULL,
    "Emp_Type" text,
    "Salary" text,
    "Attendence" text,
    "Departure" text,
    "Hours_Numbers" text,
    "Days_Numbers" text,
    "Day_Price" text,
    "Precentage_of_Sales" text,
    "Precentage_of_Profits" text,
    "Image" text,
    "Bank_Account" text,
    "Qualifications" text,
    "Address" text,
    "Social_Status" text,
    "ID_Number" text,
    "Contract_Start" text,
    "Contract_End" text,
    "Phone" text,
    "Phone2" text,
    "Email" text,
    "Password" text,
    "Job" bigint,
    "Department" bigint,
    "Account" bigint,
    "Account_Emp" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Note" text,
    "Precentage_of_Execution" text,
    "Covenant" bigint,
    "Commission" bigint,
    "Price_Level" text,
    "Bill_Num" text,
    "NumbersOfBill" text,
    "EmpSort" text DEFAULT 1,
    "CV" text,
    "ID_Image" text,
    "Criminal_status" text,
    "Contract" text,
    health_certificate text,
    "Search_Card" text,
    "Recruitment_certificate" text,
    employee_profile text,
    duration_criminal_investigation text,
    "Birthdate" text,
    "Attitude_recruiting" text,
    "Job_Number" text,
    date_resignation text,
    "Living" text,
    "Branch" text,
    "Level" text,
    "Religion" text,
    "Insurance_salary" text,
    "Insurance_companies" text,
    "Previous_experience" text,
    "Nationality" text,
    "MonthlyTarget" text,
    "QuarterTarget" text,
    "SemiTarget" text,
    "YearlyTarget" text,
    "IDExpireDate" text,
    "LicensExpireDate" text,
    "PassportExpireDate" text,
    "Merit" text,
    "Pro_Group" text,
    "NameEn" text,
    arr bigint,
    "SearchCode" text,
    "Active" text DEFAULT 1,
    "Delete" text DEFAULT 0,
    "Attendence2" text,
    "Departure2" text,
    "ShippingCollectionType" text,
    "ShippingCollectionValue" text,
    "Other_Shift" text,
    "Points" text
);


ALTER TABLE public.employesses OWNER TO postgres;

--
-- Name: employesses_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.employesses_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.employesses_arr_seq OWNER TO postgres;

--
-- Name: employesses_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.employesses_arr_seq OWNED BY public.employesses.arr;


--
-- Name: employesses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.employesses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.employesses_id_seq OWNER TO postgres;

--
-- Name: employesses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.employesses_id_seq OWNED BY public.employesses.id;


--
-- Name: employment_levels; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.employment_levels (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.employment_levels OWNER TO postgres;

--
-- Name: employment_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.employment_levels_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.employment_levels_id_seq OWNER TO postgres;

--
-- Name: employment_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.employment_levels_id_seq OWNED BY public.employment_levels.id;


--
-- Name: emps_producation_points; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emps_producation_points (
    id bigint NOT NULL,
    "Month" text,
    "Point" text,
    "Emp" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Date" text
);


ALTER TABLE public.emps_producation_points OWNER TO postgres;

--
-- Name: emps_producation_points_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emps_producation_points_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emps_producation_points_id_seq OWNER TO postgres;

--
-- Name: emps_producation_points_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emps_producation_points_id_seq OWNED BY public.emps_producation_points.id;


--
-- Name: emps_producation_quantities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emps_producation_quantities (
    id bigint NOT NULL,
    "FromQ" text,
    "ToQ" text,
    "ValueQ" text,
    "Emp" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.emps_producation_quantities OWNER TO postgres;

--
-- Name: emps_producation_quantities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emps_producation_quantities_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emps_producation_quantities_id_seq OWNER TO postgres;

--
-- Name: emps_producation_quantities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emps_producation_quantities_id_seq OWNED BY public.emps_producation_quantities.id;


--
-- Name: entitlements; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.entitlements (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Amount" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Emp" bigint,
    "Coin" bigint NOT NULL,
    "Type" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.entitlements OWNER TO postgres;

--
-- Name: entitlements_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.entitlements_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.entitlements_arr_seq OWNER TO postgres;

--
-- Name: entitlements_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.entitlements_arr_seq OWNED BY public.entitlements.arr;


--
-- Name: entitlements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.entitlements_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.entitlements_id_seq OWNER TO postgres;

--
-- Name: entitlements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.entitlements_id_seq OWNED BY public.entitlements.id;


--
-- Name: events; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.events (
    id bigint NOT NULL,
    "Start_Date" text,
    "End_Date" text,
    "Event_Ar_Name" text,
    "Event_En_Name" text,
    "Type" text,
    "Type_ID" text,
    "Type_Code" text,
    "Emp" text,
    "Client" text,
    "Product" text,
    "Customer" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.events OWNER TO postgres;

--
-- Name: events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.events_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.events_id_seq OWNER TO postgres;

--
-- Name: events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.events_id_seq OWNED BY public.events.id;


--
-- Name: examinations_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.examinations_types (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Allow_From" text NOT NULL,
    "Allow_To" text NOT NULL,
    "Unit" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.examinations_types OWNER TO postgres;

--
-- Name: examinations_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.examinations_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.examinations_types_id_seq OWNER TO postgres;

--
-- Name: examinations_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.examinations_types_id_seq OWNED BY public.examinations_types.id;


--
-- Name: exchange_commissions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.exchange_commissions (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text,
    "Note" text,
    "Return_Maintaince" text,
    "Draw" text NOT NULL,
    "Amount" text NOT NULL,
    "Commision" text NOT NULL,
    "Pre_Sales" text NOT NULL,
    "Pre_Execu" text NOT NULL,
    "Safe" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "Emp" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Total_Exchange_Commision" text,
    "Collection" text,
    "Delete" text DEFAULT 0,
    "Ship" text
);


ALTER TABLE public.exchange_commissions OWNER TO postgres;

--
-- Name: exchange_commissions_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.exchange_commissions_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.exchange_commissions_arr_seq OWNER TO postgres;

--
-- Name: exchange_commissions_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.exchange_commissions_arr_seq OWNED BY public.exchange_commissions."Code";


--
-- Name: exchange_commissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.exchange_commissions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.exchange_commissions_id_seq OWNER TO postgres;

--
-- Name: exchange_commissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.exchange_commissions_id_seq OWNED BY public.exchange_commissions.id;


--
-- Name: execute_job_order_models; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.execute_job_order_models (
    id bigint NOT NULL,
    "Model" text,
    "Qty" text,
    "Total_Cost" text,
    "Outcome" text,
    "Execute" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.execute_job_order_models OWNER TO postgres;

--
-- Name: execute_job_order_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.execute_job_order_models_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.execute_job_order_models_id_seq OWNER TO postgres;

--
-- Name: execute_job_order_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.execute_job_order_models_id_seq OWNED BY public.execute_job_order_models.id;


--
-- Name: execute_job_order_workmanships; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.execute_job_order_workmanships (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "TDiscount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "Store" text,
    "Product" text,
    "Unit" text,
    "Execute" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Total_Net" text
);


ALTER TABLE public.execute_job_order_workmanships OWNER TO postgres;

--
-- Name: execute_job_order_workmanships_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.execute_job_order_workmanships_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.execute_job_order_workmanships_id_seq OWNER TO postgres;

--
-- Name: execute_job_order_workmanships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.execute_job_order_workmanships_id_seq OWNED BY public.execute_job_order_workmanships.id;


--
-- Name: execute_job_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.execute_job_orders (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Note" text,
    "Client" text,
    "Executor" text,
    "Delegate" text,
    "RecivedDate" text,
    "Recipient" text,
    "Order" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Transfer" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0,
    "Current_Credit" text,
    "Model" text,
    "Status" text DEFAULT 0
);


ALTER TABLE public.execute_job_orders OWNER TO postgres;

--
-- Name: execute_job_orders_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.execute_job_orders_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.execute_job_orders_arr_seq OWNER TO postgres;

--
-- Name: execute_job_orders_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.execute_job_orders_arr_seq OWNED BY public.execute_job_orders."Code";


--
-- Name: execute_job_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.execute_job_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.execute_job_orders_id_seq OWNER TO postgres;

--
-- Name: execute_job_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.execute_job_orders_id_seq OWNED BY public.execute_job_orders.id;


--
-- Name: execute_sewing_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.execute_sewing_orders (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Draw" text,
    "Notes" text,
    "Product_Price" text,
    "Qty" text,
    "Safe" bigint,
    "Coin" bigint,
    "Client" bigint,
    "Product" bigint,
    "Store" bigint,
    "User" bigint,
    "SewingOrder" bigint,
    "MeasurementPort" bigint,
    "DataEntry" bigint,
    "ShearPort" bigint,
    "ShearOutletAssistant" bigint,
    "CutReferences" bigint,
    "CollarOutlet" bigint,
    "SidePort" bigint,
    "PocketPort" bigint,
    "ShoulderPort" bigint,
    "ComplaintPort" bigint,
    "ArmPort" bigint,
    "QuantumPort" bigint,
    "SeedFillingPort" bigint,
    "FrontPocketPort" bigint,
    "SnapPort" bigint,
    "IroningPort" bigint,
    "PackagingPort" bigint,
    "Delivery" bigint,
    "ProductionManager" bigint,
    "QualityController" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.execute_sewing_orders OWNER TO postgres;

--
-- Name: execute_sewing_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.execute_sewing_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.execute_sewing_orders_id_seq OWNER TO postgres;

--
-- Name: execute_sewing_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.execute_sewing_orders_id_seq OWNED BY public.execute_sewing_orders.id;


--
-- Name: executing_receiving_secretariats; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.executing_receiving_secretariats (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Qty" text,
    "Total" text,
    "Model" text,
    "User" text,
    "Time" text,
    "Branch" text,
    "StoreIn" text,
    "StoreOut" text,
    "Client" text,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Total_Workmanship_Price" text
);


ALTER TABLE public.executing_receiving_secretariats OWNER TO postgres;

--
-- Name: executing_receiving_secretariats_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.executing_receiving_secretariats_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.executing_receiving_secretariats_arr_seq OWNER TO postgres;

--
-- Name: executing_receiving_secretariats_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.executing_receiving_secretariats_arr_seq OWNED BY public.executing_receiving_secretariats.arr;


--
-- Name: executing_receiving_secretariats_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.executing_receiving_secretariats_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.executing_receiving_secretariats_id_seq OWNER TO postgres;

--
-- Name: executing_receiving_secretariats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.executing_receiving_secretariats_id_seq OWNED BY public.executing_receiving_secretariats.id;


--
-- Name: executing_receivings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.executing_receivings (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Qty" text NOT NULL,
    "Total" text NOT NULL,
    "Model" bigint NOT NULL,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text,
    "Time" text,
    "StoreIn" text,
    "StoreOut" text,
    "Sort" text,
    "Vendor" text,
    "Cost_Workmentship" text,
    "Total_Workmentship" text,
    arr bigint,
    "Height" text,
    "Width" text,
    "Number" text,
    "CostCenter" text
);


ALTER TABLE public.executing_receivings OWNER TO postgres;

--
-- Name: executing_receivings_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.executing_receivings_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.executing_receivings_arr_seq OWNER TO postgres;

--
-- Name: executing_receivings_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.executing_receivings_arr_seq OWNED BY public.executing_receivings.arr;


--
-- Name: executing_receivings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.executing_receivings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.executing_receivings_id_seq OWNER TO postgres;

--
-- Name: executing_receivings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.executing_receivings_id_seq OWNED BY public.executing_receivings.id;


--
-- Name: executor_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.executor_filters (
    id bigint NOT NULL,
    "Product" text NOT NULL,
    "Code" text,
    "Name" text,
    "VName" text,
    "VVName" text,
    "V1" text,
    "V2" text,
    "Qty" text,
    "Price" text,
    "Total" text,
    "Emp" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.executor_filters OWNER TO postgres;

--
-- Name: executor_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.executor_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.executor_filters_id_seq OWNER TO postgres;

--
-- Name: executor_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.executor_filters_id_seq OWNED BY public.executor_filters.id;


--
-- Name: expenses_list_column_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.expenses_list_column_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code_Type" text,
    "Statement" text,
    "Debitor" text,
    "Cost_Center" text,
    "Coin" text,
    "User" text,
    "Account" text,
    "Branch" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.expenses_list_column_sechdules OWNER TO postgres;

--
-- Name: expenses_list_column_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.expenses_list_column_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.expenses_list_column_sechdules_id_seq OWNER TO postgres;

--
-- Name: expenses_list_column_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.expenses_list_column_sechdules_id_seq OWNED BY public.expenses_list_column_sechdules.id;


--
-- Name: expenses_list_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.expenses_list_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code_Type" text,
    "Statement" text,
    "Debitor" text,
    "Cost_Center" text,
    "Coin" text,
    "User" text,
    "Account" text,
    "Branch" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.expenses_list_columns OWNER TO postgres;

--
-- Name: expenses_list_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.expenses_list_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.expenses_list_columns_id_seq OWNER TO postgres;

--
-- Name: expenses_list_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.expenses_list_columns_id_seq OWNED BY public.expenses_list_columns.id;


--
-- Name: expenses_type_projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.expenses_type_projects (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Project" text,
    "Account" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.expenses_type_projects OWNER TO postgres;

--
-- Name: expenses_type_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.expenses_type_projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.expenses_type_projects_id_seq OWNER TO postgres;

--
-- Name: expenses_type_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.expenses_type_projects_id_seq OWNED BY public.expenses_type_projects.id;


--
-- Name: expenses_type_templates; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.expenses_type_templates (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Unit" text,
    "Account" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.expenses_type_templates OWNER TO postgres;

--
-- Name: expenses_type_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.expenses_type_templates_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.expenses_type_templates_id_seq OWNER TO postgres;

--
-- Name: expenses_type_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.expenses_type_templates_id_seq OWNED BY public.expenses_type_templates.id;


--
-- Name: expire_date_qties; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.expire_date_qties (
    id bigint NOT NULL,
    "Qty" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "PP_Code" text,
    "PPP_Code" text,
    "PPPP_Code" text,
    "V_Name" text,
    "VV_Name" text,
    "Store" text,
    "Unit" text,
    "Product" text,
    "V1" text,
    "V2" text,
    "Low_Unit" text,
    "Exp_Date" text,
    "Group" text,
    "Brand" text,
    "Branch" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Hold_Qty" text DEFAULT 0
);


ALTER TABLE public.expire_date_qties OWNER TO postgres;

--
-- Name: expire_date_qties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.expire_date_qties_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.expire_date_qties_id_seq OWNER TO postgres;

--
-- Name: expire_date_qties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.expire_date_qties_id_seq OWNED BY public.expire_date_qties.id;


--
-- Name: export_checks; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.export_checks (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Check_Num" text,
    "Due_Date" text NOT NULL,
    "Amount" text NOT NULL,
    "Status" text DEFAULT '0'::text NOT NULL,
    "Reason" text,
    "Check_Type" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "Account" bigint NOT NULL,
    "Bank" bigint NOT NULL,
    "Pay_Account" bigint NOT NULL,
    "Bene_Account" bigint,
    "User" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "File" text,
    arr bigint,
    "Image" text,
    "Signture_Name" text,
    "Bank_Branch" text,
    "Edit" text,
    "Edit_New_Code" text,
    "Delete" text,
    "BankSafe_Account" text,
    "Transfer" text
);


ALTER TABLE public.export_checks OWNER TO postgres;

--
-- Name: export_checks_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.export_checks_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.export_checks_arr_seq OWNER TO postgres;

--
-- Name: export_checks_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.export_checks_arr_seq OWNED BY public.export_checks."Code";


--
-- Name: export_checks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.export_checks_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.export_checks_id_seq OWNER TO postgres;

--
-- Name: export_checks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.export_checks_id_seq OWNED BY public.export_checks.id;


--
-- Name: f_a_q_s; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.f_a_q_s (
    id bigint NOT NULL,
    "Arabic_Question" text NOT NULL,
    "English_Question" text NOT NULL,
    "Arabic_Answer" text NOT NULL,
    "English_Answer" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.f_a_q_s OWNER TO postgres;

--
-- Name: f_a_q_s_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.f_a_q_s_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.f_a_q_s_id_seq OWNER TO postgres;

--
-- Name: f_a_q_s_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.f_a_q_s_id_seq OWNED BY public.f_a_q_s.id;


--
-- Name: failed_jobs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.failed_jobs (
    id bigint NOT NULL,
    uuid character varying(191) NOT NULL,
    connection text NOT NULL,
    queue text NOT NULL,
    payload text NOT NULL,
    exception text NOT NULL,
    failed_at timestamp(0) without time zone DEFAULT now() NOT NULL
);


ALTER TABLE public.failed_jobs OWNER TO postgres;

--
-- Name: failed_jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.failed_jobs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.failed_jobs_id_seq OWNER TO postgres;

--
-- Name: failed_jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.failed_jobs_id_seq OWNED BY public.failed_jobs.id;


--
-- Name: faults_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.faults_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    "Note" text,
    "Amount" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.faults_types OWNER TO postgres;

--
-- Name: faults_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.faults_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.faults_types_id_seq OWNER TO postgres;

--
-- Name: faults_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.faults_types_id_seq OWNED BY public.faults_types.id;


--
-- Name: fifo_qties; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.fifo_qties (
    id bigint NOT NULL,
    "Qty" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "PP_Code" text,
    "PPP_Code" text,
    "PPPP_Code" text,
    "V_Name" text,
    "VV_Name" text,
    "Cost_Price" text,
    "Store" text,
    "Unit" text,
    "Product" text,
    "V1" text,
    "V2" text,
    "Low_Unit" text,
    "Exp_Date" text,
    "SearchCode1" text,
    "SearchCode2" text,
    "Group" text,
    "Brand" text,
    "Branch" text,
    "Purchases_Date" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Original_Qty" text,
    "Hold_Qty" text DEFAULT 0
);


ALTER TABLE public.fifo_qties OWNER TO postgres;

--
-- Name: fifo_qties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.fifo_qties_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.fifo_qties_id_seq OWNER TO postgres;

--
-- Name: fifo_qties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.fifo_qties_id_seq OWNED BY public.fifo_qties.id;


--
-- Name: firewall_ips; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.firewall_ips (
    id integer NOT NULL,
    ip character varying(191) NOT NULL,
    log_id integer,
    blocked boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.firewall_ips OWNER TO postgres;

--
-- Name: firewall_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.firewall_logs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.firewall_logs_id_seq OWNER TO postgres;

--
-- Name: firewall_logs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.firewall_logs (
    id integer DEFAULT nextval('public.firewall_logs_id_seq'::regclass) NOT NULL,
    ip character varying(191) NOT NULL,
    level character varying(191) DEFAULT 'medium'::character varying NOT NULL,
    middleware character varying(191) NOT NULL,
    user_id integer,
    url text,
    referrer character varying(191),
    request text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.firewall_logs OWNER TO postgres;

--
-- Name: follow_lists; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.follow_lists (
    id bigint NOT NULL,
    "Emp" text,
    "Day" text,
    "Time" text,
    "Client" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.follow_lists OWNER TO postgres;

--
-- Name: follow_lists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.follow_lists_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.follow_lists_id_seq OWNER TO postgres;

--
-- Name: follow_lists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.follow_lists_id_seq OWNED BY public.follow_lists.id;


--
-- Name: general_dailies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.general_dailies (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Type" text NOT NULL,
    "Debitor" text NOT NULL,
    "Creditor" text NOT NULL,
    "Statement" text,
    "Draw" text NOT NULL,
    "Debitor_Coin" text NOT NULL,
    "Creditor_Coin" text NOT NULL,
    "Account" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    userr bigint,
    "Code_Type" text,
    "Branch" text,
    "TypeEn" text,
    arr bigint
);


ALTER TABLE public.general_dailies OWNER TO postgres;

--
-- Name: general_dailies_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.general_dailies_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.general_dailies_arr_seq OWNER TO postgres;

--
-- Name: general_dailies_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.general_dailies_arr_seq OWNED BY public.general_dailies.arr;


--
-- Name: general_dailies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.general_dailies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.general_dailies_id_seq OWNER TO postgres;

--
-- Name: general_dailies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.general_dailies_id_seq OWNED BY public.general_dailies.id;


--
-- Name: goods_product_projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.goods_product_projects (
    id bigint NOT NULL,
    "Goods" text,
    "Product" text,
    "P_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Unit" text,
    "Qty" text,
    "AvQty" text,
    "Price" text,
    "Total" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.goods_product_projects OWNER TO postgres;

--
-- Name: goods_product_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.goods_product_projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.goods_product_projects_id_seq OWNER TO postgres;

--
-- Name: goods_product_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.goods_product_projects_id_seq OWNED BY public.goods_product_projects.id;


--
-- Name: goods_projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.goods_projects (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Store" text,
    "Cost_Center" text,
    "Responsible" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Note" text,
    "Project" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Price" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.goods_projects OWNER TO postgres;

--
-- Name: goods_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.goods_projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.goods_projects_id_seq OWNER TO postgres;

--
-- Name: goods_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.goods_projects_id_seq OWNED BY public.goods_projects.id;


--
-- Name: governrates; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.governrates (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Country" text,
    "SearchCode" text
);


ALTER TABLE public.governrates OWNER TO postgres;

--
-- Name: governrates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.governrates_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.governrates_id_seq OWNER TO postgres;

--
-- Name: governrates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.governrates_id_seq OWNED BY public.governrates.id;


--
-- Name: group_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.group_filters (
    id bigint NOT NULL,
    "Product" text NOT NULL,
    "Code" text,
    "Name" text,
    "VName" text,
    "VVName" text,
    "V1" text,
    "V2" text,
    "Qty" text,
    "Price" text,
    "Total" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.group_filters OWNER TO postgres;

--
-- Name: group_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.group_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.group_filters_id_seq OWNER TO postgres;

--
-- Name: group_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.group_filters_id_seq OWNED BY public.group_filters.id;


--
-- Name: holidays; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.holidays (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Num_of_Days" text NOT NULL,
    "Start_Date" text NOT NULL,
    "Discount" text NOT NULL,
    "Status" text NOT NULL,
    "Note" text,
    "Emp" bigint,
    "Type" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.holidays OWNER TO postgres;

--
-- Name: holidays_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.holidays_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.holidays_arr_seq OWNER TO postgres;

--
-- Name: holidays_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.holidays_arr_seq OWNED BY public.holidays.arr;


--
-- Name: holidays_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.holidays_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.holidays_id_seq OWNER TO postgres;

--
-- Name: holidays_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.holidays_id_seq OWNED BY public.holidays.id;


--
-- Name: holidays_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.holidays_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    "Days" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "From_Date" text,
    "To_Date" text
);


ALTER TABLE public.holidays_types OWNER TO postgres;

--
-- Name: holidays_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.holidays_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.holidays_types_id_seq OWNER TO postgres;

--
-- Name: holidays_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.holidays_types_id_seq OWNED BY public.holidays_types.id;


--
-- Name: home_e_com_designs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.home_e_com_designs (
    id bigint NOT NULL,
    "Slider_BG_Type" text,
    "Slider_BG_Image" text,
    "Slider_BG_Color" text,
    "Slider_Button_BG_Color" text,
    "Slider_Button_Txt_Color" text,
    "Slider_Button_Hover_BG_Color" text,
    "Slider_Button_Hover_Txt_Color" text,
    "Slider_Title_Txt_Color" text,
    "Slider_Desc_Txt_Color" text,
    "Ads_Top_Img_First_BG_Color" text,
    "Ads_Top_Img_First_Before_BG_Color" text,
    "Ads_Top_Img_Second_BG_Color" text,
    "Ads_Top_Img_Second_Before_BG_Color" text,
    "Ads_Top_Img_Button_BG_Color" text,
    "Ads_Top_Img_Button_Txt_Color" text,
    "Ads_Top_Img_Button_Hover_BG_Color" text,
    "Ads_Top_Img_Button_Hover_Txt_Color" text,
    "Support_Icons_BG_Color" text,
    "Support_Icons_Txt_Color" text,
    "Support_Icons_Color" text,
    "Ads_Bootom_Imgs_BG_Color" text,
    "Ads_Bootom_Imgs_Middle_BG_Color" text,
    "Ads_Bootom_Imgs_Button_BG_Color" text,
    "Ads_Bootom_Imgs_Button_Txt_Color" text,
    "Ads_Bootom_Imgs_Button_Hover_BG_Color" text,
    "Ads_Bootom_Imgs_Button_Hover_Txt_Color" text,
    "Partners_BG_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.home_e_com_designs OWNER TO postgres;

--
-- Name: home_e_com_designs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.home_e_com_designs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.home_e_com_designs_id_seq OWNER TO postgres;

--
-- Name: home_e_com_designs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.home_e_com_designs_id_seq OWNED BY public.home_e_com_designs.id;


--
-- Name: home_product_e_com_designs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.home_product_e_com_designs (
    id bigint NOT NULL,
    "Special_Offer_Title_BG_Color" text,
    "Special_Offer_Title_Txt_Color" text,
    "Special_Offer_Product_BG_Color" text,
    "Special_Offer_Product_Border_Color" text,
    "Special_Offer_Product_Txt_Color" text,
    "Special_Offer_Product_Price_Color" text,
    "Special_Offer_Product_Rate_Color" text,
    "Best_Sellers_Title_BG_Color" text,
    "Best_Sellers_Title_Txt_Color" text,
    "Best_Sellers_Category_Txt_Color" text,
    "Best_Sellers_Category_Active_Txt_Color" text,
    "Best_Sellers_Product_BG_Color" text,
    "Best_Sellers_Product_Group_BG_Color" text,
    "Best_Sellers_Product_Group_Txt_Color" text,
    "Best_Sellers_Product_Group_Hover_BG_Color" text,
    "Best_Sellers_Product_Group_Hover_Txt_Color" text,
    "Best_Sellers_Product_Icon_BG_Color" text,
    "Best_Sellers_Product_Icon_Txt_Color" text,
    "Best_Sellers_Product_Icon_Hover_BG_Color" text,
    "Best_Sellers_Product_Icon_Hover_Txt_Color" text,
    "Best_Sellers_Product_Txt_Color" text,
    "Best_Sellers_Product_Price_Color" text,
    "Best_Sellers_Product_Rate_Color" text,
    "New_Arrivals_Title_BG_Color" text,
    "New_Arrivals_Title_Txt_Color" text,
    "New_Arrivals_Product_BG_Color" text,
    "New_Arrivals_Product_Group_BG_Color" text,
    "New_Arrivals_Product_Group_Txt_Color" text,
    "New_Arrivals_Product_Group_Hover_BG_Color" text,
    "New_Arrivals_Product_Group_Hover_Txt_Color" text,
    "New_Arrivals_Product_Icon_BG_Color" text,
    "New_Arrivals_Product_Icon_Txt_Color" text,
    "New_Arrivals_Product_Icon_Hover_BG_Color" text,
    "New_Arrivals_Product_Icon_Hover_Txt_Color" text,
    "New_Arrivals_Product_Txt_Color" text,
    "New_Arrivals_Product_Price_Color" text,
    "New_Arrivals_Product_Hover_Price_Color" text,
    "New_Arrivals_Product_Rate_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Special_Offer_Product_Txt_Hover_Color" text
);


ALTER TABLE public.home_product_e_com_designs OWNER TO postgres;

--
-- Name: home_product_e_com_designs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.home_product_e_com_designs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.home_product_e_com_designs_id_seq OWNER TO postgres;

--
-- Name: home_product_e_com_designs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.home_product_e_com_designs_id_seq OWNED BY public.home_product_e_com_designs.id;


--
-- Name: import_expenses_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.import_expenses_types (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Account" text
);


ALTER TABLE public.import_expenses_types OWNER TO postgres;

--
-- Name: import_expenses_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.import_expenses_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.import_expenses_types_id_seq OWNER TO postgres;

--
-- Name: import_expenses_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.import_expenses_types_id_seq OWNED BY public.import_expenses_types.id;


--
-- Name: import_new_prods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.import_new_prods (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Type" text NOT NULL,
    "Group" text NOT NULL,
    "Brand" text,
    "Unit" text NOT NULL,
    "Rate" text NOT NULL,
    "Barcode" text NOT NULL,
    "Price_1" text NOT NULL,
    "Price_2" text,
    "Price_3" text,
    "Def" text NOT NULL,
    "Num" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Code_Type" text,
    "World_Code" text,
    "Weight" text,
    "Search_Code" text
);


ALTER TABLE public.import_new_prods OWNER TO postgres;

--
-- Name: import_new_prods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.import_new_prods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.import_new_prods_id_seq OWNER TO postgres;

--
-- Name: import_new_prods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.import_new_prods_id_seq OWNED BY public.import_new_prods.id;


--
-- Name: import_new_prods_starts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.import_new_prods_starts (
    id bigint NOT NULL,
    "Name" text,
    "Type" text,
    "Group" text,
    "Brand" text,
    "Unit" text,
    "Rate" text,
    "Barcode" text,
    "Price_1" text,
    "Price_2" text,
    "Price_3" text,
    "Def" text,
    "Num" text,
    "Store" text,
    "Qty" text,
    "CostPrice" text,
    "Total" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Code_Type" text,
    "World_Code" text,
    "Weight" text,
    "Search_Code" text
);


ALTER TABLE public.import_new_prods_starts OWNER TO postgres;

--
-- Name: import_new_prods_starts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.import_new_prods_starts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.import_new_prods_starts_id_seq OWNER TO postgres;

--
-- Name: import_new_prods_starts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.import_new_prods_starts_id_seq OWNED BY public.import_new_prods_starts.id;


--
-- Name: in_out_logs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.in_out_logs (
    id bigint NOT NULL,
    user_id integer NOT NULL,
    in_time time(0) without time zone,
    out_time time(0) without time zone,
    time_calc double precision,
    date date,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.in_out_logs OWNER TO postgres;

--
-- Name: in_out_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.in_out_logs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.in_out_logs_id_seq OWNER TO postgres;

--
-- Name: in_out_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.in_out_logs_id_seq OWNED BY public.in_out_logs.id;


--
-- Name: incom_checks; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.incom_checks (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Check_Num" text NOT NULL,
    "Due_Date" text NOT NULL,
    "Amount" text NOT NULL,
    "Status" text DEFAULT '0'::text NOT NULL,
    "Reason" text,
    "Check_Type" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "Account" bigint NOT NULL,
    "Bank" bigint NOT NULL,
    "Arrest_Account" bigint NOT NULL,
    "Bene_Account" bigint,
    "User" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "File" text,
    arr bigint,
    "Image" text,
    "Signture_Name" text,
    "Bank_Branch" text,
    "Edit" text,
    "Edit_New_Code" text,
    "Delete" text,
    "BankSafe_Account" text,
    "Transfer" text
);


ALTER TABLE public.incom_checks OWNER TO postgres;

--
-- Name: incom_checks_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.incom_checks_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.incom_checks_arr_seq OWNER TO postgres;

--
-- Name: incom_checks_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.incom_checks_arr_seq OWNED BY public.incom_checks."Code";


--
-- Name: incom_checks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.incom_checks_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.incom_checks_id_seq OWNER TO postgres;

--
-- Name: incom_checks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.incom_checks_id_seq OWNED BY public.incom_checks.id;


--
-- Name: incom_manufacturing_models; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.incom_manufacturing_models (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text NOT NULL,
    "P_En_Name" text NOT NULL,
    "Qty" text NOT NULL,
    "Cost" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Depreciation" text NOT NULL,
    "Depreciation_Qty" text NOT NULL,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "Unit" bigint,
    "Model" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Precent" text
);


ALTER TABLE public.incom_manufacturing_models OWNER TO postgres;

--
-- Name: incom_manufacturing_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.incom_manufacturing_models_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.incom_manufacturing_models_id_seq OWNER TO postgres;

--
-- Name: incom_manufacturing_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.incom_manufacturing_models_id_seq OWNED BY public.incom_manufacturing_models.id;


--
-- Name: incom_manufacturing_secretariat_models; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.incom_manufacturing_secretariat_models (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Precent" text,
    "Qty" text,
    "Cost" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Total_Tax" text,
    "Depreciation" text,
    "Depreciation_Qty" text,
    "Store" text,
    "Product" text,
    "Unit" text,
    "Model" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.incom_manufacturing_secretariat_models OWNER TO postgres;

--
-- Name: incom_manufacturing_secretariat_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.incom_manufacturing_secretariat_models_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.incom_manufacturing_secretariat_models_id_seq OWNER TO postgres;

--
-- Name: incom_manufacturing_secretariat_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.incom_manufacturing_secretariat_models_id_seq OWNED BY public.incom_manufacturing_secretariat_models.id;


--
-- Name: install_companies_sales_bills_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.install_companies_sales_bills_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "ShiftCode" text,
    "Executor" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Client" text,
    "InstallCompany" text,
    "ContractNumber" text,
    "PayFees" text,
    "ServiceFee" text,
    "CompanyPrecent" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Av_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Total_BF_Tax" text,
    "Tax" text,
    "Total" text,
    "Group" text,
    "Brand" text,
    "Exp_Date" text,
    "Product_Store" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.install_companies_sales_bills_columns OWNER TO postgres;

--
-- Name: install_companies_sales_bills_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.install_companies_sales_bills_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.install_companies_sales_bills_columns_id_seq OWNER TO postgres;

--
-- Name: install_companies_sales_bills_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.install_companies_sales_bills_columns_id_seq OWNED BY public.install_companies_sales_bills_columns.id;


--
-- Name: install_companies_sales_bills_columns_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.install_companies_sales_bills_columns_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "ShiftCode" text,
    "Executor" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Client" text,
    "InstallCompany" text,
    "ContractNumber" text,
    "PayFees" text,
    "ServiceFee" text,
    "CompanyPrecent" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Av_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Total_BF_Tax" text,
    "Tax" text,
    "Total" text,
    "Group" text,
    "Brand" text,
    "Exp_Date" text,
    "Product_Store" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.install_companies_sales_bills_columns_sechdules OWNER TO postgres;

--
-- Name: install_companies_sales_bills_columns_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.install_companies_sales_bills_columns_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.install_companies_sales_bills_columns_sechdules_id_seq OWNER TO postgres;

--
-- Name: install_companies_sales_bills_columns_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.install_companies_sales_bills_columns_sechdules_id_seq OWNED BY public.install_companies_sales_bills_columns_sechdules.id;


--
-- Name: installment_companies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.installment_companies (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Logo" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Account" text,
    "NakdyaAccount" text
);


ALTER TABLE public.installment_companies OWNER TO postgres;

--
-- Name: installment_companies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.installment_companies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.installment_companies_id_seq OWNER TO postgres;

--
-- Name: installment_companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.installment_companies_id_seq OWNED BY public.installment_companies.id;


--
-- Name: installment_companies_ratios; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.installment_companies_ratios (
    id bigint NOT NULL,
    "From" text,
    "To" text,
    "Service_Fee" text,
    "Company_Precent" text,
    "Company" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.installment_companies_ratios OWNER TO postgres;

--
-- Name: installment_companies_ratios_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.installment_companies_ratios_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.installment_companies_ratios_id_seq OWNER TO postgres;

--
-- Name: installment_companies_ratios_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.installment_companies_ratios_id_seq OWNED BY public.installment_companies_ratios.id;


--
-- Name: installment_dates; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.installment_dates (
    id bigint NOT NULL,
    "Date" text,
    "Value" text,
    "Status" text,
    "Client" bigint NOT NULL,
    "Install" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.installment_dates OWNER TO postgres;

--
-- Name: installment_dates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.installment_dates_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.installment_dates_id_seq OWNER TO postgres;

--
-- Name: installment_dates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.installment_dates_id_seq OWNED BY public.installment_dates.id;


--
-- Name: installments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.installments (
    id bigint NOT NULL,
    presenter text,
    annual_interest text,
    monthly_installment text,
    "Years_Number" text,
    total text,
    "installment_Num" text,
    "Date_First_installment" text,
    "Residual" text,
    "Status" text,
    "Client" bigint NOT NULL,
    "Sales" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.installments OWNER TO postgres;

--
-- Name: installments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.installments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.installments_id_seq OWNER TO postgres;

--
-- Name: installments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.installments_id_seq OWNED BY public.installments.id;


--
-- Name: insurance_companies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.insurance_companies (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.insurance_companies OWNER TO postgres;

--
-- Name: insurance_companies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.insurance_companies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.insurance_companies_id_seq OWNER TO postgres;

--
-- Name: insurance_companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.insurance_companies_id_seq OWNED BY public.insurance_companies.id;


--
-- Name: insurance_papers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.insurance_papers (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Due_Date" text NOT NULL,
    "Amount" text NOT NULL,
    "Status" text DEFAULT '0'::text NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "Account" bigint NOT NULL,
    "Bank" bigint,
    arr bigint,
    "User" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "From" text,
    "To" text,
    "File" text,
    "FromEn" text,
    "ToEn" text,
    "Delete" text
);


ALTER TABLE public.insurance_papers OWNER TO postgres;

--
-- Name: insurance_papers_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.insurance_papers_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.insurance_papers_arr_seq OWNER TO postgres;

--
-- Name: insurance_papers_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.insurance_papers_arr_seq OWNED BY public.insurance_papers."Code";


--
-- Name: insurance_papers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.insurance_papers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.insurance_papers_id_seq OWNER TO postgres;

--
-- Name: insurance_papers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.insurance_papers_id_seq OWNED BY public.insurance_papers.id;


--
-- Name: interviews; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.interviews (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Time" text NOT NULL,
    "Status" text DEFAULT '0'::text NOT NULL,
    "Rate" text DEFAULT '0'::text NOT NULL,
    "Note" text,
    "Emp" bigint,
    "Client" bigint,
    "Type" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "StatusNote" text
);


ALTER TABLE public.interviews OWNER TO postgres;

--
-- Name: interviews_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.interviews_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.interviews_arr_seq OWNER TO postgres;

--
-- Name: interviews_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.interviews_arr_seq OWNED BY public.interviews.arr;


--
-- Name: interviews_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.interviews_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.interviews_id_seq OWNER TO postgres;

--
-- Name: interviews_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.interviews_id_seq OWNED BY public.interviews.id;


--
-- Name: interviews_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.interviews_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.interviews_types OWNER TO postgres;

--
-- Name: interviews_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.interviews_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.interviews_types_id_seq OWNER TO postgres;

--
-- Name: interviews_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.interviews_types_id_seq OWNED BY public.interviews_types.id;


--
-- Name: intros; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.intros (
    id bigint NOT NULL,
    "Arabic_About" text,
    "English_About" text,
    "Phone_1" text,
    "Phone_2" text,
    "Phone_3" text,
    "Phone_4" text,
    "Arabic_Terms" text,
    "English_Terms" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Arabic_Privacy" text,
    "English_Privacy" text
);


ALTER TABLE public.intros OWNER TO postgres;

--
-- Name: intros_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.intros_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.intros_id_seq OWNER TO postgres;

--
-- Name: intros_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.intros_id_seq OWNED BY public.intros.id;


--
-- Name: inventories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.inventories (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Total_Dificit" text NOT NULL,
    "Total_Excess" text NOT NULL,
    "Total_Dificit_Price" text NOT NULL,
    "Total_Excess_Price" text NOT NULL,
    "Account_Excess" bigint NOT NULL,
    "Account_Dificit" bigint NOT NULL,
    "Store" bigint,
    "Coin" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Note" text,
    "Settle" character varying DEFAULT 0,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0
);


ALTER TABLE public.inventories OWNER TO postgres;

--
-- Name: inventories_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.inventories_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.inventories_arr_seq OWNER TO postgres;

--
-- Name: inventories_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.inventories_arr_seq OWNED BY public.inventories.arr;


--
-- Name: inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.inventories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.inventories_id_seq OWNER TO postgres;

--
-- Name: inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.inventories_id_seq OWNED BY public.inventories.id;


--
-- Name: investors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.investors (
    id bigint NOT NULL,
    "Date" text,
    "Name" text,
    "Investment_Value" text,
    "Safe" text,
    "Draw" text,
    "Coin" text,
    "Profit_Precent" text,
    "Investment_Period" text,
    "Liquidation_Time" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "End_Date" text,
    "Account" text,
    "Due_Account" text,
    "Expenses_Account" text
);


ALTER TABLE public.investors OWNER TO postgres;

--
-- Name: investors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.investors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.investors_id_seq OWNER TO postgres;

--
-- Name: investors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.investors_id_seq OWNED BY public.investors.id;


--
-- Name: issues; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.issues (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Client" text,
    "Link" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.issues OWNER TO postgres;

--
-- Name: issues_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.issues_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.issues_id_seq OWNER TO postgres;

--
-- Name: issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.issues_id_seq OWNED BY public.issues.id;


--
-- Name: items_groups; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.items_groups (
    id bigint NOT NULL,
    "Code" text,
    "Name" text NOT NULL,
    "Type" text NOT NULL,
    "Parent" text NOT NULL,
    "Note" text,
    "Image" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Discount" text,
    "Store_Show" text,
    "Sales_Show" text,
    "NameEn" text,
    "Printer" text,
    "Arrange" bigint,
    "Sales_Precet" text DEFAULT 0
);


ALTER TABLE public.items_groups OWNER TO postgres;

--
-- Name: items_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.items_groups_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.items_groups_id_seq OWNER TO postgres;

--
-- Name: items_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.items_groups_id_seq OWNED BY public.items_groups.id;


--
-- Name: itineraries; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.itineraries (
    id bigint NOT NULL,
    "Emp" text,
    "Day" text,
    "Time" text,
    "Client" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.itineraries OWNER TO postgres;

--
-- Name: itineraries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.itineraries_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.itineraries_id_seq OWNER TO postgres;

--
-- Name: itineraries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.itineraries_id_seq OWNED BY public.itineraries.id;


--
-- Name: itinerary_visits; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.itinerary_visits (
    id bigint NOT NULL,
    "Emp" text,
    "Date" text,
    "Day" text,
    "Time" text,
    "Status" text,
    "Note" text,
    "Client" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.itinerary_visits OWNER TO postgres;

--
-- Name: itinerary_visits_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.itinerary_visits_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.itinerary_visits_id_seq OWNER TO postgres;

--
-- Name: itinerary_visits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.itinerary_visits_id_seq OWNED BY public.itinerary_visits.id;


--
-- Name: job_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.job_orders (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Payment_Method" text,
    "Status" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Safe" text,
    "ShipStatus" text,
    "Client" text,
    "Executor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Later_Due" text,
    "Later_Collection" text,
    "TaxBill" text,
    "TaxCode" text,
    "ProfitPrecent" text,
    "TaxOnTotal" text,
    "TaxOnTotalType" text,
    "ProfitTax" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Total_Cost" text,
    "DiscountTax" text,
    "RecivedDate" text,
    "Recipient" text,
    "RecivedVoucherCode" text,
    "TransferOrder" text,
    "ExecuteOrder" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0,
    "Current_Credit" text,
    "Execute" text
);


ALTER TABLE public.job_orders OWNER TO postgres;

--
-- Name: job_orders_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.job_orders_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.job_orders_arr_seq OWNER TO postgres;

--
-- Name: job_orders_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.job_orders_arr_seq OWNED BY public.job_orders."Code";


--
-- Name: job_orders_executors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.job_orders_executors (
    id bigint NOT NULL,
    "Product" text,
    "Executor" text,
    "Order" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.job_orders_executors OWNER TO postgres;

--
-- Name: job_orders_executors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.job_orders_executors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.job_orders_executors_id_seq OWNER TO postgres;

--
-- Name: job_orders_executors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.job_orders_executors_id_seq OWNED BY public.job_orders_executors.id;


--
-- Name: job_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.job_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.job_orders_id_seq OWNER TO postgres;

--
-- Name: job_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.job_orders_id_seq OWNED BY public.job_orders.id;


--
-- Name: jobs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.jobs (
    id bigint NOT NULL,
    queue character varying(191) NOT NULL,
    payload text NOT NULL,
    attempts smallint NOT NULL,
    reserved_at integer,
    available_at integer NOT NULL,
    created_at integer NOT NULL
);


ALTER TABLE public.jobs OWNER TO postgres;

--
-- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.jobs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.jobs_id_seq OWNER TO postgres;

--
-- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.jobs_id_seq OWNED BY public.jobs.id;


--
-- Name: jobs_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.jobs_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.jobs_types OWNER TO postgres;

--
-- Name: jobs_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.jobs_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.jobs_types_id_seq OWNER TO postgres;

--
-- Name: jobs_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.jobs_types_id_seq OWNED BY public.jobs_types.id;


--
-- Name: jouns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.jouns (
    id bigint NOT NULL,
    "Draw" text,
    "Coin" text,
    "Cost_Center" text,
    "Note" text,
    "Debitor" text,
    "Creditor" text,
    "Account" text,
    "Statement" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.jouns OWNER TO postgres;

--
-- Name: jouns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.jouns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.jouns_id_seq OWNER TO postgres;

--
-- Name: jouns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.jouns_id_seq OWNED BY public.jouns.id;


--
-- Name: journalizing_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.journalizing_details (
    id bigint NOT NULL,
    "Debitor" text NOT NULL,
    "Creditor" text NOT NULL,
    "Account" bigint NOT NULL,
    "Joun_ID" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Statement" text
);


ALTER TABLE public.journalizing_details OWNER TO postgres;

--
-- Name: journalizing_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.journalizing_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.journalizing_details_id_seq OWNER TO postgres;

--
-- Name: journalizing_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.journalizing_details_id_seq OWNED BY public.journalizing_details.id;


--
-- Name: journalizings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.journalizings (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Total_Debaitor" character varying,
    "Total_Creditor" character varying,
    "Note" character varying,
    "Type" character varying,
    "Code_Type" text,
    "Branch" bigint,
    "Status" text,
    "TypeEn" text,
    arr bigint,
    "Edit" text,
    "Edit_New_Code" text,
    "Delete" text,
    "Transfer" text
);


ALTER TABLE public.journalizings OWNER TO postgres;

--
-- Name: journalizings_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.journalizings_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.journalizings_arr_seq OWNER TO postgres;

--
-- Name: journalizings_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.journalizings_arr_seq OWNED BY public.journalizings.arr;


--
-- Name: journalizings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.journalizings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.journalizings_id_seq OWNER TO postgres;

--
-- Name: journalizings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.journalizings_id_seq OWNED BY public.journalizings.id;


--
-- Name: languages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.languages (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.languages OWNER TO postgres;

--
-- Name: languages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.languages_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.languages_id_seq OWNER TO postgres;

--
-- Name: languages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.languages_id_seq OWNED BY public.languages.id;


--
-- Name: loan_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.loan_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.loan_types OWNER TO postgres;

--
-- Name: loan_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.loan_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.loan_types_id_seq OWNER TO postgres;

--
-- Name: loan_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.loan_types_id_seq OWNED BY public.loan_types.id;


--
-- Name: loans; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.loans (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Amount" text NOT NULL,
    "Years_Number" text NOT NULL,
    "First_Date" text NOT NULL,
    "Install" text NOT NULL,
    "Install_Numbers" text NOT NULL,
    "Note" text,
    "Draw" text NOT NULL,
    "Safe" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "Emp" bigint,
    "Type" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" text DEFAULT 0,
    "Refernce_Number" text
);


ALTER TABLE public.loans OWNER TO postgres;

--
-- Name: loans_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.loans_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.loans_arr_seq OWNER TO postgres;

--
-- Name: loans_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.loans_arr_seq OWNED BY public.loans."Code";


--
-- Name: loans_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.loans_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.loans_id_seq OWNER TO postgres;

--
-- Name: loans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.loans_id_seq OWNED BY public.loans.id;


--
-- Name: login_sliders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.login_sliders (
    id bigint NOT NULL,
    "Image" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.login_sliders OWNER TO postgres;

--
-- Name: login_sliders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.login_sliders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.login_sliders_id_seq OWNER TO postgres;

--
-- Name: login_sliders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.login_sliders_id_seq OWNED BY public.login_sliders.id;


--
-- Name: main_e_com_designs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.main_e_com_designs (
    id bigint NOT NULL,
    "Font_Type" text,
    "Pagination_BG_Color" text,
    "Pagination_Txt_Color" text,
    "Pagination_Active_BG_Color" text,
    "Pagination_Active_Txt_Color" text,
    "Body_BG_Type" text,
    "Body_BG_Image" text,
    "Body_BG_Color" text,
    "Sub_Page_BG_Color" text,
    "Breadcumb_BG_Color" text,
    "Breadcumb_Txt_Color" text,
    "Modal_BG_Color" text,
    "Modal_Txt_Color" text,
    "Modal_Button_BG_Color" text,
    "Modal_Button_Txt_Color" text,
    "Table_Header_BG_Color" text,
    "Table_Header_Txt_Color" text,
    "Table_Body_BG_Color" text,
    "Table_Body_Txt_Color" text,
    "Table_Button_BG_Color" text,
    "Table_Button_Txt_Color" text,
    "CopyRights_Txt_Color" text,
    "CopyRights_Klar_Txt_Color" text,
    "CopyRights_Klar_Hover_Txt_Color" text,
    "Preloader_BG_Color" text,
    "Preloader_Small_Circle_Color" text,
    "Preloader_Large_Circle_Color" text,
    "Footer_Title_Color" text,
    "Footer_Txt_Color" text,
    "Footer_Social_Color" text,
    "Footer_Social_Hover_BG_Color" text,
    "Footer_Social_Hover_Txt_Color" text,
    "Header_Top_BG_Color" text,
    "Header_Top_Txt_Color" text,
    "Header_Top_Txt_Hover_Color" text,
    "Header_Middle_BG_Color" text,
    "Header_Middle_Icon_Color" text,
    "Header_Middle_Icon_Hover_Color" text,
    "Header_SearchBar_BG_Color" text,
    "Header_SearchBar_Txt_Color" text,
    "Header_SearchBar_Icon_BG_Color" text,
    "Header_SearchBar_Icon_Txt_Color" text,
    "Header_SearchBar_Icon_Hover_BG_Color" text,
    "Header_SearchBar_Icon_Hover_Txt_Color" text,
    "Navbar_BG_Color" text,
    "Navbar_Txt_Color" text,
    "Navbar_Hover_BG_Color" text,
    "Navbar_Hover_Txt_Color" text,
    "Navbar_Category_BG_Color" text,
    "Navbar_Category_Txt_Color" text,
    "Navbar_Category_Box_BG_Color" text,
    "Navbar_Category_Box_Txt_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Footer_Social_BG_Color" text,
    "Footer_Txt_Hover_Color" text
);


ALTER TABLE public.main_e_com_designs OWNER TO postgres;

--
-- Name: main_e_com_designs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.main_e_com_designs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.main_e_com_designs_id_seq OWNER TO postgres;

--
-- Name: main_e_com_designs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.main_e_com_designs_id_seq OWNED BY public.main_e_com_designs.id;


--
-- Name: maintainc_bills; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.maintainc_bills (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Product_Numbers" text NOT NULL,
    "Total_Qty" text NOT NULL,
    "Total_Price" text NOT NULL,
    "Note" text,
    "Serial_Num" text,
    "Draw" text NOT NULL,
    "Company" bigint,
    "Device_Type" bigint,
    "Device_Case" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "Account" bigint,
    "User" bigint,
    arr bigint,
    "Recipt" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Store" bigint,
    "Total_Price_Errors" text,
    "Totaal" text,
    "Safe" bigint
);


ALTER TABLE public.maintainc_bills OWNER TO postgres;

--
-- Name: maintainc_bills_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.maintainc_bills_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.maintainc_bills_arr_seq OWNER TO postgres;

--
-- Name: maintainc_bills_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.maintainc_bills_arr_seq OWNED BY public.maintainc_bills.arr;


--
-- Name: maintainc_bills_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.maintainc_bills_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.maintainc_bills_id_seq OWNER TO postgres;

--
-- Name: maintainc_bills_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.maintainc_bills_id_seq OWNED BY public.maintainc_bills.id;


--
-- Name: maintaince_colors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.maintaince_colors (
    id bigint NOT NULL,
    "Refuse" text,
    "Reported_Client" text,
    "Refused_Client" text,
    "Edited" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.maintaince_colors OWNER TO postgres;

--
-- Name: maintaince_colors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.maintaince_colors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.maintaince_colors_id_seq OWNER TO postgres;

--
-- Name: maintaince_colors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.maintaince_colors_id_seq OWNED BY public.maintaince_colors.id;


--
-- Name: maintaince_default_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.maintaince_default_data (
    id bigint NOT NULL,
    "Company" text,
    "Device_Type" text,
    "Device_Case" text,
    "Coin" text,
    "Cost_Center" text,
    "Draw" text,
    "Client" text,
    "Sure" text,
    "Eng" text,
    "Recipient" text,
    "Store" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.maintaince_default_data OWNER TO postgres;

--
-- Name: maintaince_default_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.maintaince_default_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.maintaince_default_data_id_seq OWNER TO postgres;

--
-- Name: maintaince_default_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.maintaince_default_data_id_seq OWNED BY public.maintaince_default_data.id;


--
-- Name: manu_store_counts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manu_store_counts (
    id bigint NOT NULL,
    "Store" text NOT NULL,
    "Total" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manu_store_counts OWNER TO postgres;

--
-- Name: manu_store_counts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manu_store_counts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manu_store_counts_id_seq OWNER TO postgres;

--
-- Name: manu_store_counts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manu_store_counts_id_seq OWNED BY public.manu_store_counts.id;


--
-- Name: manufacture_companies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacture_companies (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manufacture_companies OWNER TO postgres;

--
-- Name: manufacture_companies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacture_companies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacture_companies_id_seq OWNER TO postgres;

--
-- Name: manufacture_companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacture_companies_id_seq OWNED BY public.manufacture_companies.id;


--
-- Name: manufacturing_default_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_default_data (
    id bigint NOT NULL,
    "Coin" text,
    "Draw" text,
    "Hall" text,
    "Manu_Type" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Executing_Qty" text,
    "Payment_Method" text,
    "Store" text,
    "Client" text
);


ALTER TABLE public.manufacturing_default_data OWNER TO postgres;

--
-- Name: manufacturing_default_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_default_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_default_data_id_seq OWNER TO postgres;

--
-- Name: manufacturing_default_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_default_data_id_seq OWNED BY public.manufacturing_default_data.id;


--
-- Name: manufacturing_executions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_executions (
    id bigint NOT NULL,
    "Code" text,
    "NewCode" text,
    "Date" text,
    "Manu_Order_Code" text,
    "Manu_Order_Date" text,
    "Recived_Date" text,
    "Manu_Request_Code" text,
    "Outcome_Name" text,
    "Outcome_Code" text,
    "Outcome_Qty" text,
    "Except_Qty" text,
    "Outcome_Unit" text,
    "Outcome_Store" text,
    "Patch_Number" text,
    "Manu_Order_ID" bigint,
    "Production_Manager" bigint,
    "Quality_Manager" bigint,
    "Model" bigint,
    "Note" text,
    "Status" text,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manufacturing_executions OWNER TO postgres;

--
-- Name: manufacturing_executions_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_executions_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_executions_arr_seq OWNER TO postgres;

--
-- Name: manufacturing_executions_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_executions_arr_seq OWNED BY public.manufacturing_executions.arr;


--
-- Name: manufacturing_executions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_executions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_executions_id_seq OWNER TO postgres;

--
-- Name: manufacturing_executions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_executions_id_seq OWNED BY public.manufacturing_executions.id;


--
-- Name: manufacturing_halls; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_halls (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manufacturing_halls OWNER TO postgres;

--
-- Name: manufacturing_halls_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_halls_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_halls_id_seq OWNER TO postgres;

--
-- Name: manufacturing_halls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_halls_id_seq OWNED BY public.manufacturing_halls.id;


--
-- Name: manufacturing_model_assets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_model_assets (
    id bigint NOT NULL,
    "Model" text,
    "Asset" text,
    "Time" text,
    "Cost" text,
    "Total_Cost" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manufacturing_model_assets OWNER TO postgres;

--
-- Name: manufacturing_model_assets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_model_assets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_model_assets_id_seq OWNER TO postgres;

--
-- Name: manufacturing_model_assets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_model_assets_id_seq OWNED BY public.manufacturing_model_assets.id;


--
-- Name: manufacturing_model_emps; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_model_emps (
    id bigint NOT NULL,
    "Model" text,
    "Emp" text,
    "Time" text,
    "Cost" text,
    "Total_Cost" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manufacturing_model_emps OWNER TO postgres;

--
-- Name: manufacturing_model_emps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_model_emps_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_model_emps_id_seq OWNER TO postgres;

--
-- Name: manufacturing_model_emps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_model_emps_id_seq OWNED BY public.manufacturing_model_emps.id;


--
-- Name: manufacturing_model_expenses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_model_expenses (
    id bigint NOT NULL,
    "Model" text,
    "Account" text,
    "Time" text,
    "Cost" text,
    "Total_Cost" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manufacturing_model_expenses OWNER TO postgres;

--
-- Name: manufacturing_model_expenses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_model_expenses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_model_expenses_id_seq OWNER TO postgres;

--
-- Name: manufacturing_model_expenses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_model_expenses_id_seq OWNED BY public.manufacturing_model_expenses.id;


--
-- Name: manufacturing_model_services; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_model_services (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Precent" text,
    "Qty" text,
    "Cost" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Total_Tax" text,
    "Depreciation" text,
    "Depreciation_Qty" text,
    "Store" text,
    "Product" text,
    "Unit" text,
    "Model" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manufacturing_model_services OWNER TO postgres;

--
-- Name: manufacturing_model_services_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_model_services_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_model_services_id_seq OWNER TO postgres;

--
-- Name: manufacturing_model_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_model_services_id_seq OWNED BY public.manufacturing_model_services.id;


--
-- Name: manufacturing_model_workers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_model_workers (
    id bigint NOT NULL,
    "Model" text,
    "Worker" text,
    "Time" text,
    "Cost" text,
    "Total_Cost" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.manufacturing_model_workers OWNER TO postgres;

--
-- Name: manufacturing_model_workers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_model_workers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_model_workers_id_seq OWNER TO postgres;

--
-- Name: manufacturing_model_workers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_model_workers_id_seq OWNED BY public.manufacturing_model_workers.id;


--
-- Name: manufacturing_models; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_models (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Name" text NOT NULL,
    "Time" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Product_Numbers" text NOT NULL,
    "Total_Discount" text NOT NULL,
    "Total_BF_Taxes" text NOT NULL,
    "Total_Taxes" text NOT NULL,
    "Total_Price" text NOT NULL,
    "Hall" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Type" text DEFAULT 1,
    "NameEn" text,
    "Incom_Store" text,
    "Outcom_Store" text,
    "Workmanship_Price" text,
    "Total_Cost_Workers" text,
    "Total_Cost_Emps" text,
    "Total_Cost_Assets" text,
    "Total_Cost_Services" text,
    "Total_Cost_Expenses" text,
    "Total_All_Cost" text
);


ALTER TABLE public.manufacturing_models OWNER TO postgres;

--
-- Name: manufacturing_models_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_models_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_models_arr_seq OWNER TO postgres;

--
-- Name: manufacturing_models_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_models_arr_seq OWNED BY public.manufacturing_models."Code";


--
-- Name: manufacturing_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_models_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_models_id_seq OWNER TO postgres;

--
-- Name: manufacturing_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_models_id_seq OWNED BY public.manufacturing_models.id;


--
-- Name: manufacturing_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_orders (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Model" text,
    "Name_Outcome" text,
    "Except_Qty" text,
    "Total_Required_Qty" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Status" text,
    "For_Client" text,
    "Client" bigint,
    "Client_Phone" text,
    "Client_Address" text,
    "Delegate" bigint,
    arr bigint,
    "Delegate_Phone" text,
    "Recived_Date" text,
    "Manufacture_Request_Code" bigint,
    "NewCode" text,
    "Recipient" text
);


ALTER TABLE public.manufacturing_orders OWNER TO postgres;

--
-- Name: manufacturing_orders_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_orders_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_orders_arr_seq OWNER TO postgres;

--
-- Name: manufacturing_orders_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_orders_arr_seq OWNED BY public.manufacturing_orders."Code";


--
-- Name: manufacturing_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_orders_id_seq OWNER TO postgres;

--
-- Name: manufacturing_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_orders_id_seq OWNED BY public.manufacturing_orders.id;


--
-- Name: manufacturing_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_requests (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Recived_Date" text,
    "Client_Phone" text,
    "Client_Address" text,
    "Client" bigint NOT NULL,
    "Delegate" bigint,
    "Delegate_Phone" text,
    "Payment_Method" text,
    "Later_Due" text,
    "Note" text,
    "Status" text,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Store" bigint
);


ALTER TABLE public.manufacturing_requests OWNER TO postgres;

--
-- Name: manufacturing_requests_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_requests_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_requests_arr_seq OWNER TO postgres;

--
-- Name: manufacturing_requests_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_requests_arr_seq OWNED BY public.manufacturing_requests."Code";


--
-- Name: manufacturing_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_requests_id_seq OWNER TO postgres;

--
-- Name: manufacturing_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_requests_id_seq OWNED BY public.manufacturing_requests.id;


--
-- Name: manufacturing_secretariat_models; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.manufacturing_secretariat_models (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Name" text,
    "Time" text,
    "Draw" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Hall" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Type" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text,
    arr bigint,
    "Incom_Store" text DEFAULT 0,
    "Outcom_Store" text DEFAULT 0
);


ALTER TABLE public.manufacturing_secretariat_models OWNER TO postgres;

--
-- Name: manufacturing_secretariat_models_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_secretariat_models_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_secretariat_models_arr_seq OWNER TO postgres;

--
-- Name: manufacturing_secretariat_models_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_secretariat_models_arr_seq OWNED BY public.manufacturing_secretariat_models.arr;


--
-- Name: manufacturing_secretariat_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.manufacturing_secretariat_models_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.manufacturing_secretariat_models_id_seq OWNER TO postgres;

--
-- Name: manufacturing_secretariat_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.manufacturing_secretariat_models_id_seq OWNED BY public.manufacturing_secretariat_models.id;


--
-- Name: measuerments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.measuerments (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Note" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Code" text,
    "NameEn" text
);


ALTER TABLE public.measuerments OWNER TO postgres;

--
-- Name: measuerments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.measuerments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.measuerments_id_seq OWNER TO postgres;

--
-- Name: measuerments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.measuerments_id_seq OWNED BY public.measuerments.id;


--
-- Name: migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.migrations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    MAXVALUE 2147483647
    CACHE 1;


ALTER TABLE public.migrations_id_seq OWNER TO postgres;

--
-- Name: migrations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.migrations (
    id integer DEFAULT nextval('public.migrations_id_seq'::regclass) NOT NULL,
    migration character varying(191),
    batch integer
);


ALTER TABLE public.migrations OWNER TO postgres;

--
-- Name: missions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.missions (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Start_Date" text NOT NULL,
    "End_Date" text NOT NULL,
    "Duration" text NOT NULL,
    "Value" text NOT NULL,
    "Status" text NOT NULL,
    "File" text,
    "Desc" text,
    "Task_Owner" bigint,
    "Observer" bigint,
    "Project" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.missions OWNER TO postgres;

--
-- Name: missions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.missions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.missions_id_seq OWNER TO postgres;

--
-- Name: missions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.missions_id_seq OWNED BY public.missions.id;


--
-- Name: model_has_permissions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.model_has_permissions (
    permission_id bigint NOT NULL,
    model_type character varying(191) NOT NULL,
    model_id bigint NOT NULL
);


ALTER TABLE public.model_has_permissions OWNER TO postgres;

--
-- Name: model_has_roles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.model_has_roles (
    role_id bigint NOT NULL,
    model_type character varying(191) NOT NULL,
    model_id bigint NOT NULL
);


ALTER TABLE public.model_has_roles OWNER TO postgres;

--
-- Name: module_settings_nums; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.module_settings_nums (
    id bigint NOT NULL,
    "Branch_Select" text,
    "Branch_Num" text,
    "Store_Select" text,
    "Store_Num" text,
    "Users_Select" text,
    "Users_Num" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "System" text,
    "Expire_Date" text,
    "Type" text,
    "Price" text,
    "Edit_System" text,
    "Delete_System" text,
    "Fingerprint" text,
    "Fingerprint_IP" text,
    "Fingerprint_Name" text,
    "Fingerprint_Attendence" text
);


ALTER TABLE public.module_settings_nums OWNER TO postgres;

--
-- Name: module_settings_nums_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.module_settings_nums_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.module_settings_nums_id_seq OWNER TO postgres;

--
-- Name: module_settings_nums_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.module_settings_nums_id_seq OWNED BY public.module_settings_nums.id;


--
-- Name: modules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.modules (
    id bigint NOT NULL,
    "Capital" text,
    "Accounts" text,
    "Stores" text,
    "CRM" text,
    "HR" text,
    "Manufacturing" text,
    "Maintenance" text,
    "Secretariat" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Petrol" text,
    "ECommerce" text,
    "Shipping" text DEFAULT 0,
    "Bill_Electronic" text,
    "Hotels" text,
    "Resturant" text,
    "Traning_Center" text,
    "Translate" text,
    "Real_States" text DEFAULT 0,
    "Sewing" text DEFAULT 0,
    "Contracting" text
);


ALTER TABLE public.modules OWNER TO postgres;

--
-- Name: modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.modules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.modules_id_seq OWNER TO postgres;

--
-- Name: modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.modules_id_seq OWNED BY public.modules.id;


--
-- Name: more_products_halls; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.more_products_halls (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "CostPrice" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "Store" text,
    "Product" text,
    "Exp_Date" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "SalesOrder" text,
    "Pro_Note" text,
    "KitchenEnd" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.more_products_halls OWNER TO postgres;

--
-- Name: more_products_halls_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.more_products_halls_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.more_products_halls_id_seq OWNER TO postgres;

--
-- Name: more_products_halls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.more_products_halls_id_seq OWNED BY public.more_products_halls.id;


--
-- Name: most_sales_products_column_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.most_sales_products_column_sechdules (
    id bigint NOT NULL,
    "Product_Code" text,
    "Product_Name" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total" text,
    "Store" text,
    "Date" text,
    "Unit" text,
    "Safe" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.most_sales_products_column_sechdules OWNER TO postgres;

--
-- Name: most_sales_products_column_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.most_sales_products_column_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.most_sales_products_column_sechdules_id_seq OWNER TO postgres;

--
-- Name: most_sales_products_column_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.most_sales_products_column_sechdules_id_seq OWNED BY public.most_sales_products_column_sechdules.id;


--
-- Name: most_sales_products_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.most_sales_products_columns (
    id bigint NOT NULL,
    "Product_Code" text,
    "Product_Name" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total" text,
    "Store" text,
    "Date" text,
    "Unit" text,
    "Safe" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.most_sales_products_columns OWNER TO postgres;

--
-- Name: most_sales_products_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.most_sales_products_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.most_sales_products_columns_id_seq OWNER TO postgres;

--
-- Name: most_sales_products_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.most_sales_products_columns_id_seq OWNED BY public.most_sales_products_columns.id;


--
-- Name: msg_rqsts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.msg_rqsts (
    id bigint NOT NULL,
    "Name" text,
    "Email" text,
    "Phone" text,
    "Subject" text,
    "Msg" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.msg_rqsts OWNER TO postgres;

--
-- Name: msg_rqsts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.msg_rqsts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.msg_rqsts_id_seq OWNER TO postgres;

--
-- Name: msg_rqsts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.msg_rqsts_id_seq OWNED BY public.msg_rqsts.id;


--
-- Name: my_follow_lists; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.my_follow_lists (
    id bigint NOT NULL,
    "Date" text,
    "Emp" text,
    "Day" text,
    "Status" text,
    "Client" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.my_follow_lists OWNER TO postgres;

--
-- Name: my_follow_lists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.my_follow_lists_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.my_follow_lists_id_seq OWNER TO postgres;

--
-- Name: my_follow_lists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.my_follow_lists_id_seq OWNED BY public.my_follow_lists.id;


--
-- Name: new_shipping_categories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.new_shipping_categories (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Code" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.new_shipping_categories OWNER TO postgres;

--
-- Name: new_shipping_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.new_shipping_categories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.new_shipping_categories_id_seq OWNER TO postgres;

--
-- Name: new_shipping_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.new_shipping_categories_id_seq OWNED BY public.new_shipping_categories.id;


--
-- Name: new_shipping_rqst_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.new_shipping_rqst_types (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.new_shipping_rqst_types OWNER TO postgres;

--
-- Name: new_shipping_rqst_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.new_shipping_rqst_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.new_shipping_rqst_types_id_seq OWNER TO postgres;

--
-- Name: new_shipping_rqst_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.new_shipping_rqst_types_id_seq OWNED BY public.new_shipping_rqst_types.id;


--
-- Name: new_shipping_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.new_shipping_types (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Code" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.new_shipping_types OWNER TO postgres;

--
-- Name: new_shipping_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.new_shipping_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.new_shipping_types_id_seq OWNER TO postgres;

--
-- Name: new_shipping_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.new_shipping_types_id_seq OWNED BY public.new_shipping_types.id;


--
-- Name: notifications; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.notifications (
    id bigint NOT NULL,
    "Date" text,
    "Status" text,
    "Noti_Ar_Name" text,
    "Noti_En_Name" text,
    "Type" text,
    "Type_Code" text,
    "Emp" text,
    "Client" text,
    "Product" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Store" text,
    "Safe" text,
    "TypeEn" text
);


ALTER TABLE public.notifications OWNER TO postgres;

--
-- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.notifications_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.notifications_id_seq OWNER TO postgres;

--
-- Name: notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.notifications_id_seq OWNED BY public.notifications.id;


--
-- Name: opening_entries; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.opening_entries (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Total_Debaitor" text NOT NULL,
    "Total_Creditor" text NOT NULL,
    "Note" text,
    "Capital" text NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "SecAccount" bigint,
    "Status" text,
    "Edit" text,
    "Edit_New_Code" text,
    "Delete" text
);


ALTER TABLE public.opening_entries OWNER TO postgres;

--
-- Name: opening_entries_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.opening_entries_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.opening_entries_arr_seq OWNER TO postgres;

--
-- Name: opening_entries_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.opening_entries_arr_seq OWNED BY public.opening_entries.arr;


--
-- Name: opening_entries_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.opening_entries_details (
    id bigint NOT NULL,
    "Debitor" text NOT NULL,
    "Creditor" text NOT NULL,
    "Statement" text,
    "Account" bigint NOT NULL,
    "OP_ID" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.opening_entries_details OWNER TO postgres;

--
-- Name: opening_entries_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.opening_entries_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.opening_entries_details_id_seq OWNER TO postgres;

--
-- Name: opening_entries_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.opening_entries_details_id_seq OWNED BY public.opening_entries_details.id;


--
-- Name: opening_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.opening_entries_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.opening_entries_id_seq OWNER TO postgres;

--
-- Name: opening_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.opening_entries_id_seq OWNED BY public.opening_entries.id;


--
-- Name: order_pays; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.order_pays (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Responsible" text,
    "Account" text,
    "Amount" text,
    "Note" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.order_pays OWNER TO postgres;

--
-- Name: order_pays_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.order_pays_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.order_pays_id_seq OWNER TO postgres;

--
-- Name: order_pays_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.order_pays_id_seq OWNED BY public.order_pays.id;


--
-- Name: outcom_manufacturing_models; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.outcom_manufacturing_models (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text NOT NULL,
    "P_En_Name" text NOT NULL,
    "Qty" text NOT NULL,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "Unit" bigint,
    "Model" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Cost" text,
    "SmallQty" text,
    "SmallCode" text
);


ALTER TABLE public.outcom_manufacturing_models OWNER TO postgres;

--
-- Name: outcom_manufacturing_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.outcom_manufacturing_models_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.outcom_manufacturing_models_id_seq OWNER TO postgres;

--
-- Name: outcom_manufacturing_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.outcom_manufacturing_models_id_seq OWNED BY public.outcom_manufacturing_models.id;


--
-- Name: outcome_manufacturing_secretariat_models; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.outcome_manufacturing_secretariat_models (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Qty" text,
    "SmallQty" text,
    "SmallCode" text,
    "Store" text,
    "Product" text,
    "Unit" text,
    "Model" text,
    "Cost" text,
    "Workmanship_Price" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.outcome_manufacturing_secretariat_models OWNER TO postgres;

--
-- Name: outcome_manufacturing_secretariat_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.outcome_manufacturing_secretariat_models_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.outcome_manufacturing_secretariat_models_id_seq OWNER TO postgres;

--
-- Name: outcome_manufacturing_secretariat_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.outcome_manufacturing_secretariat_models_id_seq OWNED BY public.outcome_manufacturing_secretariat_models.id;


--
-- Name: over_times; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.over_times (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    "Hour" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.over_times OWNER TO postgres;

--
-- Name: over_times_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.over_times_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.over_times_id_seq OWNER TO postgres;

--
-- Name: over_times_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.over_times_id_seq OWNED BY public.over_times.id;


--
-- Name: owners_reals; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.owners_reals (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Phone" text,
    "Email" text,
    "Accommodation" text,
    "Tax_Card" text,
    "CommercialRegister" text,
    "Licensing" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Account" text
);


ALTER TABLE public.owners_reals OWNER TO postgres;

--
-- Name: owners_reals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.owners_reals_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.owners_reals_id_seq OWNER TO postgres;

--
-- Name: owners_reals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.owners_reals_id_seq OWNED BY public.owners_reals.id;


--
-- Name: pack_prems; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.pack_prems (
    id bigint NOT NULL,
    package text,
    premission text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.pack_prems OWNER TO postgres;

--
-- Name: pack_prems_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.pack_prems_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.pack_prems_id_seq OWNER TO postgres;

--
-- Name: pack_prems_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.pack_prems_id_seq OWNED BY public.pack_prems.id;


--
-- Name: packages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.packages (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.packages OWNER TO postgres;

--
-- Name: packages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.packages_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.packages_id_seq OWNER TO postgres;

--
-- Name: packages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.packages_id_seq OWNED BY public.packages.id;


--
-- Name: partners; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.partners (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Shares_Number" text NOT NULL,
    "Nominal_Value_of_Shares" text,
    "Actual_Share_Value" text,
    "Profits_Precentage" text,
    "Profits" text,
    "Withdraw_Profits" text,
    "Remaining_Profits" text,
    "Account" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Gary_Account" text,
    "Recent_Profit_Account" text,
    "Stage_Profit_Account" text,
    "First_Partner_Share" text,
    "Now_Partner_Share" text,
    "Capital_Increase_Rate" text,
    "Capital_Increase_Value" text,
    "Partnership_Ratio" text
);


ALTER TABLE public.partners OWNER TO postgres;

--
-- Name: partners_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.partners_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.partners_id_seq OWNER TO postgres;

--
-- Name: partners_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.partners_id_seq OWNED BY public.partners.id;


--
-- Name: password_resets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.password_resets (
    email character varying(191) NOT NULL,
    token character varying(191) NOT NULL,
    created_at timestamp(0) without time zone
);


ALTER TABLE public.password_resets OWNER TO postgres;

--
-- Name: pay_profit_investors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.pay_profit_investors (
    id bigint NOT NULL,
    "Date" text,
    "Profit" text,
    "Investor" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.pay_profit_investors OWNER TO postgres;

--
-- Name: pay_profit_investors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.pay_profit_investors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.pay_profit_investors_id_seq OWNER TO postgres;

--
-- Name: pay_profit_investors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.pay_profit_investors_id_seq OWNED BY public.pay_profit_investors.id;


--
-- Name: pay_salaries; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.pay_salaries (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Salary" text NOT NULL,
    "Pre_Sales" text,
    "Pre_Execu" text,
    "Deduction" text NOT NULL,
    "Entitlement" text NOT NULL,
    "Borrow" text NOT NULL,
    "Overtime" text,
    "Attendence_Hours" text,
    "Attendence" text,
    "Loan" text,
    "Holidays" text,
    "Resduial_Salary" text,
    "Note" text,
    "Draw" text NOT NULL,
    "Safe" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "Emp" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Attendence_Discount" text,
    "Holiday_Discount" text,
    "Settlements" text,
    "Later_Sales_Bill" text,
    "Allowances" text,
    "Discounts" text,
    "ProducationPoints" text,
    "DiscountLate" text,
    "DiscountDeparture" text,
    "Shipping_Precent" text,
    "Delete" text DEFAULT 0,
    "Refernce_Number" text
);


ALTER TABLE public.pay_salaries OWNER TO postgres;

--
-- Name: pay_salaries_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.pay_salaries_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.pay_salaries_arr_seq OWNER TO postgres;

--
-- Name: pay_salaries_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.pay_salaries_arr_seq OWNED BY public.pay_salaries."Code";


--
-- Name: pay_salaries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.pay_salaries_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.pay_salaries_id_seq OWNER TO postgres;

--
-- Name: pay_salaries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.pay_salaries_id_seq OWNED BY public.pay_salaries.id;


--
-- Name: payment_voucher_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.payment_voucher_details (
    id bigint NOT NULL,
    "Debitor" text NOT NULL,
    "Statement" text,
    "Account" bigint NOT NULL,
    "PV_ID" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Date" text,
    "Time" text,
    "Cost_Center" text,
    "Coin" text,
    "User" text,
    "Branch" text,
    "Safe" text,
    "Bill_Num" text,
    "Order_Number" text,
    "Tax" text
);


ALTER TABLE public.payment_voucher_details OWNER TO postgres;

--
-- Name: payment_voucher_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.payment_voucher_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.payment_voucher_details_id_seq OWNER TO postgres;

--
-- Name: payment_voucher_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.payment_voucher_details_id_seq OWNED BY public.payment_voucher_details.id;


--
-- Name: payment_vouchers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.payment_vouchers (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Total_Debaitor" text NOT NULL,
    "Note" text,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "Safe" bigint NOT NULL,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Shift" text,
    "Store" text,
    "User" text,
    "Branch" text,
    "Status" text,
    "File" text,
    "Edit" text,
    "Edit_New_Code" text,
    "Delete" text,
    "Responsiple" text,
    "Project" text,
    "Documentary_ID" text,
    "Documentary_Type" text,
    "Unit" text
);


ALTER TABLE public.payment_vouchers OWNER TO postgres;

--
-- Name: payment_vouchers_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.payment_vouchers_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.payment_vouchers_arr_seq OWNER TO postgres;

--
-- Name: payment_vouchers_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.payment_vouchers_arr_seq OWNED BY public.payment_vouchers.arr;


--
-- Name: payment_vouchers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.payment_vouchers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.payment_vouchers_id_seq OWNER TO postgres;

--
-- Name: payment_vouchers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.payment_vouchers_id_seq OWNED BY public.payment_vouchers.id;


--
-- Name: paymentss_products_real_projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.paymentss_products_real_projects (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "CostPrice" text,
    "Discount" text,
    "TDiscount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "TotCostNew" text,
    "Total_Net" text,
    "Store" text,
    "Product" text,
    "Unit" text,
    "Payment" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Pro_Desc" text
);


ALTER TABLE public.paymentss_products_real_projects OWNER TO postgres;

--
-- Name: paymentss_products_real_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.paymentss_products_real_projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.paymentss_products_real_projects_id_seq OWNER TO postgres;

--
-- Name: paymentss_products_real_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.paymentss_products_real_projects_id_seq OWNED BY public.paymentss_products_real_projects.id;


--
-- Name: paymentss_real_projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.paymentss_real_projects (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Branch" text,
    "Draw" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Total_Cost" text,
    "Total_Net" text,
    "DiscountBill" text,
    "Pay" text,
    "Safe" text,
    "Client" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Edit" text,
    "Delete" text,
    "Edit_New_Code" text,
    "Project" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.paymentss_real_projects OWNER TO postgres;

--
-- Name: paymentss_real_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.paymentss_real_projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.paymentss_real_projects_id_seq OWNER TO postgres;

--
-- Name: paymentss_real_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.paymentss_real_projects_id_seq OWNED BY public.paymentss_real_projects.id;


--
-- Name: permission_to_exchange_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.permission_to_exchange_goods (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Product_Numbers" text NOT NULL,
    "Total_Qty" text NOT NULL,
    "Total_Discount" text NOT NULL,
    "Total_BF_Taxes" text NOT NULL,
    "Total_Taxes" text NOT NULL,
    "Total_Price" text NOT NULL,
    "Account" bigint NOT NULL,
    "Store" bigint NOT NULL,
    "To_Store" bigint,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Status" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0,
    "DiscountBill" text DEFAULT 0
);


ALTER TABLE public.permission_to_exchange_goods OWNER TO postgres;

--
-- Name: permission_to_exchange_goods_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.permission_to_exchange_goods_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.permission_to_exchange_goods_arr_seq OWNER TO postgres;

--
-- Name: permission_to_exchange_goods_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.permission_to_exchange_goods_arr_seq OWNED BY public.permission_to_exchange_goods.arr;


--
-- Name: permission_to_exchange_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.permission_to_exchange_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.permission_to_exchange_goods_id_seq OWNER TO postgres;

--
-- Name: permission_to_exchange_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.permission_to_exchange_goods_id_seq OWNED BY public.permission_to_exchange_goods.id;


--
-- Name: permission_to_recived_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.permission_to_recived_goods (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Product_Numbers" text NOT NULL,
    "Total_Qty" text NOT NULL,
    "Total_Discount" text NOT NULL,
    "Total_BF_Taxes" text NOT NULL,
    "Total_Taxes" text NOT NULL,
    "Total_Price" text NOT NULL,
    "Account" bigint NOT NULL,
    "Store" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "To_Store" bigint,
    "Status" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0,
    "DiscountBill" text DEFAULT 0
);


ALTER TABLE public.permission_to_recived_goods OWNER TO postgres;

--
-- Name: permission_to_recived_goods_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.permission_to_recived_goods_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.permission_to_recived_goods_arr_seq OWNER TO postgres;

--
-- Name: permission_to_recived_goods_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.permission_to_recived_goods_arr_seq OWNED BY public.permission_to_recived_goods.arr;


--
-- Name: permission_to_recived_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.permission_to_recived_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.permission_to_recived_goods_id_seq OWNER TO postgres;

--
-- Name: permission_to_recived_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.permission_to_recived_goods_id_seq OWNED BY public.permission_to_recived_goods.id;


--
-- Name: permissions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.permissions (
    id bigint NOT NULL,
    name character varying(191) NOT NULL,
    guard_name character varying(191) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Parent" text,
    "Main" text,
    "nameEn" text,
    "Package" text
);


ALTER TABLE public.permissions OWNER TO postgres;

--
-- Name: permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.permissions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.permissions_id_seq OWNER TO postgres;

--
-- Name: permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.permissions_id_seq OWNED BY public.permissions.id;


--
-- Name: places; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.places (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Ship_Price" text,
    "City" bigint,
    "Delivery" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "SearchCode" text
);


ALTER TABLE public.places OWNER TO postgres;

--
-- Name: places_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.places_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.places_id_seq OWNER TO postgres;

--
-- Name: places_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.places_id_seq OWNED BY public.places.id;


--
-- Name: places_reals; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.places_reals (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.places_reals OWNER TO postgres;

--
-- Name: places_reals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.places_reals_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.places_reals_id_seq OWNER TO postgres;

--
-- Name: places_reals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.places_reals_id_seq OWNED BY public.places_reals.id;


--
-- Name: platforms; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.platforms (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.platforms OWNER TO postgres;

--
-- Name: platforms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.platforms_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.platforms_id_seq OWNER TO postgres;

--
-- Name: platforms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.platforms_id_seq OWNED BY public.platforms.id;


--
-- Name: polices; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.polices (
    id bigint NOT NULL,
    "Arabic_Desc" text NOT NULL,
    "English_Desc" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.polices OWNER TO postgres;

--
-- Name: polices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.polices_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.polices_id_seq OWNER TO postgres;

--
-- Name: polices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.polices_id_seq OWNED BY public.polices.id;


--
-- Name: pro_details_imgs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.pro_details_imgs (
    id bigint NOT NULL,
    "Image" text NOT NULL,
    "Arabic_Title" text NOT NULL,
    "Arabic_Desc" text NOT NULL,
    "English_Title" text NOT NULL,
    "English_Desc" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.pro_details_imgs OWNER TO postgres;

--
-- Name: pro_details_imgs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.pro_details_imgs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.pro_details_imgs_id_seq OWNER TO postgres;

--
-- Name: pro_details_imgs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.pro_details_imgs_id_seq OWNED BY public.pro_details_imgs.id;


--
-- Name: pro_notes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.pro_notes (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.pro_notes OWNER TO postgres;

--
-- Name: pro_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.pro_notes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.pro_notes_id_seq OWNER TO postgres;

--
-- Name: pro_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.pro_notes_id_seq OWNED BY public.pro_notes.id;


--
-- Name: product_colors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_colors (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_colors OWNER TO postgres;

--
-- Name: product_colors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_colors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_colors_id_seq OWNER TO postgres;

--
-- Name: product_colors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_colors_id_seq OWNED BY public.product_colors.id;


--
-- Name: product_details_e_com_designs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_details_e_com_designs (
    id bigint NOT NULL,
    "Title_Color" text,
    "Txt_Color" text,
    "Price_Color" text,
    "Rate_Color" text,
    "Select_BG_Color" text,
    "Select_Txt_Color" text,
    "Qty_BG_Color" text,
    "Qty_Txt_Color" text,
    "Qty_Input_BG_Color" text,
    "Qty_Input_Txt_Color" text,
    "Comment_Input_BG_Color" text,
    "Comment_Button_BG_Color" text,
    "Comment_Button_Txt_Color" text,
    "Comment_Button_BG_Hover_Color" text,
    "Comment_Button_Txt_Hover_Color" text,
    "Related_Title_BG_Color" text,
    "Related_Title_Txt_Color" text,
    "Related_Product_BG_Color" text,
    "Related_Product_Group_BG_Color" text,
    "Related_Product_Group_Txt_Color" text,
    "Related_Product_Group_Hover_BG_Color" text,
    "Related_Product_Group_Hover_Txt_Color" text,
    "Related_Product_Icon_BG_Color" text,
    "Related_Product_Icon_Txt_Color" text,
    "Related_Product_Icon_Hover_BG_Color" text,
    "Related_Product_Icon_Hover_Txt_Color" text,
    "Related_Product_Txt_Color" text,
    "Related_Product_Price_Color" text,
    "Related_Product_Hover_Price_Color" text,
    "Related_Product_Rate_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_details_e_com_designs OWNER TO postgres;

--
-- Name: product_details_e_com_designs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_details_e_com_designs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_details_e_com_designs_id_seq OWNER TO postgres;

--
-- Name: product_details_e_com_designs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_details_e_com_designs_id_seq OWNED BY public.product_details_e_com_designs.id;


--
-- Name: product_executing_receiving_secretariats; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_executing_receiving_secretariats (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Qty" text,
    "Dep" text,
    "Price" text,
    "Workmanship_Price" text,
    "Total" text,
    "StoreIn" text,
    "StoreOut" text,
    "Product" text,
    "Unit" text,
    "Executing" text,
    type text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_executing_receiving_secretariats OWNER TO postgres;

--
-- Name: product_executing_receiving_secretariats_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_executing_receiving_secretariats_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_executing_receiving_secretariats_id_seq OWNER TO postgres;

--
-- Name: product_executing_receiving_secretariats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_executing_receiving_secretariats_id_seq OWNED BY public.product_executing_receiving_secretariats.id;


--
-- Name: product_inventories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_inventories (
    id bigint NOT NULL,
    "Av_Qty" text NOT NULL,
    "Inventory" text NOT NULL,
    "Deficit" text NOT NULL,
    "Excess" text NOT NULL,
    "Inv_ID" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "P_Code" text,
    "Price" text,
    "TotalExcessP" text,
    "TotalDificitP" text,
    "Exp_Date" text
);


ALTER TABLE public.product_inventories OWNER TO postgres;

--
-- Name: product_inventories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_inventories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_inventories_id_seq OWNER TO postgres;

--
-- Name: product_inventories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_inventories_id_seq OWNED BY public.product_inventories.id;


--
-- Name: product_job_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_job_orders (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "TDiscount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "Store" text,
    "Length" text,
    "Width" text,
    "Height" text,
    "Thickness" text,
    "Size" text,
    "Product" text,
    "Unit" text,
    "Order" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Executor" text
);


ALTER TABLE public.product_job_orders OWNER TO postgres;

--
-- Name: product_job_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_job_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_job_orders_id_seq OWNER TO postgres;

--
-- Name: product_job_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_job_orders_id_seq OWNED BY public.product_job_orders.id;


--
-- Name: product_maintainc_bills; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_maintainc_bills (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text NOT NULL,
    "AvQty" text NOT NULL,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Exp_Date" text,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Maintaince" bigint NOT NULL,
    "TDiscount" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    "Date" text
);


ALTER TABLE public.product_maintainc_bills OWNER TO postgres;

--
-- Name: product_maintainc_bills_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_maintainc_bills_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_maintainc_bills_id_seq OWNER TO postgres;

--
-- Name: product_maintainc_bills_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_maintainc_bills_id_seq OWNED BY public.product_maintainc_bills.id;


--
-- Name: product_manufacturing_executions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_manufacturing_executions (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text NOT NULL,
    "P_En_Name" text NOT NULL,
    "Qty" text NOT NULL,
    "Precent" text,
    "RequiredQty" text,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "Unit" bigint,
    "ManuExecution" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Patch_Number" text
);


ALTER TABLE public.product_manufacturing_executions OWNER TO postgres;

--
-- Name: product_manufacturing_executions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_manufacturing_executions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_manufacturing_executions_id_seq OWNER TO postgres;

--
-- Name: product_manufacturing_executions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_manufacturing_executions_id_seq OWNED BY public.product_manufacturing_executions.id;


--
-- Name: product_moves; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_moves (
    id bigint NOT NULL,
    "Date" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Current" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "Unit" bigint,
    "Group" bigint,
    "Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "CostIn" text,
    "CostOut" text,
    "CostCurrent" text,
    "QTY" text,
    "Brand" text,
    "Branch" text,
    "SalePrice" text,
    "ProductPrice" text,
    "Delegate" text,
    "Payment_Method" text,
    "Safe" bigint,
    "TypeEn" text,
    "Delete" text DEFAULT 0,
    "Edit" text DEFAULT 0,
    "Edit_New_Code" text
);


ALTER TABLE public.product_moves OWNER TO postgres;

--
-- Name: product_moves_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_moves_columns (
    id bigint NOT NULL,
    "Date" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Credit" text,
    "Group" text,
    "Brand" text,
    "Store" text,
    "User" text,
    "Safe" text,
    "Branch" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_moves_columns OWNER TO postgres;

--
-- Name: product_moves_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_moves_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_moves_columns_id_seq OWNER TO postgres;

--
-- Name: product_moves_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_moves_columns_id_seq OWNED BY public.product_moves_columns.id;


--
-- Name: product_moves_columns_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_moves_columns_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Credit" text,
    "Group" text,
    "Brand" text,
    "Store" text,
    "User" text,
    "Safe" text,
    "Branch" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_moves_columns_sechdules OWNER TO postgres;

--
-- Name: product_moves_columns_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_moves_columns_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_moves_columns_sechdules_id_seq OWNER TO postgres;

--
-- Name: product_moves_columns_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_moves_columns_sechdules_id_seq OWNED BY public.product_moves_columns_sechdules.id;


--
-- Name: product_moves_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_moves_filter_twos (
    id bigint NOT NULL,
    "Date" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Current" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "Unit" text,
    "Group" text,
    "Store" text,
    "Product" text,
    "V1" text,
    "V2" text,
    "User" text,
    "CostIn" text,
    "CostOut" text,
    "CostCurrent" text,
    "CostOneIn" text,
    "CostOneOut" text,
    "CostOneCurrent" text,
    "QTY" text,
    "Brand" text,
    "Safe" text,
    "Branch" text,
    "SalePrice" text,
    "ProductPrice" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_moves_filter_twos OWNER TO postgres;

--
-- Name: product_moves_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_moves_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_moves_filter_twos_id_seq OWNER TO postgres;

--
-- Name: product_moves_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_moves_filter_twos_id_seq OWNED BY public.product_moves_filter_twos.id;


--
-- Name: product_moves_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_moves_filters (
    id bigint NOT NULL,
    "Date" text,
    "Type" text,
    "Bill_Num" text,
    "Incom" text,
    "Outcom" text,
    "Current" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "Unit" text,
    "Group" text,
    "Store" text,
    "Product" text,
    "V1" text,
    "V2" text,
    "User" text,
    "CostIn" text,
    "CostOut" text,
    "CostCurrent" text,
    "CostOneIn" text,
    "CostOneOut" text,
    "CostOneCurrent" text,
    "QTY" text,
    "Brand" text,
    "Safe" text,
    "Branch" text,
    "SalePrice" text,
    "ProductPrice" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_moves_filters OWNER TO postgres;

--
-- Name: product_moves_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_moves_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_moves_filters_id_seq OWNER TO postgres;

--
-- Name: product_moves_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_moves_filters_id_seq OWNED BY public.product_moves_filters.id;


--
-- Name: product_moves_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_moves_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_moves_id_seq OWNER TO postgres;

--
-- Name: product_moves_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_moves_id_seq OWNED BY public.product_moves.id;


--
-- Name: product_quote_images; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_quote_images (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text NOT NULL,
    "P_En_Name" text NOT NULL,
    "V_Name" text,
    "VV_Name" text,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "QuoteImage" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "TDiscount" text,
    "Original_Qty" text,
    "AvQty" text,
    "Store" text,
    "Exp_Date" text,
    "Total_Wight" text,
    "UnitRate" text,
    weight text,
    "SalesProDesc" text,
    "TotCostNew" text,
    "SmallQty" text,
    "SmallCode" text,
    "CostPrice" text,
    "Date" text,
    "Patch_Number" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    "Pro_Note" text,
    "SubVID" text,
    "Total_Net" text
);


ALTER TABLE public.product_quote_images OWNER TO postgres;

--
-- Name: product_quote_images_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_quote_images_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_quote_images_id_seq OWNER TO postgres;

--
-- Name: product_quote_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_quote_images_id_seq OWNED BY public.product_quote_images.id;


--
-- Name: product_return_without_bills; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_return_without_bills (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "SmallCode" text,
    "Qty" text,
    "SmallQty" text,
    "Price" text,
    "Cost" text,
    "Discount" text,
    "TDiscount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "Total_Cost" text,
    "Store" text,
    "Exp_Date" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "Date" text,
    "Code" text,
    "Refernce_Number" text,
    "Safe" text,
    "Vendor" text,
    "Delegate" text,
    "Coin" text,
    "User" text,
    "Cost_Center" text,
    "Type" text,
    "Payment_Method" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Bill" bigint,
    "Product" bigint
);


ALTER TABLE public.product_return_without_bills OWNER TO postgres;

--
-- Name: product_return_without_bills_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_return_without_bills_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_return_without_bills_id_seq OWNER TO postgres;

--
-- Name: product_return_without_bills_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_return_without_bills_id_seq OWNED BY public.product_return_without_bills.id;


--
-- Name: product_sales; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_sales (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text NOT NULL,
    "AvQty" text NOT NULL,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Exp_Date" text,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Sales" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Date" text,
    "Code" text,
    "Delegate" bigint,
    "Client" bigint,
    "Executor" bigint,
    "Refernce_Number" text,
    "Type" text,
    "Cost_Center" bigint,
    "User" bigint,
    "Coin" bigint,
    "Safe" bigint,
    "Ship" bigint,
    "Patch_Number" text,
    "Later_Collection" text DEFAULT 1,
    "SmallQty" text,
    "SmallCode" text,
    "TDiscount" text,
    "CostPrice" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    "Status" text,
    "CustomerGroup" text,
    "Payment_Method" text,
    "CoinCode" text,
    "CoinRate" text,
    "CoinPrice" text,
    "AmountEGP" text,
    "SalesTotal" text,
    "DiscountAmount" text,
    "NetTotal" text,
    "TaxType" text,
    "TaxAmount" text,
    "TaxSubType" text,
    "TaxRate" text,
    "TotalBill" text,
    "TypeEn" text,
    "Pro_Note" text,
    "SubVID" text,
    "Total_Wight" text,
    "UnitRate" text,
    weight text,
    "SalesProDesc" text,
    "TotCostNew" text,
    "Total_Net" text,
    "Pro_Lenght" text,
    "Pro_Height" text,
    "Pro_Num" text,
    "Pro_Cost_Center" text
);


ALTER TABLE public.product_sales OWNER TO postgres;

--
-- Name: product_sales_gifts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_sales_gifts (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "CostPrice" text,
    "Total" text,
    "TotCost" text,
    "Store" text,
    "Exp_Date" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "Gift" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Product" text
);


ALTER TABLE public.product_sales_gifts OWNER TO postgres;

--
-- Name: product_sales_gifts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_sales_gifts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_sales_gifts_id_seq OWNER TO postgres;

--
-- Name: product_sales_gifts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_sales_gifts_id_seq OWNED BY public.product_sales_gifts.id;


--
-- Name: product_sales_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_sales_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_sales_id_seq OWNER TO postgres;

--
-- Name: product_sales_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_sales_id_seq OWNED BY public.product_sales.id;


--
-- Name: product_sales_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_sales_orders (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text NOT NULL,
    "AvQty" text NOT NULL,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Exp_Date" text,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "SalesOrder" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Patch_Number" text,
    "TDiscount" text,
    "CostPrice" text,
    "Pro_Note" text,
    "SubVID" text,
    "Total_Wight" text,
    "UnitRate" text,
    weight text,
    "SalesProDesc" text,
    "TotCostNew" text,
    "SmallQty" text,
    "SmallCode" text,
    "Date" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    "Total_Net" text,
    "Pro_Lenght" text,
    "Pro_Height" text,
    "Pro_Num" text,
    "Pro_Cost_Center" text
);


ALTER TABLE public.product_sales_orders OWNER TO postgres;

--
-- Name: product_sales_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_sales_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_sales_orders_id_seq OWNER TO postgres;

--
-- Name: product_sales_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_sales_orders_id_seq OWNED BY public.product_sales_orders.id;


--
-- Name: product_sales_subscribes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_sales_subscribes (
    id bigint NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Product_Code" text,
    "V_Name" text,
    "VV_Name" text,
    "Price" text,
    "Total" text,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Subscribe" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Sub_Date" text,
    "Sub_Type" text
);


ALTER TABLE public.product_sales_subscribes OWNER TO postgres;

--
-- Name: product_sales_subscribes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_sales_subscribes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_sales_subscribes_id_seq OWNER TO postgres;

--
-- Name: product_sales_subscribes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_sales_subscribes_id_seq OWNED BY public.product_sales_subscribes.id;


--
-- Name: product_settlements; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_settlements (
    id bigint NOT NULL,
    "Av_Qty" text NOT NULL,
    "Inventory" text NOT NULL,
    "Deficit" text NOT NULL,
    "Excess" text NOT NULL,
    "Set_ID" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "P_Code" text,
    "Price" text,
    "TotalDificitP" text,
    "TotalExcessP" text,
    "Store" bigint,
    "User" bigint,
    "Coin" bigint,
    "Date" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Exp_Date" text
);


ALTER TABLE public.product_settlements OWNER TO postgres;

--
-- Name: product_settlements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_settlements_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_settlements_id_seq OWNER TO postgres;

--
-- Name: product_settlements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_settlements_id_seq OWNED BY public.product_settlements.id;


--
-- Name: product_sizes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_sizes (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_sizes OWNER TO postgres;

--
-- Name: product_sizes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_sizes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_sizes_id_seq OWNER TO postgres;

--
-- Name: product_sizes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_sizes_id_seq OWNED BY public.product_sizes.id;


--
-- Name: product_thicknesses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_thicknesses (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_thicknesses OWNER TO postgres;

--
-- Name: product_thicknesses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_thicknesses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_thicknesses_id_seq OWNER TO postgres;

--
-- Name: product_thicknesses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_thicknesses_id_seq OWNED BY public.product_thicknesses.id;


--
-- Name: product_type_defaults; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_type_defaults (
    id bigint NOT NULL,
    "Type" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.product_type_defaults OWNER TO postgres;

--
-- Name: product_type_defaults_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_type_defaults_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_type_defaults_id_seq OWNER TO postgres;

--
-- Name: product_type_defaults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_type_defaults_id_seq OWNED BY public.product_type_defaults.id;


--
-- Name: product_units; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.product_units (
    id bigint NOT NULL,
    "Rate" text NOT NULL,
    "Barcode" text NOT NULL,
    "Price" text NOT NULL,
    "Price_Two" text,
    "Price_Three" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Type" text,
    "Unit" bigint,
    "Product" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Def" character varying DEFAULT 0,
    "Brand" text,
    "Group" text
);


ALTER TABLE public.product_units OWNER TO postgres;

--
-- Name: product_units_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.product_units_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.product_units_id_seq OWNER TO postgres;

--
-- Name: product_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.product_units_id_seq OWNED BY public.product_units.id;


--
-- Name: products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products (
    id bigint NOT NULL,
    "P_Type" text NOT NULL,
    "P_Ar_Name" text NOT NULL,
    "P_En_Name" text,
    "Brand" bigint,
    "Group" bigint NOT NULL,
    "Image" text,
    "Minimum" text,
    "Maximum" text,
    "Length" text,
    "Width" text,
    "Height" text,
    "Weight" text,
    "Saller_Point" text,
    "Customer_Point" text,
    "Tax" bigint NOT NULL,
    "Validity" text,
    "Days_Notify" text,
    "Ar_Desc" text,
    "En_Desc" text,
    "Ar_Spec" text,
    "En_Spec" text,
    "Store_Show" text,
    "Store_Type" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Sub_Cost" character varying,
    subscribe_type bigint,
    "Cas_No" text,
    "HSN" text,
    "Uni_Code" text,
    "Image2" text,
    "Offer" text,
    "OfferPrice" text,
    rate text,
    "Code_Type" text,
    "World_Code" text,
    "Origin_Number" text,
    "Origin_Country" text,
    "SearchCode1" text,
    "SearchCode2" text,
    "Space" text,
    "Storage" text,
    "Processor" text,
    "Camera" text,
    "Screen" text,
    "OS" text,
    "Battery" text,
    "Warranty" text,
    "Color" text,
    "Category" text,
    "Model" text,
    "Guess_Price" text,
    "Arrange" bigint,
    "Added" text,
    "Offer_Start_Date" text,
    "Offer_End_Date" text,
    "English_Brief_Desc" text,
    "Arabic_Brief_Desc" text,
    "Show_Other_Store" text,
    "Calories" text,
    "Thickness" text,
    "Maximum_Sales_Qty" text,
    "Delete" text DEFAULT 0,
    "Cost_Price" text DEFAULT 0,
    "Faveorite" text DEFAULT 0,
    "Bonus" text DEFAULT 0,
    "ProductThickness" text,
    "ProductSizes" text,
    "ProductColors" text,
    "Colors_Code" text,
    "Purchases_Code" text
);


ALTER TABLE public.products OWNER TO postgres;

--
-- Name: products_client_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_client_requests (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Qty" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "Desc" text,
    "Product" text,
    "Request" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.products_client_requests OWNER TO postgres;

--
-- Name: products_client_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_client_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_client_requests_id_seq OWNER TO postgres;

--
-- Name: products_client_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_client_requests_id_seq OWNED BY public.products_client_requests.id;


--
-- Name: products_consists; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_consists (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Qty" text,
    "Consist" text,
    "Price" text,
    "Total" text,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Consist_ID" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Exp_Date" text
);


ALTER TABLE public.products_consists OWNER TO postgres;

--
-- Name: products_consists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_consists_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_consists_id_seq OWNER TO postgres;

--
-- Name: products_consists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_consists_id_seq OWNED BY public.products_consists.id;


--
-- Name: products_executing_receivings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_executing_receivings (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text NOT NULL,
    "P_En_Name" text NOT NULL,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Total" text NOT NULL,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "Unit" bigint,
    "Executing" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    type text,
    "Dep" text
);


ALTER TABLE public.products_executing_receivings OWNER TO postgres;

--
-- Name: products_executing_receivings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_executing_receivings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_executing_receivings_id_seq OWNER TO postgres;

--
-- Name: products_executing_receivings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_executing_receivings_id_seq OWNED BY public.products_executing_receivings.id;


--
-- Name: products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_id_seq OWNER TO postgres;

--
-- Name: products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_id_seq OWNED BY public.products.id;


--
-- Name: products_manufacturing_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_manufacturing_orders (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Store_Qty" text,
    "Required_Qty" text,
    "Qty" text,
    "Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "ManuOrder" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Precent" text
);


ALTER TABLE public.products_manufacturing_orders OWNER TO postgres;

--
-- Name: products_manufacturing_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_manufacturing_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_manufacturing_orders_id_seq OWNER TO postgres;

--
-- Name: products_manufacturing_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_manufacturing_orders_id_seq OWNED BY public.products_manufacturing_orders.id;


--
-- Name: products_manufacturing_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_manufacturing_requests (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Exp_Date" text,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Request" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.products_manufacturing_requests OWNER TO postgres;

--
-- Name: products_manufacturing_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_manufacturing_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_manufacturing_requests_id_seq OWNER TO postgres;

--
-- Name: products_manufacturing_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_manufacturing_requests_id_seq OWNED BY public.products_manufacturing_requests.id;


--
-- Name: products_permission_to_exchange_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_permission_to_exchange_goods (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text NOT NULL,
    "AvQty" text NOT NULL,
    "Qty" text NOT NULL,
    "Date" text NOT NULL,
    "Price" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Exp_Date" text,
    "Store" bigint NOT NULL,
    "To_Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Exchange" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "CostPrice" text,
    "TDiscount" text,
    "Patch_Number" text,
    "Pro_Note" text,
    "SubVID" text,
    "Total_Wight" text,
    "UnitRate" text,
    weight text,
    "SalesProDesc" text,
    "TotCostNew" text,
    "SmallQty" text,
    "SmallCode" text,
    "Total_Net" text
);


ALTER TABLE public.products_permission_to_exchange_goods OWNER TO postgres;

--
-- Name: products_permission_to_exchange_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_permission_to_exchange_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_permission_to_exchange_goods_id_seq OWNER TO postgres;

--
-- Name: products_permission_to_exchange_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_permission_to_exchange_goods_id_seq OWNED BY public.products_permission_to_exchange_goods.id;


--
-- Name: products_permission_to_recived_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_permission_to_recived_goods (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text NOT NULL,
    "AvQty" text NOT NULL,
    "Qty" text NOT NULL,
    "Date" text NOT NULL,
    "Price" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Exp_Date" text,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Recived" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "To_Store" bigint,
    "TDiscount" text,
    "SmallCode" text,
    "SmallQty" text,
    "Total_Net" text
);


ALTER TABLE public.products_permission_to_recived_goods OWNER TO postgres;

--
-- Name: products_permission_to_recived_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_permission_to_recived_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_permission_to_recived_goods_id_seq OWNER TO postgres;

--
-- Name: products_permission_to_recived_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_permission_to_recived_goods_id_seq OWNED BY public.products_permission_to_recived_goods.id;


--
-- Name: products_purchase_petrols; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_purchase_petrols (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Qty" text,
    "Price" text,
    "Total" text,
    "Store" bigint,
    "Product" bigint,
    "Unit" bigint,
    "Petrol" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "SmallCode" text,
    "SmallQty" text
);


ALTER TABLE public.products_purchase_petrols OWNER TO postgres;

--
-- Name: products_purchase_petrols_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_purchase_petrols_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_purchase_petrols_id_seq OWNER TO postgres;

--
-- Name: products_purchase_petrols_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_purchase_petrols_id_seq OWNED BY public.products_purchase_petrols.id;


--
-- Name: products_purchases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_purchases (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Total_Tax" text,
    "Exp_Date" text,
    "Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Purchase" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Date" text,
    "Code" text,
    "Refernce_Number" text,
    "Safe" bigint,
    "Vendor" bigint,
    "Delegate" bigint,
    "Coin" bigint,
    "User" bigint,
    "Cost_Center" bigint,
    "Type" text,
    "Ship" bigint,
    "SmallQty" text,
    "SmallCode" text,
    "TDiscount" text,
    "Payment_Method" text,
    "TypeEn" text,
    "Total_Net" text,
    "ChassisNumber" text,
    "MotorNumber" text
);


ALTER TABLE public.products_purchases OWNER TO postgres;

--
-- Name: products_purchases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_purchases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_purchases_id_seq OWNER TO postgres;

--
-- Name: products_purchases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_purchases_id_seq OWNED BY public.products_purchases.id;


--
-- Name: products_purchases_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_purchases_orders (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "P_Order" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Total_Tax" text,
    "Exp_Date" text,
    "Date" text,
    "Vendor" bigint,
    "TDiscount" text,
    "SmallCode" text,
    "SmallQty" text,
    "Code" text,
    "Refernce_Number" text,
    "Safe" text,
    "Delegate" text,
    "Coin" text,
    "User" text,
    "Cost_Center" text,
    "Type" text,
    "Ship" text,
    "Payment_Method" text,
    "Total_Net" text,
    "ChassisNumber" text,
    "MotorNumber" text
);


ALTER TABLE public.products_purchases_orders OWNER TO postgres;

--
-- Name: products_purchases_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_purchases_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_purchases_orders_id_seq OWNER TO postgres;

--
-- Name: products_purchases_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_purchases_orders_id_seq OWNED BY public.products_purchases_orders.id;


--
-- Name: products_qties; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_qties (
    id bigint NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "V_Name" text,
    "VV_Name" text,
    "Qty" text,
    "Price" text,
    "Pro_Stores" bigint,
    "Store" bigint,
    "Unit" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Low_Unit" bigint,
    "Original" text,
    "Patch_Number" text,
    "PP_Code" text,
    "PPP_Code" text,
    "PPPP_Code" text,
    "Exp_Date" text,
    "Price_Sale" text,
    "SearchCode1" text,
    "SearchCode2" text,
    "Group" text,
    "Brand" text,
    "Branch" text,
    "TotalCost" text,
    "Hold_Qty" text DEFAULT 0,
    "ChassisNumber" text,
    "MotorNumber" text
);


ALTER TABLE public.products_qties OWNER TO postgres;

--
-- Name: products_qties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_qties_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_qties_id_seq OWNER TO postgres;

--
-- Name: products_qties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_qties_id_seq OWNED BY public.products_qties.id;


--
-- Name: products_quotes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_quotes (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "S_Quote" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Total_Tax" text,
    "Exp_Date" text,
    "Patch_Number" text,
    "TDiscount" text,
    "Total_Wight" text,
    "UnitRate" text,
    weight text,
    "SalesProDesc" text,
    "TotCostNew" text,
    "SmallQty" text,
    "SmallCode" text,
    "CostPrice" text,
    "Date" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    "Pro_Note" text,
    "SubVID" text,
    "Total_Net" text,
    "Pro_Lenght" text,
    "Pro_Height" text,
    "Pro_Num" text,
    "Pro_Cost_Center" text
);


ALTER TABLE public.products_quotes OWNER TO postgres;

--
-- Name: products_quotes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_quotes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_quotes_id_seq OWNER TO postgres;

--
-- Name: products_quotes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_quotes_id_seq OWNED BY public.products_quotes.id;


--
-- Name: products_return_maintaince_bills; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_return_maintaince_bills (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text NOT NULL,
    "AvQty" text NOT NULL,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Discount" text NOT NULL,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Exp_Date" text,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Return" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Recived_Qty" text,
    "Out" text,
    "Date" text,
    "User" bigint,
    "Eng" bigint,
    "Brand" bigint,
    "Group" bigint,
    "Branch" bigint,
    "Recipient" bigint
);


ALTER TABLE public.products_return_maintaince_bills OWNER TO postgres;

--
-- Name: products_return_maintaince_bills_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_return_maintaince_bills_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_return_maintaince_bills_id_seq OWNER TO postgres;

--
-- Name: products_return_maintaince_bills_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_return_maintaince_bills_id_seq OWNED BY public.products_return_maintaince_bills.id;


--
-- Name: products_secretariat_export_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_secretariat_export_goods (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Qty" text,
    "Date" text,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Export" bigint,
    "Store" bigint NOT NULL,
    "Unit" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Note" text,
    "RecivedQty" text,
    "Impotence" text,
    "Price" text,
    "Total" text
);


ALTER TABLE public.products_secretariat_export_goods OWNER TO postgres;

--
-- Name: products_secretariat_export_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_secretariat_export_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_secretariat_export_goods_id_seq OWNER TO postgres;

--
-- Name: products_secretariat_export_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_secretariat_export_goods_id_seq OWNED BY public.products_secretariat_export_goods.id;


--
-- Name: products_secretariat_import_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_secretariat_import_goods (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Qty" text,
    "Date" text,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Import" bigint,
    "Unit" bigint,
    "Store" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.products_secretariat_import_goods OWNER TO postgres;

--
-- Name: products_secretariat_import_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_secretariat_import_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_secretariat_import_goods_id_seq OWNER TO postgres;

--
-- Name: products_secretariat_import_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_secretariat_import_goods_id_seq OWNED BY public.products_secretariat_import_goods.id;


--
-- Name: products_shortcomings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_shortcomings (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Av_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text NOT NULL,
    "Total_Bf_Tax" text NOT NULL,
    "Total" text NOT NULL,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Shortmings" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Total_Tax" text,
    "Exp_Date" text,
    "TDiscount" text,
    "Original_Qty" text,
    "SmallCode" text,
    "SmallQty" text,
    "Date" text,
    "Code" text,
    "Refernce_Number" text,
    "Safe" text,
    "Vendor" text,
    "Delegate" text,
    "Coin" text,
    "User" text,
    "Cost_Center" text,
    "Type" text,
    "Ship" text,
    "Payment_Method" text,
    "Total_Net" text
);


ALTER TABLE public.products_shortcomings OWNER TO postgres;

--
-- Name: products_shortcomings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_shortcomings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_shortcomings_id_seq OWNER TO postgres;

--
-- Name: products_shortcomings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_shortcomings_id_seq OWNED BY public.products_shortcomings.id;


--
-- Name: products_start_periods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_start_periods (
    id bigint NOT NULL,
    "P_Code" text NOT NULL,
    "Qty" text NOT NULL,
    "Price" text NOT NULL,
    "Total" text NOT NULL,
    "Old_Qty" text NOT NULL,
    "Exp_Date" text,
    "SP_ID" bigint,
    "Unit" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Date" text,
    "User" bigint,
    "Store" bigint,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Patch_Number" text,
    "SmallQty" text,
    "SmallCode" text
);


ALTER TABLE public.products_start_periods OWNER TO postgres;

--
-- Name: products_start_periods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_start_periods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_start_periods_id_seq OWNER TO postgres;

--
-- Name: products_start_periods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_start_periods_id_seq OWNED BY public.products_start_periods.id;


--
-- Name: products_stores; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_stores (
    id bigint NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "P_Code" text,
    "V_Name" text,
    "VV_Name" text,
    "Exp_Date" text,
    "Product" bigint,
    "Store" bigint,
    "V1" bigint,
    "V2" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.products_stores OWNER TO postgres;

--
-- Name: products_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_stores_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_stores_id_seq OWNER TO postgres;

--
-- Name: products_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_stores_id_seq OWNED BY public.products_stores.id;


--
-- Name: products_stores_transfers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_stores_transfers (
    id bigint NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "P_Code" text,
    "Price" text,
    "Av_Qty" text,
    "Trans_Qty" text,
    "Total" text,
    "ST_ID" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "To_Store" text,
    "OldPrice" text,
    "SmallTrans_Qty" text,
    "SmallCode" text,
    "Original_Trans_Qty" text,
    "CostPrice" text,
    "Exp_Date" text
);


ALTER TABLE public.products_stores_transfers OWNER TO postgres;

--
-- Name: products_stores_transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_stores_transfers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_stores_transfers_id_seq OWNER TO postgres;

--
-- Name: products_stores_transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_stores_transfers_id_seq OWNED BY public.products_stores_transfers.id;


--
-- Name: products_viras; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.products_viras (
    id bigint NOT NULL,
    "Cost" text,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.products_viras OWNER TO postgres;

--
-- Name: products_viras_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.products_viras_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.products_viras_id_seq OWNER TO postgres;

--
-- Name: products_viras_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.products_viras_id_seq OWNED BY public.products_viras.id;


--
-- Name: profit_sales_product_column_sechdulrs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.profit_sales_product_column_sechdulrs (
    id bigint NOT NULL,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Qty" text,
    "Price" text,
    "Cost" text,
    "Profit" text,
    "Store" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.profit_sales_product_column_sechdulrs OWNER TO postgres;

--
-- Name: profit_sales_product_column_sechdulrs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.profit_sales_product_column_sechdulrs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.profit_sales_product_column_sechdulrs_id_seq OWNER TO postgres;

--
-- Name: profit_sales_product_column_sechdulrs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.profit_sales_product_column_sechdulrs_id_seq OWNED BY public.profit_sales_product_column_sechdulrs.id;


--
-- Name: profit_sales_product_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.profit_sales_product_columns (
    id bigint NOT NULL,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Qty" text,
    "Price" text,
    "Cost" text,
    "Profit" text,
    "Store" text,
    "Branch" text,
    "Group" text,
    "Brand" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.profit_sales_product_columns OWNER TO postgres;

--
-- Name: profit_sales_product_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.profit_sales_product_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.profit_sales_product_columns_id_seq OWNER TO postgres;

--
-- Name: profit_sales_product_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.profit_sales_product_columns_id_seq OWNED BY public.profit_sales_product_columns.id;


--
-- Name: project_statuses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.project_statuses (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.project_statuses OWNER TO postgres;

--
-- Name: project_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.project_statuses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.project_statuses_id_seq OWNER TO postgres;

--
-- Name: project_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.project_statuses_id_seq OWNED BY public.project_statuses.id;


--
-- Name: project_teams; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.project_teams (
    id bigint NOT NULL,
    "Member" bigint,
    "Project" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.project_teams OWNER TO postgres;

--
-- Name: project_teams_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.project_teams_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.project_teams_id_seq OWNER TO postgres;

--
-- Name: project_teams_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.project_teams_id_seq OWNED BY public.project_teams.id;


--
-- Name: projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.projects (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Start_Date" text NOT NULL,
    "End_Date" text NOT NULL,
    "Duration" text NOT NULL,
    "Value" text NOT NULL,
    "File" text,
    "Client" bigint NOT NULL,
    "Manager" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Status" text DEFAULT 0,
    "NameEn" text
);


ALTER TABLE public.projects OWNER TO postgres;

--
-- Name: projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.projects_id_seq OWNER TO postgres;

--
-- Name: projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.projects_id_seq OWNED BY public.projects.id;


--
-- Name: purch_bills_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purch_bills_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Vendor" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Total_BF_Tax" text,
    "Tax" text,
    "Total" text,
    "Group" text,
    "Brand" text,
    "Exp_Date" text,
    "Product_Store" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Rate" text,
    "Name_Width" text
);


ALTER TABLE public.purch_bills_columns OWNER TO postgres;

--
-- Name: purch_bills_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purch_bills_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purch_bills_columns_id_seq OWNER TO postgres;

--
-- Name: purch_bills_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purch_bills_columns_id_seq OWNED BY public.purch_bills_columns.id;


--
-- Name: purch_bills_columns_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purch_bills_columns_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Vendor" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Total_BF_Tax" text,
    "Tax" text,
    "Total" text,
    "Group" text,
    "Brand" text,
    "Exp_Date" text,
    "Product_Store" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Rate" text,
    "Name_Width" text
);


ALTER TABLE public.purch_bills_columns_sechdules OWNER TO postgres;

--
-- Name: purch_bills_columns_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purch_bills_columns_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purch_bills_columns_sechdules_id_seq OWNER TO postgres;

--
-- Name: purch_bills_columns_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purch_bills_columns_sechdules_id_seq OWNED BY public.purch_bills_columns_sechdules.id;


--
-- Name: purch_bills_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purch_bills_filter_twos (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Payment_Method" text,
    "Status" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Safe" text,
    "Vendor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Ship" text,
    "Later_Due" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Type" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.purch_bills_filter_twos OWNER TO postgres;

--
-- Name: purch_bills_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purch_bills_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purch_bills_filter_twos_id_seq OWNER TO postgres;

--
-- Name: purch_bills_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purch_bills_filter_twos_id_seq OWNED BY public.purch_bills_filter_twos.id;


--
-- Name: purch_bills_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purch_bills_filters (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Payment_Method" text,
    "Status" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Safe" text,
    "Vendor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Ship" text,
    "Later_Due" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Type" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.purch_bills_filters OWNER TO postgres;

--
-- Name: purch_bills_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purch_bills_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purch_bills_filters_id_seq OWNER TO postgres;

--
-- Name: purch_bills_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purch_bills_filters_id_seq OWNED BY public.purch_bills_filters.id;


--
-- Name: purchase_petrols; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purchase_petrols (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Later_Due" text,
    "Vendor_Bill_Date" text,
    "Refernce_Number" text,
    "Draw" text,
    "Payment_Method" text,
    "Note" text,
    "File" text,
    "Car_Number" text,
    "Delivery_Method" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Pay" text,
    "Full" text,
    "Vendor" bigint,
    "Coin" bigint,
    "Safe" bigint,
    "CompanyCar" bigint,
    "Store" bigint,
    "Recipient" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Number" text
);


ALTER TABLE public.purchase_petrols OWNER TO postgres;

--
-- Name: purchase_petrols_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchase_petrols_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchase_petrols_arr_seq OWNER TO postgres;

--
-- Name: purchase_petrols_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchase_petrols_arr_seq OWNED BY public.purchase_petrols.arr;


--
-- Name: purchase_petrols_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchase_petrols_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchase_petrols_id_seq OWNER TO postgres;

--
-- Name: purchase_petrols_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchase_petrols_id_seq OWNED BY public.purchase_petrols.id;


--
-- Name: purchases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purchases (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Payment_Method" text NOT NULL,
    "Status" text NOT NULL,
    "Vendor_Bill_Date" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "P_Order_Num" text,
    "Safe" bigint NOT NULL,
    "Vendor" bigint NOT NULL,
    "Delegate" bigint,
    "Store" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Ship" bigint,
    "Check_Type" bigint,
    "Check_Number" text,
    "Due_Date" text,
    "ShipStatus" text DEFAULT 0,
    "Later_Due" text,
    "Sent" text,
    "TaxBill" text DEFAULT 0,
    "TaxCode" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "File" text,
    "Current_Credit" text,
    "Residual" text,
    "Total_Net" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text,
    "DiscountBill" text DEFAULT 0,
    "ImportTotalCost" text,
    "Documentary_ID" text
);


ALTER TABLE public.purchases OWNER TO postgres;

--
-- Name: purchases_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchases_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchases_arr_seq OWNER TO postgres;

--
-- Name: purchases_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchases_arr_seq OWNED BY public.purchases.arr;


--
-- Name: purchases_default_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purchases_default_data (
    id bigint NOT NULL,
    "Payment_Method" text,
    "Status" text,
    "V_and_C" text,
    "Safe" bigint,
    "Vendor" bigint,
    "Delegate" bigint,
    "Store" bigint,
    "Coin" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Brand" text,
    "Group" text,
    "English_Name" text,
    "Expire" text,
    "Empp" text,
    "Quality_Qty" text,
    "Discount" text,
    "Hide_Product" text,
    "Hide_Edit_Delete" text,
    "Duplicate_Items" text,
    "Import_Invoice" text,
    "Import_Account" text
);


ALTER TABLE public.purchases_default_data OWNER TO postgres;

--
-- Name: purchases_default_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchases_default_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchases_default_data_id_seq OWNER TO postgres;

--
-- Name: purchases_default_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchases_default_data_id_seq OWNED BY public.purchases_default_data.id;


--
-- Name: purchases_expenses_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purchases_expenses_types (
    id bigint NOT NULL,
    "Type" text,
    "Cost" text,
    "Purchases" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.purchases_expenses_types OWNER TO postgres;

--
-- Name: purchases_expenses_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchases_expenses_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchases_expenses_types_id_seq OWNER TO postgres;

--
-- Name: purchases_expenses_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchases_expenses_types_id_seq OWNED BY public.purchases_expenses_types.id;


--
-- Name: purchases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchases_id_seq OWNER TO postgres;

--
-- Name: purchases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchases_id_seq OWNED BY public.purchases.id;


--
-- Name: purchases_order_expenses_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purchases_order_expenses_types (
    id bigint NOT NULL,
    "Type" text,
    "Cost" text,
    "PurchasesOrder" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.purchases_order_expenses_types OWNER TO postgres;

--
-- Name: purchases_order_expenses_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchases_order_expenses_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchases_order_expenses_types_id_seq OWNER TO postgres;

--
-- Name: purchases_order_expenses_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchases_order_expenses_types_id_seq OWNED BY public.purchases_order_expenses_types.id;


--
-- Name: purchases_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purchases_orders (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Payment_Method" text,
    "Status" text,
    "Vendor_Bill_Date" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "P_Order_Num" text,
    "Safe" bigint,
    "Vendor" bigint,
    "Delegate" bigint,
    "Store" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ToPurch" text DEFAULT 0,
    "Quality" text DEFAULT 0,
    "Quality_Note" text,
    "Quantity" text DEFAULT 0,
    "Quantity_Note" text,
    "Purchases_Date" text,
    "ShipStatus" text,
    "Ship" text,
    "Check_Type" text,
    "Due_Date" text,
    "Check_Number" text,
    "Later_Due" text,
    "Sent" text,
    "TaxBill" text,
    "TaxCode" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "File" text,
    "Current_Credit" text,
    "Residual" text,
    "Total_Net" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text,
    "DiscountBill" text DEFAULT 0,
    "ImportTotalCost" text
);


ALTER TABLE public.purchases_orders OWNER TO postgres;

--
-- Name: purchases_orders_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchases_orders_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchases_orders_arr_seq OWNER TO postgres;

--
-- Name: purchases_orders_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchases_orders_arr_seq OWNED BY public.purchases_orders.arr;


--
-- Name: purchases_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purchases_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purchases_orders_id_seq OWNER TO postgres;

--
-- Name: purchases_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purchases_orders_id_seq OWNED BY public.purchases_orders.id;


--
-- Name: purpose_travel; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.purpose_travel (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.purpose_travel OWNER TO postgres;

--
-- Name: purpose_travel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.purpose_travel_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.purpose_travel_id_seq OWNER TO postgres;

--
-- Name: purpose_travel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.purpose_travel_id_seq OWNED BY public.purpose_travel.id;


--
-- Name: q_r_s; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.q_r_s (
    id bigint NOT NULL,
    "QR" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.q_r_s OWNER TO postgres;

--
-- Name: q_r_s_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.q_r_s_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.q_r_s_id_seq OWNER TO postgres;

--
-- Name: q_r_s_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.q_r_s_id_seq OWNED BY public.q_r_s.id;


--
-- Name: qualities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.qualities (
    id bigint NOT NULL,
    "Code" text,
    "Execution_Code" text,
    "Date" text,
    "Outcome_Name" text,
    "Outcome_Code" text,
    "Outcome_Qty" text,
    "Except_Qty" text,
    "Outcome_Unit" text,
    "Outcome_Store" text,
    "Production_Manager" bigint,
    "Quality_Manager" bigint,
    "ManuExecution" bigint NOT NULL,
    "Note" text,
    "Status" text,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.qualities OWNER TO postgres;

--
-- Name: qualities_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.qualities_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.qualities_arr_seq OWNER TO postgres;

--
-- Name: qualities_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.qualities_arr_seq OWNED BY public.qualities.arr;


--
-- Name: qualities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.qualities_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.qualities_id_seq OWNER TO postgres;

--
-- Name: qualities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.qualities_id_seq OWNED BY public.qualities.id;


--
-- Name: quality_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.quality_details (
    id bigint NOT NULL,
    "Exmine_Type" text,
    "Exmine_Unit" text,
    "Exmine_Allow_From" text,
    "Exmine_Allow_To" text,
    "Result" text,
    "Accept" text,
    "Exmine" bigint,
    "Quality" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.quality_details OWNER TO postgres;

--
-- Name: quality_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.quality_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.quality_details_id_seq OWNER TO postgres;

--
-- Name: quality_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.quality_details_id_seq OWNED BY public.quality_details.id;


--
-- Name: quote_images; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.quote_images (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Payment_Method" text NOT NULL,
    "Note" text,
    "Product_Numbers" text NOT NULL,
    "Total_Qty" text NOT NULL,
    "Total_Discount" text NOT NULL,
    "Total_BF_Taxes" text NOT NULL,
    "Total_Taxes" text NOT NULL,
    "Total_Price" text NOT NULL,
    "Client" text NOT NULL,
    "User" text NOT NULL,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Pay" text,
    "Safe" text,
    "Executor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    presenter text,
    annual_interest text,
    monthly_installment text,
    "Years_Number" text,
    total text,
    "installment_Num" text,
    "Date_First_installment" text,
    "Later_Due" text,
    "Sale_Date" text,
    "Total_Wight_Bill" text,
    "ToSales" text,
    "Shipping" text,
    "Delivery_Status" text,
    "Order_Type" text,
    "ProfitPrecent" text,
    "InstallCompany" text,
    "ContractNumber" text,
    "PayFees" text,
    "ServiceFee" text,
    "CompanyPrecent" text,
    "Time" text,
    "TaxBill" text,
    "TaxCode" text,
    "TaxOnTotal" text,
    "TaxOnTotalType" text,
    "Check_Type" text,
    "Due_Date" text,
    "Check_Number" text,
    "Shift_Code" text,
    "Client_Address" text,
    "Delivery" text,
    "ProfitTax" text,
    "Branch" text,
    "CustomerGroup" text,
    "Total_Cost" text,
    "File" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text,
    "Total_Net" text,
    "Residual" text,
    "Current_Credit" text,
    "DiscountTax" text,
    "Draw" text,
    "Status" text,
    "Refernce_Number" text,
    "Ship" text,
    "DiscountBill" text DEFAULT 0,
    "Client_Accept" text DEFAULT 0,
    "Done" text DEFAULT 0,
    "EMP_Quote" text
);


ALTER TABLE public.quote_images OWNER TO postgres;

--
-- Name: quote_images_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.quote_images_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.quote_images_arr_seq OWNER TO postgres;

--
-- Name: quote_images_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.quote_images_arr_seq OWNED BY public.quote_images.arr;


--
-- Name: quote_images_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.quote_images_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.quote_images_id_seq OWNER TO postgres;

--
-- Name: quote_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.quote_images_id_seq OWNED BY public.quote_images.id;


--
-- Name: quotes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.quotes (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Payment_Method" text NOT NULL,
    "Status" text NOT NULL,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Safe" bigint NOT NULL,
    "Client" bigint NOT NULL,
    "Delegate" bigint,
    "Executor" bigint,
    "Store" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    presenter text,
    annual_interest text,
    monthly_installment text,
    "Years_Number" text,
    total text,
    "installment_Num" text,
    "Date_First_installment" text,
    "Later_Due" text,
    "Sale_Date" text,
    "Total_Wight_Bill" text,
    "ToSales" text,
    "Shipping" text,
    "Delivery_Status" text,
    "Order_Type" text,
    "ProfitPrecent" text,
    "InstallCompany" text,
    "ContractNumber" text,
    "PayFees" text,
    "ServiceFee" text,
    "CompanyPrecent" text,
    "Time" text,
    "TaxBill" text,
    "TaxCode" text,
    "TaxOnTotal" text,
    "TaxOnTotalType" text,
    "Check_Type" text,
    "Due_Date" text,
    "Check_Number" text,
    "Shift_Code" text,
    "Client_Address" text,
    "Delivery" text,
    "ProfitTax" text,
    "Branch" text,
    "CustomerGroup" text,
    "Total_Cost" text,
    "File" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text,
    "Total_Net" text,
    "Residual" text,
    "Current_Credit" text,
    "DiscountTax" text,
    "Ship" text,
    "DiscountBill" text DEFAULT 0,
    "Shipping_Price" text,
    "Email" text,
    "Phone" text,
    "Expire_Date" text,
    "Care" text,
    "Location" text,
    "Desc" text
);


ALTER TABLE public.quotes OWNER TO postgres;

--
-- Name: quotes_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.quotes_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.quotes_arr_seq OWNER TO postgres;

--
-- Name: quotes_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.quotes_arr_seq OWNED BY public.quotes.arr;


--
-- Name: quotes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.quotes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.quotes_id_seq OWNER TO postgres;

--
-- Name: quotes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.quotes_id_seq OWNED BY public.quotes.id;


--
-- Name: rabih_education; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.rabih_education (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Video" text,
    "Package" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.rabih_education OWNER TO postgres;

--
-- Name: rabih_education_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.rabih_education_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.rabih_education_id_seq OWNER TO postgres;

--
-- Name: rabih_education_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.rabih_education_id_seq OWNED BY public.rabih_education.id;


--
-- Name: rates; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.rates (
    id bigint NOT NULL,
    "Rate" text NOT NULL,
    "Product" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.rates OWNER TO postgres;

--
-- Name: rates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.rates_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.rates_id_seq OWNER TO postgres;

--
-- Name: rates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.rates_id_seq OWNED BY public.rates.id;


--
-- Name: real_sate_projects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.real_sate_projects (
    id bigint NOT NULL,
    "Code" text,
    "Name" text,
    "Start_Date" text,
    "End_Date" text,
    "Period" text,
    "Value" text,
    "Expect_Cost" text,
    "Expect_Profit" text,
    "Project_File" text,
    "Contract_File" text,
    "Contract_Type" text,
    "Completed" text,
    "Account" text,
    "Goods_Account" text,
    "Client" text,
    "Client_Account" text,
    "Manager" text,
    "Reponsible" text,
    "Store" text,
    "Contract_Status" text,
    "Project_Status" text,
    "Cost_Center" text,
    "Governrate" text,
    "City" text,
    "Place" text,
    "Location" text,
    "Address_Details" text,
    "Coin" text,
    "Draw" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Contractor_Account" text,
    "Category" text
);


ALTER TABLE public.real_sate_projects OWNER TO postgres;

--
-- Name: real_sate_projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.real_sate_projects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.real_sate_projects_id_seq OWNER TO postgres;

--
-- Name: real_sate_projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.real_sate_projects_id_seq OWNED BY public.real_sate_projects.id;


--
-- Name: real_sate_projects_payments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.real_sate_projects_payments (
    id bigint NOT NULL,
    "Date" text,
    "Value" text,
    "Status" text,
    "Project" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.real_sate_projects_payments OWNER TO postgres;

--
-- Name: real_sate_projects_payments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.real_sate_projects_payments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.real_sate_projects_payments_id_seq OWNER TO postgres;

--
-- Name: real_sate_projects_payments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.real_sate_projects_payments_id_seq OWNED BY public.real_sate_projects_payments.id;


--
-- Name: real_state_default_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.real_state_default_data (
    id bigint NOT NULL,
    "Draw" text,
    "Coin" text,
    "Safe" text,
    "Contract_Type" text,
    "Manager" text,
    "Reponsible" text,
    "Store" text,
    "Contract_Status" text,
    "Project_Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.real_state_default_data OWNER TO postgres;

--
-- Name: real_state_default_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.real_state_default_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.real_state_default_data_id_seq OWNER TO postgres;

--
-- Name: real_state_default_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.real_state_default_data_id_seq OWNED BY public.real_state_default_data.id;


--
-- Name: real_units; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.real_units (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "System" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Area" text,
    "Category" text,
    "Sort" text,
    "Owner" text,
    "OwnerType" text,
    "OwnerPrecent" text,
    "PlaceReal" text,
    "Gov" text,
    "City" text,
    "Place" text,
    "Address" text,
    "Level" text,
    "Elevator" text,
    "Parking" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    "Video_Link" text,
    "Image" text,
    "License" text,
    "Map" text,
    "Website" text,
    "Price_Sale" text,
    "Daily_Rent_Price" text,
    "Weekly_Rent_Price" text,
    "Monthly_Rent_Price" text,
    "Quarter_Year_Rent_Price" text,
    "Half_Year_Rent_Price" text,
    "Year_Rent_Price" text,
    "Rooms_Num" text,
    "Kitchens_Num" text,
    "Bathrooms_Num" text,
    "Levels_Num" text,
    "Apartments_Num" text,
    "Buliding_Age" text,
    "Activity" text,
    "Activity_Type" text,
    "Cultivated_Area" text,
    "Crop_Type" text,
    "Residential_House" text,
    "Inverter_Room" text,
    "Solar_Energy" text,
    "Diesel_Machine" text,
    "Government_Electricity" text,
    "Irrigation_Type" text,
    "Water_Quality" text,
    "Account" text,
    "StartRentDate" text,
    "EndRentDate" text,
    "Status" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "RentAccount" text
);


ALTER TABLE public.real_units OWNER TO postgres;

--
-- Name: real_units_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.real_units_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.real_units_id_seq OWNER TO postgres;

--
-- Name: real_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.real_units_id_seq OWNED BY public.real_units.id;


--
-- Name: real_units_services; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.real_units_services (
    id bigint NOT NULL,
    "Unit" text,
    "Service" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.real_units_services OWNER TO postgres;

--
-- Name: real_units_services_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.real_units_services_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.real_units_services_id_seq OWNER TO postgres;

--
-- Name: real_units_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.real_units_services_id_seq OWNED BY public.real_units_services.id;


--
-- Name: reasons; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reasons (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.reasons OWNER TO postgres;

--
-- Name: reasons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reasons_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reasons_id_seq OWNER TO postgres;

--
-- Name: reasons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reasons_id_seq OWNED BY public.reasons.id;


--
-- Name: recipt_maintaince_errors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recipt_maintaince_errors (
    id bigint NOT NULL,
    "Recipt" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Error" bigint NOT NULL,
    "Recived" text DEFAULT 0,
    "Eng" text DEFAULT 0
);


ALTER TABLE public.recipt_maintaince_errors OWNER TO postgres;

--
-- Name: recipt_maintaince_errors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recipt_maintaince_errors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recipt_maintaince_errors_id_seq OWNER TO postgres;

--
-- Name: recipt_maintaince_errors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recipt_maintaince_errors_id_seq OWNED BY public.recipt_maintaince_errors.id;


--
-- Name: recipt_maintainces; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recipt_maintainces (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Note" text,
    "Serial_Num" text,
    "Total" text NOT NULL,
    "Draw" text NOT NULL,
    "Company" bigint,
    "Device_Type" bigint,
    "Device_Case" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "Account" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Status" text DEFAULT 0,
    "Pattern_Image" text,
    "Time" text,
    "Password" text,
    "Pay" text,
    "Eng_Note" text,
    "Reason" text,
    "Report_Client" text,
    "Work" text,
    "Store" bigint,
    "Eng" bigint,
    "Recipient" bigint,
    "Branch" bigint,
    "Payment_Method" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_Bf_Taxes" text,
    "Total_Taxes" text,
    "RefuseReason" text,
    "NoteRecived" text,
    "Returned" text DEFAULT 0,
    "CustomerGroup" text,
    "Total_Cost" text
);


ALTER TABLE public.recipt_maintainces OWNER TO postgres;

--
-- Name: recipt_maintainces_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recipt_maintainces_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recipt_maintainces_arr_seq OWNER TO postgres;

--
-- Name: recipt_maintainces_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recipt_maintainces_arr_seq OWNED BY public.recipt_maintainces.arr;


--
-- Name: recipt_maintainces_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recipt_maintainces_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recipt_maintainces_id_seq OWNER TO postgres;

--
-- Name: recipt_maintainces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recipt_maintainces_id_seq OWNED BY public.recipt_maintainces.id;


--
-- Name: recipt_voucher_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recipt_voucher_details (
    id bigint NOT NULL,
    "Creditor" text NOT NULL,
    "Statement" text,
    "Account" bigint NOT NULL,
    "RV_ID" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Bill_Num" text
);


ALTER TABLE public.recipt_voucher_details OWNER TO postgres;

--
-- Name: recipt_voucher_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recipt_voucher_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recipt_voucher_details_id_seq OWNER TO postgres;

--
-- Name: recipt_voucher_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recipt_voucher_details_id_seq OWNED BY public.recipt_voucher_details.id;


--
-- Name: recipt_vouchers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recipt_vouchers (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Total_Creditor" text NOT NULL,
    "Note" text,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "Safe" bigint NOT NULL,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Store" text,
    "Shift" text,
    "User" text,
    "Status" text,
    "File" text,
    "Collector" text,
    "Edit" text,
    "Delete" text,
    "Edit_New_Code" text,
    "Sales_Bill" text,
    "Show_Num" text
);


ALTER TABLE public.recipt_vouchers OWNER TO postgres;

--
-- Name: recipt_vouchers_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recipt_vouchers_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recipt_vouchers_arr_seq OWNER TO postgres;

--
-- Name: recipt_vouchers_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recipt_vouchers_arr_seq OWNED BY public.recipt_vouchers."Code";


--
-- Name: recipt_vouchers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recipt_vouchers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recipt_vouchers_id_seq OWNER TO postgres;

--
-- Name: recipt_vouchers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recipt_vouchers_id_seq OWNED BY public.recipt_vouchers.id;


--
-- Name: recipts_sales_petrols; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recipts_sales_petrols (
    id bigint NOT NULL,
    "Recipt_Amount" text NOT NULL,
    "Recipt" bigint,
    "SalesPetrol" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.recipts_sales_petrols OWNER TO postgres;

--
-- Name: recipts_sales_petrols_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recipts_sales_petrols_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recipts_sales_petrols_id_seq OWNER TO postgres;

--
-- Name: recipts_sales_petrols_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recipts_sales_petrols_id_seq OWNED BY public.recipts_sales_petrols.id;


--
-- Name: recipts_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recipts_types (
    id bigint NOT NULL,
    "Name" text,
    "Account" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.recipts_types OWNER TO postgres;

--
-- Name: recipts_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recipts_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recipts_types_id_seq OWNER TO postgres;

--
-- Name: recipts_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recipts_types_id_seq OWNED BY public.recipts_types.id;


--
-- Name: recived_purch_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recived_purch_products (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "Recived_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Total_Tax" text,
    "Exp_Date" text,
    "Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Recived" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.recived_purch_products OWNER TO postgres;

--
-- Name: recived_purch_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_purch_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_purch_products_id_seq OWNER TO postgres;

--
-- Name: recived_purch_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_purch_products_id_seq OWNED BY public.recived_purch_products.id;


--
-- Name: recived_purchts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recived_purchts (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Total_Trans_Qty" text NOT NULL,
    "Total_Trans_Value" text NOT NULL,
    "Purchase" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "User" bigint,
    arr bigint
);


ALTER TABLE public.recived_purchts OWNER TO postgres;

--
-- Name: recived_purchts_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_purchts_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_purchts_arr_seq OWNER TO postgres;

--
-- Name: recived_purchts_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_purchts_arr_seq OWNED BY public.recived_purchts.arr;


--
-- Name: recived_purchts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_purchts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_purchts_id_seq OWNER TO postgres;

--
-- Name: recived_purchts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_purchts_id_seq OWNED BY public.recived_purchts.id;


--
-- Name: recived_sales; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recived_sales (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Total_Trans_Qty" text NOT NULL,
    "Total_Trans_Value" text NOT NULL,
    "Total_BF_Taxes" text NOT NULL,
    "Total_Taxes" text NOT NULL,
    "Sales" bigint NOT NULL,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "User" bigint
);


ALTER TABLE public.recived_sales OWNER TO postgres;

--
-- Name: recived_sales_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_sales_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_sales_arr_seq OWNER TO postgres;

--
-- Name: recived_sales_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_sales_arr_seq OWNED BY public.recived_sales.arr;


--
-- Name: recived_sales_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_sales_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_sales_id_seq OWNER TO postgres;

--
-- Name: recived_sales_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_sales_id_seq OWNED BY public.recived_sales.id;


--
-- Name: recived_sales_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recived_sales_products (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "Recived_Qty" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Total_Tax" text,
    "Exp_Date" text,
    "Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Recived" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.recived_sales_products OWNER TO postgres;

--
-- Name: recived_sales_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_sales_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_sales_products_id_seq OWNER TO postgres;

--
-- Name: recived_sales_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_sales_products_id_seq OWNED BY public.recived_sales_products.id;


--
-- Name: recived_shipment_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recived_shipment_goods (
    id bigint NOT NULL,
    "Shipment_ID" text,
    "Code" text,
    "Barcode" text,
    "Total_Weight" text,
    "Total_Pieces" text,
    "Total_Cost" text,
    "Client" text,
    "RecivedShipment" text,
    "Status" text,
    "Unloading_Goods_ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "PayShip" text
);


ALTER TABLE public.recived_shipment_goods OWNER TO postgres;

--
-- Name: recived_shipment_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_shipment_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_shipment_goods_id_seq OWNER TO postgres;

--
-- Name: recived_shipment_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_shipment_goods_id_seq OWNED BY public.recived_shipment_goods.id;


--
-- Name: recived_shipments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.recived_shipments (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Store" text,
    "Delegate" text,
    "Driver" text,
    "Total_Pieces" text,
    "Total_Weight" text,
    "Total_Cost" text,
    "Count_Shipmets" text,
    "Status" text,
    "User" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Type" text,
    "Residual" text
);


ALTER TABLE public.recived_shipments OWNER TO postgres;

--
-- Name: recived_shipments_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_shipments_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_shipments_arr_seq OWNER TO postgres;

--
-- Name: recived_shipments_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_shipments_arr_seq OWNED BY public.recived_shipments."Code";


--
-- Name: recived_shipments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.recived_shipments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.recived_shipments_id_seq OWNER TO postgres;

--
-- Name: recived_shipments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.recived_shipments_id_seq OWNED BY public.recived_shipments.id;


--
-- Name: reg_courses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reg_courses (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Hall" text,
    "Reserve_Course" text,
    "Teacher" text,
    "Teacher_Attend" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Teacher_Attend_From" text,
    "Teacher_Attend_To" text,
    "Teacher_Time" text
);


ALTER TABLE public.reg_courses OWNER TO postgres;

--
-- Name: reg_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reg_courses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reg_courses_id_seq OWNER TO postgres;

--
-- Name: reg_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reg_courses_id_seq OWNED BY public.reg_courses.id;


--
-- Name: reg_courses_students; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reg_courses_students (
    id bigint NOT NULL,
    "Student" text,
    "Attend" text,
    "Date" text,
    "Reg" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.reg_courses_students OWNER TO postgres;

--
-- Name: reg_courses_students_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reg_courses_students_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reg_courses_students_id_seq OWNER TO postgres;

--
-- Name: reg_courses_students_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reg_courses_students_id_seq OWNED BY public.reg_courses_students.id;


--
-- Name: reg_over_times; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reg_over_times (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Month" text NOT NULL,
    "Amount" text NOT NULL,
    "Hours_Number" text NOT NULL,
    "Hour_Rate" text NOT NULL,
    "Total_Hours" text NOT NULL,
    "Hour_Cost" text NOT NULL,
    "Note" text,
    "Emp" bigint,
    "Type" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.reg_over_times OWNER TO postgres;

--
-- Name: reg_over_times_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reg_over_times_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reg_over_times_arr_seq OWNER TO postgres;

--
-- Name: reg_over_times_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reg_over_times_arr_seq OWNED BY public.reg_over_times.arr;


--
-- Name: reg_over_times_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reg_over_times_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reg_over_times_id_seq OWNER TO postgres;

--
-- Name: reg_over_times_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reg_over_times_id_seq OWNED BY public.reg_over_times.id;


--
-- Name: remove_products_halls; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.remove_products_halls (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "CostPrice" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total_Tax" text,
    "Total" text,
    "Store" text,
    "Product" text,
    "Exp_Date" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "SalesOrder" text,
    "Pro_Note" text,
    "KitchenEnd" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.remove_products_halls OWNER TO postgres;

--
-- Name: remove_products_halls_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.remove_products_halls_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.remove_products_halls_id_seq OWNER TO postgres;

--
-- Name: remove_products_halls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.remove_products_halls_id_seq OWNED BY public.remove_products_halls.id;


--
-- Name: rent_contracts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.rent_contracts (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "System" text,
    "Unit" text,
    "Client" text,
    "Delegate" text,
    "Contract_Num" text,
    "Value" text,
    "Deposit" text,
    "Residual" text,
    "Start_Date" text,
    "End_Date" text,
    "Insurance" text,
    "RentPeriod" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Recipt" text
);


ALTER TABLE public.rent_contracts OWNER TO postgres;

--
-- Name: rent_contracts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.rent_contracts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.rent_contracts_id_seq OWNER TO postgres;

--
-- Name: rent_contracts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.rent_contracts_id_seq OWNED BY public.rent_contracts.id;


--
-- Name: rent_period_reals; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.rent_period_reals (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.rent_period_reals OWNER TO postgres;

--
-- Name: rent_period_reals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.rent_period_reals_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.rent_period_reals_id_seq OWNER TO postgres;

--
-- Name: rent_period_reals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.rent_period_reals_id_seq OWNED BY public.rent_period_reals.id;


--
-- Name: reports_settings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reports_settings (
    id bigint NOT NULL,
    "Product_Info" text,
    "Product_Order_Limit" text,
    "ReportStartPeriodProducts" text,
    "SettlementsReports" text,
    "StoresCost" text,
    "StoresInventory" text,
    "Collection_Delegates" text,
    "Sales_Delegates" text,
    "StagnantItems" text,
    "ItemsMoves" text,
    "StoresBalancesTwo" text,
    "NetPurchases" text,
    "NetSales" text,
    "ClientSales" text,
    "ExecutorSales" text,
    "InstallmentReport" text,
    "ExpiredProucts" text,
    "StoresSalesDetails" text,
    "TotalNetPurchases" text,
    "TotalNetSales" text,
    "Profits" text,
    "Shifts" text,
    "Shifts_Details" text,
    "DailyClosing" text,
    "Products" text,
    "DailyShifts" text,
    "ExpensesReport" text,
    "DailyProducts" text,
    "EmployeeCommissionDiscounts" text,
    "VendorPricesReport" text,
    "DailyMoves" text,
    "GroupsSales" text,
    "VendorPurchases" text,
    "ExceptProfits" text,
    "DelegateSalesDetails" text,
    "CreditStores" text,
    "ProductProfits" text,
    "ExceptProductProfits" text,
    "SalesBills" text,
    "PurchasesBills" text,
    "StoresMovesReport" text,
    "StoresTransferReport" text,
    "SafesTransferReport" text,
    "CompareSalesPrice" text,
    "ProductMoveDetails" text,
    "MostSalesProducts" text,
    "ProfitSalesProduct" text,
    "ClientAccountStatement" text,
    "ClientsStatement" text,
    "VendorAccountStatement" text,
    "VendorsStatement" text,
    "EmpGoals" text,
    "InventorySerial" text,
    "TotalExpensesSafes" text,
    "SubIncomList" text,
    "ExpensesList" text,
    "StoresBalances" text,
    "StoresBalancesCat" text,
    "ItemCost" text,
    "StoresInventoryy" text,
    "DelegateSalesDetailss" text,
    "ProfitDelegateSalesDetails" text,
    "InstallmentCompaniesSales" text,
    "StoresCosts" text,
    "DailyClosingDetails" text,
    "SalesProsMoreDetails" text,
    "StagnantItemss" text,
    "SalesCustomersGroups" text,
    "BrandsSales" text,
    "Customer_Debts" text,
    "Vendor_Debts" text,
    "MaintanceSalesReport" text,
    "Maintenance_Tune" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ProfitGroupsReport" text,
    "IncomListReport" text,
    "AssemblyProQties" text
);


ALTER TABLE public.reports_settings OWNER TO postgres;

--
-- Name: reports_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reports_settings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reports_settings_id_seq OWNER TO postgres;

--
-- Name: reports_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reports_settings_id_seq OWNED BY public.reports_settings.id;


--
-- Name: reservations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reservations (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "From" text,
    "To" text,
    "Amount" text,
    "Checkout" text,
    "Expire" text,
    "Draw" text,
    "Client" bigint,
    "Safe" bigint,
    "Coin" bigint,
    "Room" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "User" text,
    "Note" text
);


ALTER TABLE public.reservations OWNER TO postgres;

--
-- Name: reservations_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reservations_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reservations_arr_seq OWNER TO postgres;

--
-- Name: reservations_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reservations_arr_seq OWNED BY public.reservations.arr;


--
-- Name: reservations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reservations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reservations_id_seq OWNER TO postgres;

--
-- Name: reservations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reservations_id_seq OWNED BY public.reservations.id;


--
-- Name: reserve_course_days; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reserve_course_days (
    id bigint NOT NULL,
    "Day" text,
    "Reserve" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "From_Time" text,
    "To_Time" text
);


ALTER TABLE public.reserve_course_days OWNER TO postgres;

--
-- Name: reserve_course_days_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reserve_course_days_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reserve_course_days_id_seq OWNER TO postgres;

--
-- Name: reserve_course_days_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reserve_course_days_id_seq OWNED BY public.reserve_course_days.id;


--
-- Name: reserve_course_students; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reserve_course_students (
    id bigint NOT NULL,
    "Student" text,
    "Pay" text,
    "Cost" text,
    "Residual" text,
    "Constraint" text,
    "Reserve" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Dollar_Value" text
);


ALTER TABLE public.reserve_course_students OWNER TO postgres;

--
-- Name: reserve_course_students_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reserve_course_students_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reserve_course_students_id_seq OWNER TO postgres;

--
-- Name: reserve_course_students_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reserve_course_students_id_seq OWNED BY public.reserve_course_students.id;


--
-- Name: reserve_courses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reserve_courses (
    id bigint NOT NULL,
    "Code" text,
    "Course" text,
    "Start_Date" text,
    "End_Date" text,
    "Course_Type" text,
    "Teacher" text,
    "Required_Number" text,
    "Certificate" text,
    "Cost" text,
    "Total_Required" text,
    "Status" text,
    "Days" text,
    "Time" text,
    "Total_Paid" text,
    "Total_Num" text,
    "Total_Cost" text,
    "Safe" text,
    "Draw" text,
    "Coin" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Hall" text
);


ALTER TABLE public.reserve_courses OWNER TO postgres;

--
-- Name: reserve_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reserve_courses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reserve_courses_id_seq OWNER TO postgres;

--
-- Name: reserve_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.reserve_courses_id_seq OWNED BY public.reserve_courses.id;


--
-- Name: resignation_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resignation_requests (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Resignation_Date" text,
    "File" text,
    "Emp" text,
    "Note" text,
    "Status" text,
    "Reason" text,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resignation_requests OWNER TO postgres;

--
-- Name: resignation_requests_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resignation_requests_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resignation_requests_arr_seq OWNER TO postgres;

--
-- Name: resignation_requests_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resignation_requests_arr_seq OWNED BY public.resignation_requests."Code";


--
-- Name: resignation_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resignation_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resignation_requests_id_seq OWNER TO postgres;

--
-- Name: resignation_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resignation_requests_id_seq OWNED BY public.resignation_requests.id;


--
-- Name: resturant_abouts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_abouts (
    id bigint NOT NULL,
    "Image_1" text,
    "Image_2" text,
    "Title_Image" text,
    "Arabic_Title" text,
    "English_Title" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_abouts OWNER TO postgres;

--
-- Name: resturant_abouts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_abouts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_abouts_id_seq OWNER TO postgres;

--
-- Name: resturant_abouts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_abouts_id_seq OWNED BY public.resturant_abouts.id;


--
-- Name: resturant_blogs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_blogs (
    id bigint NOT NULL,
    "Image" text,
    "Sub_Image" text,
    "Date" text,
    "Arabic_Title" text,
    "English_Title" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_blogs OWNER TO postgres;

--
-- Name: resturant_blogs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_blogs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_blogs_id_seq OWNER TO postgres;

--
-- Name: resturant_blogs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_blogs_id_seq OWNED BY public.resturant_blogs.id;


--
-- Name: resturant_cart_check_styles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_cart_check_styles (
    id bigint NOT NULL,
    "Cart_BG_Type" text,
    "Cart_BG_Image" text,
    "Cart_BG_Color" text,
    "Cart_Title_Color" text,
    "Cart_Txt_Color" text,
    "Cart_Top_Image" text,
    "Cart_Box_BG" text,
    "Cart_Box_Border" text,
    "Cart_Table_Color" text,
    "Cart_Table_BG" text,
    "Cart_Btn_BG" text,
    "Cart_Btn_Color" text,
    "Checkout_Image" text,
    "Checkout_Title_Color" text,
    "Checkout_BG_Type" text,
    "Checkout_BG_Image" text,
    "Checkout_BG_Color" text,
    "Checkout_Box_BG" text,
    "Checkout_Box_Border" text,
    "Checkout_Input_BG" text,
    "Checkout_Input_Color" text,
    "Checkout_Btn_Color" text,
    "Checkout_Btn_BG" text,
    "Checkout_Txt_Color" text,
    "Checkout_Txt_Hover_Color" text,
    "Checkout_Price_Color" text,
    "MyAccount_BG_Type" text,
    "MyAccount_BG_Image" text,
    "MyAccount_BG_Color" text,
    "MyAccount_Box_BG" text,
    "MyAccount_Box_Border" text,
    "MyAccount_Table_BG" text,
    "MyAccount_Table_Color" text,
    "MyAccount_Table_Head_BG" text,
    "MyAccount_Table_Head_Color" text,
    "MyAccount_Txt_Color" text,
    "MyAccount_Btn_BG" text,
    "MyAccount_Btn_Color" text,
    "MyAccount_Input_BG" text,
    "MyAccount_Input_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Collapse_BG" text,
    "Collapse_Border" text,
    "Collapse_Color" text
);


ALTER TABLE public.resturant_cart_check_styles OWNER TO postgres;

--
-- Name: resturant_cart_check_styles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_cart_check_styles_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_cart_check_styles_id_seq OWNER TO postgres;

--
-- Name: resturant_cart_check_styles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_cart_check_styles_id_seq OWNED BY public.resturant_cart_check_styles.id;


--
-- Name: resturant_carts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_carts (
    id bigint NOT NULL,
    "Product" text,
    "Name" text,
    "NameEn" text,
    "V_ID" text,
    "P_Code" text,
    "Qty" text,
    "Price" text,
    "Image" text,
    "Total" text,
    "User" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_carts OWNER TO postgres;

--
-- Name: resturant_carts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_carts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_carts_id_seq OWNER TO postgres;

--
-- Name: resturant_carts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_carts_id_seq OWNED BY public.resturant_carts.id;


--
-- Name: resturant_cupon_codes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_cupon_codes (
    id bigint NOT NULL,
    "Code" text,
    "Amount" text,
    "Status" text,
    "Num" text,
    "Used" text,
    "Expire" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_cupon_codes OWNER TO postgres;

--
-- Name: resturant_cupon_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_cupon_codes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_cupon_codes_id_seq OWNER TO postgres;

--
-- Name: resturant_cupon_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_cupon_codes_id_seq OWNED BY public.resturant_cupon_codes.id;


--
-- Name: resturant_galleries; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_galleries (
    id bigint NOT NULL,
    "Image" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_galleries OWNER TO postgres;

--
-- Name: resturant_galleries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_galleries_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_galleries_id_seq OWNER TO postgres;

--
-- Name: resturant_galleries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_galleries_id_seq OWNED BY public.resturant_galleries.id;


--
-- Name: resturant_homes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_homes (
    id bigint NOT NULL,
    "Image_1" text,
    "Image_2" text,
    "Image_3" text,
    "Image_4" text,
    "Title_Image" text,
    "Arabic_Title" text,
    "English_Title" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "English_Sub_Title" text,
    "Arabic_Sub_Title" text,
    "Year" text
);


ALTER TABLE public.resturant_homes OWNER TO postgres;

--
-- Name: resturant_homes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_homes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_homes_id_seq OWNER TO postgres;

--
-- Name: resturant_homes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_homes_id_seq OWNED BY public.resturant_homes.id;


--
-- Name: resturant_index_style_i_i_s; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_index_style_i_i_s (
    id bigint NOT NULL,
    "About_Body_BG_Type" text,
    "About_Body_BG_Image" text,
    "About_Body_BG_Color" text,
    "About_Txt_Color" text,
    "Gallery_Border_Color" text,
    "Reviews_Image_1" text,
    "Reviews_Image_2" text,
    "Reviews_Nxt_Prev_Color" text,
    "Reviews_Nxt_Prev_BG" text,
    "Reviews_Nxt_Prev_Border" text,
    "Reviews_Txt_Color" text,
    "Reviews_Body_BG_Type" text,
    "Reviews_Body_BG_Image" text,
    "Reviews_Body_BG_Color" text,
    "Reservations_Body_BG_Type" text,
    "Reservations_Body_BG_Image" text,
    "Reservations_Body_BG_Color" text,
    "Reservations_Box_BG" text,
    "Reservations_Input_BG" text,
    "Reservations_Input_Color" text,
    "Reservations_Btn_Color" text,
    "Reservations_Btn_BG" text,
    "Blogs_Home_Body_BG_Type" text,
    "Blogs_Home_Body_BG_Image" text,
    "Blogs_Home_Body_BG_Color" text,
    "Blogs_Home_Box_BG_Color" text,
    "Blogs_Home_Box_Border_Color" text,
    "Blogs_Home_Txt_Color" text,
    "Blogs_Home_Txt_Hover_Color" text,
    "Blogs_Home_Btn_BG" text,
    "Blogs_Home_Btn_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_index_style_i_i_s OWNER TO postgres;

--
-- Name: resturant_index_style_i_i_s_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_index_style_i_i_s_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_index_style_i_i_s_id_seq OWNER TO postgres;

--
-- Name: resturant_index_style_i_i_s_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_index_style_i_i_s_id_seq OWNED BY public.resturant_index_style_i_i_s.id;


--
-- Name: resturant_index_style_i_s; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_index_style_i_s (
    id bigint NOT NULL,
    "Home_1_Nxt_Prev_Color" text,
    "Home_1_Nxt_Prev_BG" text,
    "Home_1_Nxt_Prev_Border" text,
    "Home_2_Image_1" text,
    "Home_2_Image_2" text,
    "Home_2_Image_Arrow" text,
    "Home_2_Number_BG" text,
    "Home_2_Image_Border" text,
    "Home_2_Number_Color" text,
    "Category_Bar_BG" text,
    "Category_Bar_Color" text,
    "Video_Section_Body_BG_Type" text,
    "Video_Section_Body_BG_Image" text,
    "Video_Section_Body_BG_Color" text,
    "Video_Section_Image_1" text,
    "Video_Section_Image_2" text,
    "Menu_Index_Body_BG_Type" text,
    "Menu_Index_Body_BG_Image" text,
    "Menu_Index_Body_BG_Color" text,
    "Menu_Index_Txt_Color" text,
    "Menu_Index_Txt_Hover_Color" text,
    "Menu_Index_Btn_BG" text,
    "Menu_Index_Btn_Txt_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Icon_Image" text
);


ALTER TABLE public.resturant_index_style_i_s OWNER TO postgres;

--
-- Name: resturant_index_style_i_s_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_index_style_i_s_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_index_style_i_s_id_seq OWNER TO postgres;

--
-- Name: resturant_index_style_i_s_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_index_style_i_s_id_seq OWNED BY public.resturant_index_style_i_s.id;


--
-- Name: resturant_menu_styles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_menu_styles (
    id bigint NOT NULL,
    "Menu_1_BG_Type" text,
    "Menu_1_BG_Image" text,
    "Menu_1_BG_Color" text,
    "Menu_1_Image" text,
    "Menu_1_Icon_Image" text,
    "Menu_1_Title" text,
    "Menu_1_Bar_BG" text,
    "Menu_1_Bar_Color" text,
    "Menu_1_Btn_BG" text,
    "Menu_1_Btn_Color" text,
    "Menu_1_Icon_Color" text,
    "Menu_1_Icon_Hover_Color" text,
    "Menu_1_Icon_Active_Color" text,
    "Menu_1_Price_Color" text,
    "Menu_1_Offer_Price_Color" text,
    "Menu_2_Gallery_Border" text,
    "Menu_2_BG_Type" text,
    "Menu_2_BG_Image" text,
    "Menu_2_BG_Color" text,
    "Menu_2_Title" text,
    "Menu_2_Category_Color" text,
    "Menu_2_Category_Hover_Color" text,
    "Menu_2_Category_Active_Color" text,
    "Menu_2_Lines_Color" text,
    "Menu_2_Btn_BG" text,
    "Menu_2_Btn_Color" text,
    "Menu_2_Name_BG" text,
    "Menu_2_Name_Color" text,
    "Menu_2_Icon_Color" text,
    "Menu_2_Icon_Hover_Color" text,
    "Menu_2_Icon_Active_Color" text,
    "Menu_2_Price_Color" text,
    "Menu_2_Offer_Price_Color" text,
    "Menu_3_BG_Type" text,
    "Menu_3_BG_Image" text,
    "Menu_3_BG_Color" text,
    "Menu_3_Image" text,
    "Menu_3_Icon_Image" text,
    "Menu_3_Title" text,
    "Menu_3_Category_Color" text,
    "Menu_3_Category_Hover_Color" text,
    "Menu_3_Category_Active_Color" text,
    "Menu_3_Box_BG" text,
    "Menu_3_Box_Color" text,
    "Menu_3_Btn_BG" text,
    "Menu_3_Btn_Color" text,
    "Menu_3_Icon_Color" text,
    "Menu_3_Icon_Hover_Color" text,
    "Menu_3_Icon_Active_Color" text,
    "Menu_3_Price_Color" text,
    "Menu_3_Offer_Price_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_menu_styles OWNER TO postgres;

--
-- Name: resturant_menu_styles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_menu_styles_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_menu_styles_id_seq OWNER TO postgres;

--
-- Name: resturant_menu_styles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_menu_styles_id_seq OWNED BY public.resturant_menu_styles.id;


--
-- Name: resturant_nav_foot_styles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_nav_foot_styles (
    id bigint NOT NULL,
    "Navbar_BG" text,
    "Navbar_Txt_Color" text,
    "Navbar_Txt_Hover_Color" text,
    "Navbar_Btn_BG" text,
    "Navbar_Btn_Color" text,
    "Navbar_Sub_Menu_BG" text,
    "Navbar_Sub_Menu_Color" text,
    "Footer_BG_Type" text,
    "Footer_BG_Color" text,
    "Footer_BG_Image" text,
    "Footer_Title_Color" text,
    "Footer_Txt_Color" text,
    "Footer_Social_Color" text,
    "Footer_Social_Hover_Color" text,
    "Footer_CopyRight_Color" text,
    "Footer_CopyRight_Company_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_nav_foot_styles OWNER TO postgres;

--
-- Name: resturant_nav_foot_styles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_nav_foot_styles_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_nav_foot_styles_id_seq OWNER TO postgres;

--
-- Name: resturant_nav_foot_styles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_nav_foot_styles_id_seq OWNED BY public.resturant_nav_foot_styles.id;


--
-- Name: resturant_privacies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_privacies (
    id bigint NOT NULL,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_privacies OWNER TO postgres;

--
-- Name: resturant_privacies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_privacies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_privacies_id_seq OWNER TO postgres;

--
-- Name: resturant_privacies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_privacies_id_seq OWNED BY public.resturant_privacies.id;


--
-- Name: resturant_reservations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_reservations (
    id bigint NOT NULL,
    "Name" text,
    "Phone" text,
    "Persons" text,
    "Date" text,
    "Time" text,
    "Message" text,
    "Approve" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_reservations OWNER TO postgres;

--
-- Name: resturant_reservations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_reservations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_reservations_id_seq OWNER TO postgres;

--
-- Name: resturant_reservations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_reservations_id_seq OWNED BY public.resturant_reservations.id;


--
-- Name: resturant_reviews; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_reviews (
    id bigint NOT NULL,
    "Image" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_reviews OWNER TO postgres;

--
-- Name: resturant_reviews_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_reviews_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_reviews_id_seq OWNER TO postgres;

--
-- Name: resturant_reviews_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_reviews_id_seq OWNED BY public.resturant_reviews.id;


--
-- Name: resturant_sliders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_sliders (
    id bigint NOT NULL,
    "Status" text,
    "Arabic_Title" text,
    "English_Title" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    "Image" text,
    "Type" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_sliders OWNER TO postgres;

--
-- Name: resturant_sliders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_sliders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_sliders_id_seq OWNER TO postgres;

--
-- Name: resturant_sliders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_sliders_id_seq OWNED BY public.resturant_sliders.id;


--
-- Name: resturant_socials; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_socials (
    id bigint NOT NULL,
    "Facebook" text,
    "Twitter" text,
    "Instagram" text,
    "Youtube" text,
    "Snapchat" text,
    "Whatsapp" text,
    "Google_Plus" text,
    "LinkedIn" text,
    "Pinterest" text,
    "Telegram" text,
    "iOS" text,
    "Android" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_socials OWNER TO postgres;

--
-- Name: resturant_socials_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_socials_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_socials_id_seq OWNER TO postgres;

--
-- Name: resturant_socials_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_socials_id_seq OWNED BY public.resturant_socials.id;


--
-- Name: resturant_styles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_styles (
    id bigint NOT NULL,
    "Font" text,
    "Home" text,
    "Menu" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Reviews" text,
    "Privacy" text,
    "Terms" text,
    "Gallery" text,
    "Blogs" text,
    "Cart" text,
    "PDF" text,
    "Reservations" text,
    "Body_BG_Type" text,
    "Modal_Txt_Color" text,
    "Modal_BG_Color" text,
    "Pagination_Active_Txt_Color" text,
    "Pagination_Active_BG_Color" text,
    "Pagination_Txt_Color" text,
    "Pagination_BG_Color" text,
    "Body_Title_Color" text,
    "Modal_Button_Txt_Color" text,
    "Modal_Button_BG_Color" text,
    "Form_Input_Txt_Color" text,
    "Form_Input_BG" text,
    "Form_Txt_Hover_Color" text,
    "Form_Txt_Color" text,
    "Form_Box_Border_Color" text,
    "Form_Box_BG" text,
    "Preloader_Circle_3_Color" text,
    "Preloader_Circle_2_Color" text,
    "Preloader_Circle_1_Color" text,
    "Form_Btn_Txt_Color" text,
    "Form_Btn_BG" text,
    "Body_BG_Image" text,
    "Body_BG_Color" text
);


ALTER TABLE public.resturant_styles OWNER TO postgres;

--
-- Name: resturant_styles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_styles_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_styles_id_seq OWNER TO postgres;

--
-- Name: resturant_styles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_styles_id_seq OWNED BY public.resturant_styles.id;


--
-- Name: resturant_sup_page_styles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_sup_page_styles (
    id bigint NOT NULL,
    "Blogs_BG_Type" text,
    "Blogs_BG_Image" text,
    "Blogs_BG_Color" text,
    "Blogs_Title_Color" text,
    "Blogs_Top_Image" text,
    "Blogs_Box_BG" text,
    "Blogs_Box_Border" text,
    "Blogs_Box_Txt_Color" text,
    "Blogs_Box_Txt_Hover_Color" text,
    "Blogs_Btn_Color" text,
    "Blogs_Btn_BG" text,
    "Blogs_Details_Box_BG" text,
    "Blogs_Details_Box_Border" text,
    "Blogs_Details_Box_Txt_Color" text,
    "Reviews_Top_Image" text,
    "Reviews_Title_Color" text,
    "Reviews_BG_Type" text,
    "Reviews_BG_Image" text,
    "Reviews_BG_Color" text,
    "Reviews_Box_BG" text,
    "Reviews_Box_Border" text,
    "Reviews_Icon_Color" text,
    "Gallery_Top_Image" text,
    "Gallery_Title_Color" text,
    "Gallery__BG_Type" text,
    "Gallery__BG_Image" text,
    "Gallery__BG_Color" text,
    "Terms_Privacy_Top_Image" text,
    "Terms_Privacy_Title_Color" text,
    "Terms_Privacy_Box_BG" text,
    "Terms_Privacy_Box_Border" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_sup_page_styles OWNER TO postgres;

--
-- Name: resturant_sup_page_styles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_sup_page_styles_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_sup_page_styles_id_seq OWNER TO postgres;

--
-- Name: resturant_sup_page_styles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_sup_page_styles_id_seq OWNED BY public.resturant_sup_page_styles.id;


--
-- Name: resturant_tables; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_tables (
    id bigint NOT NULL,
    "Table_Number" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Place_Ar" text,
    "Place_En" text,
    "Chairs_Num" text,
    "QR" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_tables OWNER TO postgres;

--
-- Name: resturant_tables_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_tables_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_tables_id_seq OWNER TO postgres;

--
-- Name: resturant_tables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_tables_id_seq OWNED BY public.resturant_tables.id;


--
-- Name: resturant_terms; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_terms (
    id bigint NOT NULL,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_terms OWNER TO postgres;

--
-- Name: resturant_terms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_terms_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_terms_id_seq OWNER TO postgres;

--
-- Name: resturant_terms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_terms_id_seq OWNED BY public.resturant_terms.id;


--
-- Name: resturant_video_sections; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.resturant_video_sections (
    id bigint NOT NULL,
    "BG_Image" text,
    "Icon" text,
    "Title_Image" text,
    "Video_Link" text,
    "Image_1" text,
    "Image_2" text,
    "Image_3" text,
    "Image_4" text,
    "Number_1" text,
    "Number_2" text,
    "Number_3" text,
    "Number_4" text,
    "Arabic_Title_1" text,
    "Arabic_Title_2" text,
    "Arabic_Title_3" text,
    "Arabic_Title_4" text,
    "English_Title_1" text,
    "English_Title_2" text,
    "English_Title_3" text,
    "English_Title_4" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.resturant_video_sections OWNER TO postgres;

--
-- Name: resturant_video_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.resturant_video_sections_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.resturant_video_sections_id_seq OWNER TO postgres;

--
-- Name: resturant_video_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.resturant_video_sections_id_seq OWNED BY public.resturant_video_sections.id;


--
-- Name: return_maintaince_bills; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_maintaince_bills (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Note" text,
    "Serial_Num" text,
    "Pattern_Image" text,
    "Time" text,
    "Payment_Method" text,
    "Password" text,
    "Pay" text,
    "Work" text,
    "Total" text,
    "Total_Cost" text,
    "Cost_Precent" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_Bf_Taxes" text,
    "Total_Taxes" text,
    "Draw" text,
    "Bill" text,
    "Company" bigint,
    "Device_Type" bigint,
    "Device_Case" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "Account" bigint,
    "Store" bigint,
    "Eng" bigint,
    "Recipient" bigint,
    "Branch" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "CustomerGroup" text,
    "Total_Talf" text
);


ALTER TABLE public.return_maintaince_bills OWNER TO postgres;

--
-- Name: return_maintaince_bills_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_maintaince_bills_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_maintaince_bills_arr_seq OWNER TO postgres;

--
-- Name: return_maintaince_bills_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_maintaince_bills_arr_seq OWNED BY public.return_maintaince_bills.arr;


--
-- Name: return_maintaince_bills_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_maintaince_bills_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_maintaince_bills_id_seq OWNER TO postgres;

--
-- Name: return_maintaince_bills_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_maintaince_bills_id_seq OWNED BY public.return_maintaince_bills.id;


--
-- Name: return_products_stores_transfers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_products_stores_transfers (
    id bigint NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "P_Code" text,
    "Price" text,
    "OldPrice" text,
    "Av_Qty" text,
    "SmallCode" text,
    "ReturnQty" text,
    "Trans_Qty" text,
    "Original_Trans_Qty" text,
    "SmallTrans_Qty" text,
    "Total" text,
    "ST_ID" text,
    "Product" text,
    "V1" text,
    "V2" text,
    "Unit" text,
    "To_Store" text,
    "CostPrice" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.return_products_stores_transfers OWNER TO postgres;

--
-- Name: return_products_stores_transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_products_stores_transfers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_products_stores_transfers_id_seq OWNER TO postgres;

--
-- Name: return_products_stores_transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_products_stores_transfers_id_seq OWNED BY public.return_products_stores_transfers.id;


--
-- Name: return_purch_bills_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_purch_bills_filter_twos (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Total_Return_Qty" text,
    "Total_Return_Value" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Discount" text,
    "Purchase" text,
    "Pay" text,
    "Payment_Method" text,
    "User" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Refernce_Number" text,
    "Safe" text,
    "Vendor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "Ship" text,
    "Later_Due" text,
    "Type" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.return_purch_bills_filter_twos OWNER TO postgres;

--
-- Name: return_purch_bills_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_purch_bills_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_purch_bills_filter_twos_id_seq OWNER TO postgres;

--
-- Name: return_purch_bills_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_purch_bills_filter_twos_id_seq OWNED BY public.return_purch_bills_filter_twos.id;


--
-- Name: return_purch_bills_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_purch_bills_filters (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Total_Return_Qty" text,
    "Total_Return_Value" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Discount" text,
    "Purchase" text,
    "Pay" text,
    "Payment_Method" text,
    "User" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Refernce_Number" text,
    "Safe" text,
    "Vendor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "Ship" text,
    "Later_Due" text,
    "Type" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.return_purch_bills_filters OWNER TO postgres;

--
-- Name: return_purch_bills_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_purch_bills_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_purch_bills_filters_id_seq OWNER TO postgres;

--
-- Name: return_purch_bills_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_purch_bills_filters_id_seq OWNED BY public.return_purch_bills_filters.id;


--
-- Name: return_purch_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_purch_products (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "Return_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Total_Tax" text,
    "Exp_Date" text,
    "Store" bigint NOT NULL,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Return" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Date" text,
    "Code" text,
    "Refernce_Number" text,
    "Safe" bigint,
    "Vendor" bigint,
    "Delegate" bigint,
    "Coin" bigint,
    "User" bigint,
    "Cost_Center" bigint,
    "Type" text,
    "Ship" bigint,
    "TDiscount" text,
    "TypeEn" text
);


ALTER TABLE public.return_purch_products OWNER TO postgres;

--
-- Name: return_purch_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_purch_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_purch_products_id_seq OWNER TO postgres;

--
-- Name: return_purch_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_purch_products_id_seq OWNED BY public.return_purch_products.id;


--
-- Name: return_purches; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_purches (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Total_Return_Qty" text NOT NULL,
    "Total_Return_Value" text NOT NULL,
    "Total_BF_Taxes" text NOT NULL,
    "Total_Taxes" text NOT NULL,
    "Purchase" bigint NOT NULL,
    "User" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Pay" text,
    "Payment_Method" text,
    "TDiscount" text,
    "Total_Discount" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Refernce_Number" text,
    "Later_Due" text,
    "Cost_Center" bigint,
    "Safe" bigint,
    "Vendor" bigint,
    "Delegate" bigint,
    "Store" bigint,
    "Coin" bigint,
    arr bigint,
    "Ship" bigint,
    "Delete" text DEFAULT 0,
    "Edit" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0,
    "Reason" text
);


ALTER TABLE public.return_purches OWNER TO postgres;

--
-- Name: return_purches_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_purches_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_purches_arr_seq OWNER TO postgres;

--
-- Name: return_purches_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_purches_arr_seq OWNED BY public.return_purches.arr;


--
-- Name: return_purches_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_purches_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_purches_id_seq OWNER TO postgres;

--
-- Name: return_purches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_purches_id_seq OWNED BY public.return_purches.id;


--
-- Name: return_resons; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_resons (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.return_resons OWNER TO postgres;

--
-- Name: return_resons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_resons_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_resons_id_seq OWNER TO postgres;

--
-- Name: return_resons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_resons_id_seq OWNED BY public.return_resons.id;


--
-- Name: return_sales; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_sales (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Total_Return_Qty" text NOT NULL,
    "Total_Return_Value" text NOT NULL,
    "Total_BF_Taxes" text NOT NULL,
    "Total_Taxes" text NOT NULL,
    "Sales" bigint NOT NULL,
    "User" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Pay" text,
    "Payment_Method" text,
    "TDiscount" text,
    "Total_Discount" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Refernce_Number" text,
    "Executor" text,
    "Later_Due" text,
    "InstallCompany" text,
    "Delivery" text,
    "TaxBill" text,
    "TaxCode" text,
    uuid text,
    "longId" text,
    "hashKey" text,
    "submissionId" text,
    "Sent" text,
    "Safe" bigint,
    "Cost_Center" bigint,
    "Client" bigint,
    "Delegate" bigint,
    "Store" bigint,
    "Coin" bigint,
    arr bigint,
    "Ship" bigint,
    "Edit" text,
    "Delete" text,
    "Edit_New_Code" text,
    "Current_Credit" text,
    "Cost" text,
    "TotalCost" text,
    "Reason" text
);


ALTER TABLE public.return_sales OWNER TO postgres;

--
-- Name: return_sales_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_sales_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_sales_arr_seq OWNER TO postgres;

--
-- Name: return_sales_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_sales_arr_seq OWNED BY public.return_sales.arr;


--
-- Name: return_sales_bills_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_sales_bills_filter_twos (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Total_Return_Qty" text,
    "Total_Return_Value" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Discount" text,
    "Sales" text,
    "Pay" text,
    "Payment_Method" text,
    "User" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Refernce_Number" text,
    "Safe" text,
    "Client" text,
    "Executor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "Ship" text,
    "Later_Due" text,
    "InstallCompany" text,
    "Delivery" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ID" text,
    "Type" text
);


ALTER TABLE public.return_sales_bills_filter_twos OWNER TO postgres;

--
-- Name: return_sales_bills_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_sales_bills_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_sales_bills_filter_twos_id_seq OWNER TO postgres;

--
-- Name: return_sales_bills_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_sales_bills_filter_twos_id_seq OWNED BY public.return_sales_bills_filter_twos.id;


--
-- Name: return_sales_bills_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_sales_bills_filters (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Total_Return_Qty" text,
    "Total_Return_Value" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Discount" text,
    "Sales" text,
    "Pay" text,
    "Payment_Method" text,
    "User" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Refernce_Number" text,
    "Safe" text,
    "Client" text,
    "Executor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "Ship" text,
    "Later_Due" text,
    "InstallCompany" text,
    "Delivery" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Type" text,
    "ID" text
);


ALTER TABLE public.return_sales_bills_filters OWNER TO postgres;

--
-- Name: return_sales_bills_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_sales_bills_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_sales_bills_filters_id_seq OWNER TO postgres;

--
-- Name: return_sales_bills_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_sales_bills_filters_id_seq OWNED BY public.return_sales_bills_filters.id;


--
-- Name: return_sales_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_sales_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_sales_id_seq OWNER TO postgres;

--
-- Name: return_sales_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_sales_id_seq OWNED BY public.return_sales.id;


--
-- Name: return_sales_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_sales_products (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Original_Qty" text,
    "Recived_Qty" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Tax" text,
    "Total_Bf_Tax" text,
    "Total" text,
    "Total_Tax" text,
    "Exp_Date" text,
    "Store" bigint,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Unit" bigint,
    "Return" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Code" text,
    "Type" text,
    "Cost_Center" bigint,
    "User" bigint,
    "Delegate" bigint,
    "Executor" bigint,
    "Safe" bigint,
    "Coin" bigint,
    "Date" text,
    "Client" bigint,
    "Refernce_Number" text,
    "Ship" bigint,
    "Patch_Number" text,
    "CoinCode" text,
    "CoinPrice" text,
    "CoinRate" text,
    "AmountEGP" text,
    "DiscountAmount" text,
    "TaxType" text,
    "TaxAmount" text,
    "TaxSubType" text,
    "TaxRate" text,
    "TotalBill" text,
    "SalesTotal" text,
    "NetTotal" text
);


ALTER TABLE public.return_sales_products OWNER TO postgres;

--
-- Name: return_sales_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_sales_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_sales_products_id_seq OWNER TO postgres;

--
-- Name: return_sales_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_sales_products_id_seq OWNED BY public.return_sales_products.id;


--
-- Name: return_stors_transfers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_stors_transfers (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Total" text,
    "TotalQty" text,
    "Note" text,
    "From_Store" text,
    "To_Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Status" text,
    "Ship" text,
    "CostShip" text,
    "RecivedShip" text,
    "OldQty" text,
    "Edit" text,
    "Delegate" text,
    "Time" text,
    "Branch" text,
    "Total_Cost" text,
    "TypeTransfer" text,
    "Cost_Store" text,
    "OriginalID" text,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.return_stors_transfers OWNER TO postgres;

--
-- Name: return_stors_transfers_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_stors_transfers_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_stors_transfers_arr_seq OWNER TO postgres;

--
-- Name: return_stors_transfers_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_stors_transfers_arr_seq OWNED BY public.return_stors_transfers.arr;


--
-- Name: return_stors_transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_stors_transfers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_stors_transfers_id_seq OWNER TO postgres;

--
-- Name: return_stors_transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_stors_transfers_id_seq OWNED BY public.return_stors_transfers.id;


--
-- Name: return_without_bills; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.return_without_bills (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Payment_Method" text,
    "Status" text,
    "Vendor_Bill_Date" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Total_Cost" text,
    "Pay" text,
    "Safe" text,
    "Vendor" text,
    "Deficit_Account" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Due_Date" text,
    "Later_Due" text,
    "TaxBill" text,
    "TaxCode" text,
    "Time" text,
    "Branch" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" text DEFAULT 0,
    "Current_Credit" text
);


ALTER TABLE public.return_without_bills OWNER TO postgres;

--
-- Name: return_without_bills_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_without_bills_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_without_bills_arr_seq OWNER TO postgres;

--
-- Name: return_without_bills_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_without_bills_arr_seq OWNED BY public.return_without_bills."Code";


--
-- Name: return_without_bills_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.return_without_bills_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_without_bills_id_seq OWNER TO postgres;

--
-- Name: return_without_bills_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.return_without_bills_id_seq OWNED BY public.return_without_bills.id;


--
-- Name: role_has_permissions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.role_has_permissions (
    permission_id bigint NOT NULL,
    role_id bigint NOT NULL
);


ALTER TABLE public.role_has_permissions OWNER TO postgres;

--
-- Name: roles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.roles (
    id bigint NOT NULL,
    name character varying(191) NOT NULL,
    guard_name character varying(191) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "nameEn" text
);


ALTER TABLE public.roles OWNER TO postgres;

--
-- Name: roles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.roles_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.roles_id_seq OWNER TO postgres;

--
-- Name: roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.roles_id_seq OWNED BY public.roles.id;


--
-- Name: room_reservations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.room_reservations (
    id bigint NOT NULL,
    "Date" text,
    "Room" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.room_reservations OWNER TO postgres;

--
-- Name: room_reservations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.room_reservations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.room_reservations_id_seq OWNER TO postgres;

--
-- Name: room_reservations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.room_reservations_id_seq OWNED BY public.room_reservations.id;


--
-- Name: rooms; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.rooms (
    id bigint NOT NULL,
    "Code" text,
    "Floor" text,
    "Bulding_Name" text,
    "Adults_Num" text,
    "Childs_Num" text,
    "Beds_Num" text,
    "Desc" text,
    "Price" text,
    "Reserved" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "RoomsType" text,
    "DescEn" text
);


ALTER TABLE public.rooms OWNER TO postgres;

--
-- Name: rooms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.rooms_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.rooms_id_seq OWNER TO postgres;

--
-- Name: rooms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.rooms_id_seq OWNED BY public.rooms.id;


--
-- Name: rooms_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.rooms_types (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.rooms_types OWNER TO postgres;

--
-- Name: rooms_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.rooms_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.rooms_types_id_seq OWNER TO postgres;

--
-- Name: rooms_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.rooms_types_id_seq OWNED BY public.rooms_types.id;


--
-- Name: rqst_transports; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.rqst_transports (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Arrival_Date" text,
    "Arrival_Time" text,
    "Reference_Num" text,
    "Weight" text,
    "Note" text,
    "Payment_Method" text,
    "Insurance" text,
    "Pay" text,
    "Value" text,
    "Type" text,
    "Sender_Name" text,
    "Sender_Governorate" text,
    "Sender_City" text,
    "Sender_Place" text,
    "Sender_Address" text,
    "Sender_Phone1" text,
    "Sender_Phone2" text,
    "Sender_Location" text,
    "Receiver_Name" text,
    "Receiver_Governorate" text,
    "Receiver_City" text,
    "Receiver_Place" text,
    "Receiver_Address" text,
    "Receiver_Phone1" text,
    "Receiver_Phone2" text,
    "Receiver_Location" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Cost_Center" text,
    "Driver" text,
    "Car" text,
    "Driver_Precent" text,
    "Driver_Value" text,
    "Contractor" text,
    "Contractor_Precent" text,
    "Contractor_Value" text,
    "Expenses_Precent" text,
    "Expenses_Value" text,
    "The_Net" text,
    "Sender" text,
    "Received" text,
    "Transfer" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "User" text
);


ALTER TABLE public.rqst_transports OWNER TO postgres;

--
-- Name: rqst_transports_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.rqst_transports_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.rqst_transports_arr_seq OWNER TO postgres;

--
-- Name: rqst_transports_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.rqst_transports_arr_seq OWNED BY public.rqst_transports."Code";


--
-- Name: rqst_transports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.rqst_transports_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.rqst_transports_id_seq OWNER TO postgres;

--
-- Name: rqst_transports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.rqst_transports_id_seq OWNED BY public.rqst_transports.id;


--
-- Name: safe_transfer_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.safe_transfer_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Amount" text,
    "From_Safe" text,
    "To_Safe" text,
    "User" text,
    "Coin" text,
    "Cost_Center" text,
    "Note" text,
    "Delegate" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text
);


ALTER TABLE public.safe_transfer_columns OWNER TO postgres;

--
-- Name: safe_transfer_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.safe_transfer_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.safe_transfer_columns_id_seq OWNER TO postgres;

--
-- Name: safe_transfer_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.safe_transfer_columns_id_seq OWNED BY public.safe_transfer_columns.id;


--
-- Name: safe_transfer_columns_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.safe_transfer_columns_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Amount" text,
    "From_Safe" text,
    "To_Safe" text,
    "User" text,
    "Coin" text,
    "Cost_Center" text,
    "Note" text,
    "Delegate" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text
);


ALTER TABLE public.safe_transfer_columns_sechdules OWNER TO postgres;

--
-- Name: safe_transfer_columns_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.safe_transfer_columns_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.safe_transfer_columns_sechdules_id_seq OWNER TO postgres;

--
-- Name: safe_transfer_columns_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.safe_transfer_columns_sechdules_id_seq OWNED BY public.safe_transfer_columns_sechdules.id;


--
-- Name: safe_transfer_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.safe_transfer_filter_twos (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Amount" text,
    "Note" text,
    "From_Safe" text,
    "To_Safe" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Status" text,
    "File" text,
    "OldAmount" text,
    "Edit" text,
    "Delegate" text,
    "Time" text,
    "ID" text,
    "Type" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text
);


ALTER TABLE public.safe_transfer_filter_twos OWNER TO postgres;

--
-- Name: safe_transfer_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.safe_transfer_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.safe_transfer_filter_twos_id_seq OWNER TO postgres;

--
-- Name: safe_transfer_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.safe_transfer_filter_twos_id_seq OWNED BY public.safe_transfer_filter_twos.id;


--
-- Name: safe_transfer_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.safe_transfer_filters (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Amount" text,
    "Note" text,
    "From_Safe" text,
    "To_Safe" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Status" text,
    "File" text,
    "OldAmount" text,
    "Edit" text,
    "Delegate" text,
    "Time" text,
    "ID" text,
    "Type" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text
);


ALTER TABLE public.safe_transfer_filters OWNER TO postgres;

--
-- Name: safe_transfer_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.safe_transfer_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.safe_transfer_filters_id_seq OWNER TO postgres;

--
-- Name: safe_transfer_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.safe_transfer_filters_id_seq OWNED BY public.safe_transfer_filters.id;


--
-- Name: safe_transfers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.safe_transfers (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Amount" text NOT NULL,
    "Note" text,
    "From_Safe" bigint NOT NULL,
    "To_Safe" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Status" text DEFAULT 0,
    "File" text,
    "OldAmount" text,
    "Edit" text,
    "Time" text,
    "Delegate" bigint,
    arr bigint,
    "Branch" bigint
);


ALTER TABLE public.safe_transfers OWNER TO postgres;

--
-- Name: safe_transfers_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.safe_transfers_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.safe_transfers_arr_seq OWNER TO postgres;

--
-- Name: safe_transfers_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.safe_transfers_arr_seq OWNED BY public.safe_transfers."Code";


--
-- Name: safe_transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.safe_transfers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.safe_transfers_id_seq OWNER TO postgres;

--
-- Name: safe_transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.safe_transfers_id_seq OWNED BY public.safe_transfers.id;


--
-- Name: safes_banks; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.safes_banks (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Name" text NOT NULL,
    "Type" text NOT NULL,
    "Note" text,
    "Account" bigint NOT NULL,
    "User" bigint NOT NULL,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text,
    "Service_Fee" text,
    "NameEn" text
);


ALTER TABLE public.safes_banks OWNER TO postgres;

--
-- Name: safes_banks_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.safes_banks_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.safes_banks_arr_seq OWNER TO postgres;

--
-- Name: safes_banks_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.safes_banks_arr_seq OWNED BY public.safes_banks."Code";


--
-- Name: safes_banks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.safes_banks_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.safes_banks_id_seq OWNER TO postgres;

--
-- Name: safes_banks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.safes_banks_id_seq OWNED BY public.safes_banks.id;


--
-- Name: sales; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Payment_Method" text NOT NULL,
    "Status" text NOT NULL,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    presenter text,
    annual_interest text,
    monthly_installment text,
    "Years_Number" text,
    total text,
    "installment_Num" text,
    "Date_First_installment" text,
    "Quote" text,
    "SalesOrder" text,
    "Safe" bigint NOT NULL,
    "Client" bigint NOT NULL,
    "Delegate" bigint,
    "Executor" bigint,
    "Store" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Ship" bigint,
    arr bigint,
    "Check_Type" bigint,
    "Check_Number" text,
    "Due_Date" text,
    "ShipStatus" text DEFAULT 0,
    "Cash" text,
    "Visa" text,
    "Sale_Type" text,
    "Hold" text,
    "Shift_Code" text,
    emp bigint,
    "Store_Code" text,
    "Later_Due" text,
    "Later_Collection" text DEFAULT 1,
    "Client_Address" text,
    "Delivery" text,
    "Delivery_Status" text,
    "Sale_User" text,
    "Sent" text,
    "TaxBill" text DEFAULT 0,
    "TaxCode" text,
    "ProfitPrecent" text,
    "TaxOnTotal" text,
    "TaxOnTotalType" text,
    "ProfitTax" text DEFAULT 0,
    "ContractNumber" text,
    "PayFees" text,
    "ServiceFee" text,
    "CompanyPrecent" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "Total_Cost" text,
    uuid text,
    "longId" text,
    "hashKey" text,
    "submissionId" text,
    "statusBill" text,
    "DiscountTax" text,
    "RecivedDate" text,
    "InstallCompany" bigint,
    "File" text,
    "ResturantOrderType" text,
    "DeliveryTime" text,
    "RecivedOrderTime" text,
    "RecivedOrder" text,
    "KitchenEndTime" text,
    "KitchenEnd" text,
    "Witer" text,
    "TakeawayTime" text,
    "TakeawayStatus" text,
    "Table" bigint,
    "Total_Wight_Bill" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text,
    "Total_Net" text,
    "Residual" text,
    "Current_Credit" text,
    "DiscountBill" text DEFAULT 0,
    "ServiceType" text,
    "ServiceFees" text,
    "ServiceValue" text,
    bill_lat text,
    bill_lng text,
    "App" bigint,
    "Shipping_Price" text,
    "Warranty_Expire_Date" text,
    "Use_Qty" text DEFAULT 0
);


ALTER TABLE public.sales OWNER TO postgres;

--
-- Name: sales_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_arr_seq OWNER TO postgres;

--
-- Name: sales_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_arr_seq OWNED BY public.sales.arr;


--
-- Name: sales_bills_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_bills_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "ShiftCode" text,
    "Executor" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Av_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Total_BF_Tax" text,
    "Tax" text,
    "Total" text,
    "Group" text,
    "Brand" text,
    "Exp_Date" text,
    "Product_Store" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Client" text,
    "Rate" text,
    "Name_Width" text
);


ALTER TABLE public.sales_bills_columns OWNER TO postgres;

--
-- Name: sales_bills_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_bills_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_bills_columns_id_seq OWNER TO postgres;

--
-- Name: sales_bills_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_bills_columns_id_seq OWNED BY public.sales_bills_columns.id;


--
-- Name: sales_bills_columns_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_bills_columns_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "ShiftCode" text,
    "Executor" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Product_Code" text,
    "Product_Name" text,
    "Unit" text,
    "Av_Qty" text,
    "Qty" text,
    "Price" text,
    "Discount" text,
    "Total_BF_Tax" text,
    "Tax" text,
    "Total" text,
    "Group" text,
    "Brand" text,
    "Exp_Date" text,
    "Product_Store" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Client" text,
    "Rate" text,
    "Name_Width" text
);


ALTER TABLE public.sales_bills_columns_sechdules OWNER TO postgres;

--
-- Name: sales_bills_columns_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_bills_columns_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_bills_columns_sechdules_id_seq OWNER TO postgres;

--
-- Name: sales_bills_columns_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_bills_columns_sechdules_id_seq OWNED BY public.sales_bills_columns_sechdules.id;


--
-- Name: sales_bills_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_bills_filter_twos (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Payment_Method" text,
    "Status" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Safe" text,
    "Client" text,
    "Executor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Ship" text,
    "Shift_Code" text,
    "Later_Due" text,
    "Later_Collection" text,
    "Delivery" text,
    "ProfitPrecent" text,
    "TaxOnTotal" text,
    "TaxOnTotalType" text,
    "ProfitTax" text,
    "InstallCompany" text,
    "ServiceFee" text,
    "CompanyPrecent" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ID" text,
    "Type" text
);


ALTER TABLE public.sales_bills_filter_twos OWNER TO postgres;

--
-- Name: sales_bills_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_bills_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_bills_filter_twos_id_seq OWNER TO postgres;

--
-- Name: sales_bills_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_bills_filter_twos_id_seq OWNED BY public.sales_bills_filter_twos.id;


--
-- Name: sales_bills_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_bills_filters (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Payment_Method" text,
    "Status" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    "Safe" text,
    "Client" text,
    "Executor" text,
    "Delegate" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Ship" text,
    "Shift_Code" text,
    "Later_Due" text,
    "Later_Collection" text,
    "Delivery" text,
    "ProfitPrecent" text,
    "TaxOnTotal" text,
    "TaxOnTotalType" text,
    "ProfitTax" text,
    "InstallCompany" text,
    "ServiceFee" text,
    "CompanyPrecent" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Type" text,
    "ID" text
);


ALTER TABLE public.sales_bills_filters OWNER TO postgres;

--
-- Name: sales_bills_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_bills_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_bills_filters_id_seq OWNER TO postgres;

--
-- Name: sales_bills_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_bills_filters_id_seq OWNED BY public.sales_bills_filters.id;


--
-- Name: sales_contracts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_contracts (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "System" text,
    "Unit" text,
    "Client" text,
    "Delegate" text,
    "Contract_Num" text,
    "Value" text,
    "Deposit" text,
    "Residual" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Recipt" text
);


ALTER TABLE public.sales_contracts OWNER TO postgres;

--
-- Name: sales_contracts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_contracts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_contracts_id_seq OWNER TO postgres;

--
-- Name: sales_contracts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_contracts_id_seq OWNED BY public.sales_contracts.id;


--
-- Name: sales_default_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_default_data (
    id bigint NOT NULL,
    "Payment_Method" text,
    "Status" text,
    "V_and_C" text,
    "Mainus" text,
    "Price_Sale" text,
    "Safe" bigint,
    "Client" bigint,
    "Delegate" bigint,
    "Store" bigint,
    "Coin" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Brand" text,
    "Group" text,
    "English_Name" text,
    "Expire" text,
    "Draw" text,
    "Shift_Pass" text,
    "Empp" text,
    "Discount" text,
    "Delivery" text,
    "Execute_Precent" text,
    "StoresQty" text,
    "DelegateEmp" text,
    "TaxType" text,
    "DiscountTaxShow" text,
    "SalesOrderType" text,
    "ECommercceSaleType" text,
    "Kitchen_Order" text,
    "Waiter" text,
    "Hall_Service_Type" text,
    "Hall_Service_Precent" text,
    "CountryResturantWebsite" text,
    "Bank" text,
    "Country" text,
    "SalesLowCostPrice" text,
    "ShowJobOrders" text,
    "LimitSalesQty" text,
    "Total_Wight_Bill" text,
    "Duplicate_Items" text,
    "ExecuteEmp" text,
    "Hide_Product" text,
    "Choice_Collector_POS" text,
    "Hide_Discount_POS" text,
    "Hide_Edit_Delete" text,
    "Daily_Clients" text,
    "Location_Conditon" text,
    "Show_Image_Print" text,
    "InstallmentSystem" text DEFAULT 0,
    "Ecommerce_Sales" text DEFAULT 1,
    "Use_Max_Discount_Group" text,
    "ResturantDeliveryDirect" text,
    "Quote_Expire_Date" text,
    "Quote_Location" text,
    "Quote_Desc" text,
    "Quote_Care" text,
    "Quote_Email" text,
    "Quote_Phone" text,
    "Warranty_Expire_Date" text,
    "Dont_Use_Qty_POS" text,
    "Pro_Lenght_Show" text,
    "Pro_Height_Show" text,
    "Pro_Num_Show" text,
    "Pro_Cost_Center_Show" text
);


ALTER TABLE public.sales_default_data OWNER TO postgres;

--
-- Name: sales_default_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_default_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_default_data_id_seq OWNER TO postgres;

--
-- Name: sales_default_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_default_data_id_seq OWNED BY public.sales_default_data.id;


--
-- Name: sales_fifo_qties; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_fifo_qties (
    id bigint NOT NULL,
    "Sales_Qty" text,
    "Sales_ID" text,
    "Fifo_ID" text,
    "Store" text,
    "Product" text,
    "Cost_Price" text,
    "Purchases_Date" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sales_fifo_qties OWNER TO postgres;

--
-- Name: sales_fifo_qties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_fifo_qties_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_fifo_qties_id_seq OWNER TO postgres;

--
-- Name: sales_fifo_qties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_fifo_qties_id_seq OWNED BY public.sales_fifo_qties.id;


--
-- Name: sales_gifts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_gifts (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Total_Cost" text,
    "Client" text,
    "Store" text,
    "Coin" text,
    "Cost_Center" text,
    "Edit" text DEFAULT '0'::text,
    "Delete" text DEFAULT '0'::text,
    "Edit_New_Code" text,
    "User" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Account" text
);


ALTER TABLE public.sales_gifts OWNER TO postgres;

--
-- Name: sales_gifts_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_gifts_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_gifts_arr_seq OWNER TO postgres;

--
-- Name: sales_gifts_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_gifts_arr_seq OWNED BY public.sales_gifts."Code";


--
-- Name: sales_gifts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_gifts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_gifts_id_seq OWNER TO postgres;

--
-- Name: sales_gifts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_gifts_id_seq OWNED BY public.sales_gifts.id;


--
-- Name: sales_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_id_seq OWNER TO postgres;

--
-- Name: sales_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_id_seq OWNED BY public.sales.id;


--
-- Name: sales_maint_fifo_qties; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_maint_fifo_qties (
    id bigint NOT NULL,
    "Sales_Qty" text,
    "Sales_ID" text,
    "Fifo_ID" text,
    "Store" text,
    "Product" text,
    "Cost_Price" text,
    "Purchases_Date" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sales_maint_fifo_qties OWNER TO postgres;

--
-- Name: sales_maint_fifo_qties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_maint_fifo_qties_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_maint_fifo_qties_id_seq OWNER TO postgres;

--
-- Name: sales_maint_fifo_qties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_maint_fifo_qties_id_seq OWNED BY public.sales_maint_fifo_qties.id;


--
-- Name: sales_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_orders (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Payment_Method" text NOT NULL,
    "Status" text NOT NULL,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    "Total_Discount" text,
    "Total_BF_Taxes" text,
    "Total_Taxes" text,
    "Total_Price" text,
    "Pay" text,
    presenter text,
    annual_interest text,
    monthly_installment text,
    "Years_Number" text,
    total text,
    "installment_Num" text,
    "Date_First_installment" text,
    "Quote" text,
    "Safe" bigint NOT NULL,
    "Client" bigint NOT NULL,
    "Delegate" bigint,
    "Executor" bigint,
    "Store" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ToSales" text DEFAULT 0,
    "Hold" text DEFAULT 0,
    "Later_Due" text,
    "Sale_Date" text,
    "CuponCode" text,
    "Shipping" text,
    "Delivery_Status" text,
    "Order_Type" text,
    "Name" text,
    "Email" text,
    "Phone" text,
    "OtherPhone" text,
    "Address_Name" text,
    "Special_MarkAdd" text,
    "StreetAdd" text,
    "BulidingAdd" text,
    "FloorAdd" text,
    "FlatAdd" text,
    "Governrate" text,
    "City" text,
    "Place" text,
    "LocationAdd" text,
    "Address_DetailsAdd" text,
    "ProfitPrecent" text,
    "InstallCompany" text,
    "ContractNumber" text,
    "PayFees" text,
    "ServiceFee" text,
    "CompanyPrecent" text,
    "Cancel_Order" text,
    "Time" text,
    "Delegate_Recived" text,
    "Delegate_Recived_Time" text,
    "To_Sales_Time" text,
    "Cancel_Order_Time" text,
    "Hold_Qty" text,
    "ResturantOrderType" text,
    "DeliveryTime" text,
    "RecivedOrderTime" text,
    "RecivedOrder" text,
    "KitchenEndTime" text,
    "KitchenEnd" text,
    "Witer" text,
    "TakeawayStatus" text,
    "TakeawayTime" text,
    "Table" bigint,
    "Total_Wight_Bill" text,
    "TaxBill" text,
    "TaxCode" text,
    "TaxOnTotal" text,
    "TaxOnTotalType" text,
    "Check_Type" text,
    "Due_Date" text,
    "Check_Number" text,
    "Shift_Code" text,
    "Client_Address" text,
    "Delivery" text,
    "ProfitTax" text,
    "Branch" text,
    "CustomerGroup" text,
    "Total_Cost" text,
    "File" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0,
    "Total_Net" text,
    "Residual" text,
    "DiscountTax" text,
    "Current_Credit" text,
    "Ship" text,
    "DiscountBill" text DEFAULT 0,
    "Shipping_Price" text
);


ALTER TABLE public.sales_orders OWNER TO postgres;

--
-- Name: sales_orders_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_orders_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_orders_arr_seq OWNER TO postgres;

--
-- Name: sales_orders_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_orders_arr_seq OWNED BY public.sales_orders.arr;


--
-- Name: sales_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_orders_id_seq OWNER TO postgres;

--
-- Name: sales_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_orders_id_seq OWNED BY public.sales_orders.id;


--
-- Name: sales_petrols; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_petrols (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Note" text,
    "Counter_Name" text,
    "Pervious_Read" text,
    "Petrol_Name" text,
    "Current_Raed" text,
    "Value" text,
    "Total" text,
    "Consumption" text,
    "Cash" text,
    "Calibers" text,
    "Counter" bigint,
    "Coin" bigint,
    "Safe" bigint,
    "Store" bigint,
    "Recipient" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sales_petrols OWNER TO postgres;

--
-- Name: sales_petrols_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_petrols_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_petrols_arr_seq OWNER TO postgres;

--
-- Name: sales_petrols_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_petrols_arr_seq OWNED BY public.sales_petrols.arr;


--
-- Name: sales_petrols_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_petrols_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_petrols_id_seq OWNER TO postgres;

--
-- Name: sales_petrols_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_petrols_id_seq OWNED BY public.sales_petrols.id;


--
-- Name: sales_serial; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_serial
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_serial OWNER TO postgres;

--
-- Name: sales_subscribes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sales_subscribes (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Payment_Method" text,
    "Later_Due" text,
    "Product_Numbers" text,
    "Total_Price" text,
    "Notes" text,
    "Coin" bigint,
    "Delegate" bigint,
    "Account" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Safe" bigint,
    "Delete" text DEFAULT 0,
    "Edit" text DEFAULT 0,
    "Edit_New_Code" text,
    "Current_Credit" text
);


ALTER TABLE public.sales_subscribes OWNER TO postgres;

--
-- Name: sales_subscribes_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_subscribes_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_subscribes_arr_seq OWNER TO postgres;

--
-- Name: sales_subscribes_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_subscribes_arr_seq OWNED BY public.sales_subscribes.arr;


--
-- Name: sales_subscribes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sales_subscribes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sales_subscribes_id_seq OWNER TO postgres;

--
-- Name: sales_subscribes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sales_subscribes_id_seq OWNED BY public.sales_subscribes.id;


--
-- Name: scientific_materials; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.scientific_materials (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.scientific_materials OWNER TO postgres;

--
-- Name: scientific_materials_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.scientific_materials_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.scientific_materials_id_seq OWNER TO postgres;

--
-- Name: scientific_materials_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.scientific_materials_id_seq OWNED BY public.scientific_materials.id;


--
-- Name: secretariat_export_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.secretariat_export_goods (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Note" text,
    "Product_Numbers" text NOT NULL,
    "Total_Qty" text NOT NULL,
    "Account" bigint NOT NULL,
    "Store" bigint NOT NULL,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Status" text DEFAULT 0,
    "StoreGoods" text,
    "Total_Recived_Qty" text,
    "Total_Price" text,
    "Draw" text,
    "Coin" text,
    "Safe" text
);


ALTER TABLE public.secretariat_export_goods OWNER TO postgres;

--
-- Name: secretariat_export_goods_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.secretariat_export_goods_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.secretariat_export_goods_arr_seq OWNER TO postgres;

--
-- Name: secretariat_export_goods_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.secretariat_export_goods_arr_seq OWNED BY public.secretariat_export_goods."Code";


--
-- Name: secretariat_export_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.secretariat_export_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.secretariat_export_goods_id_seq OWNER TO postgres;

--
-- Name: secretariat_export_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.secretariat_export_goods_id_seq OWNED BY public.secretariat_export_goods.id;


--
-- Name: secretariat_import_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.secretariat_import_goods (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Note" text,
    "Product_Numbers" text NOT NULL,
    "Total_Qty" text NOT NULL,
    "Account" bigint NOT NULL,
    "Store" bigint NOT NULL,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.secretariat_import_goods OWNER TO postgres;

--
-- Name: secretariat_import_goods_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.secretariat_import_goods_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.secretariat_import_goods_arr_seq OWNER TO postgres;

--
-- Name: secretariat_import_goods_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.secretariat_import_goods_arr_seq OWNED BY public.secretariat_import_goods.arr;


--
-- Name: secretariat_import_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.secretariat_import_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.secretariat_import_goods_id_seq OWNER TO postgres;

--
-- Name: secretariat_import_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.secretariat_import_goods_id_seq OWNED BY public.secretariat_import_goods.id;


--
-- Name: secretariat_qties; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.secretariat_qties (
    id bigint NOT NULL,
    "Product_Code" text NOT NULL,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V_Name" text,
    "VV_Name" text,
    "Qty" text,
    "Product" bigint,
    "V1" bigint,
    "V2" bigint,
    "Store" bigint NOT NULL,
    "Unit" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "PP_Code" text,
    "PPP_Code" text,
    "PPPP_Code" text
);


ALTER TABLE public.secretariat_qties OWNER TO postgres;

--
-- Name: secretariat_qties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.secretariat_qties_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.secretariat_qties_id_seq OWNER TO postgres;

--
-- Name: secretariat_qties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.secretariat_qties_id_seq OWNED BY public.secretariat_qties.id;


--
-- Name: secretariat_stores; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.secretariat_stores (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Account" text
);


ALTER TABLE public.secretariat_stores OWNER TO postgres;

--
-- Name: secretariat_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.secretariat_stores_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.secretariat_stores_id_seq OWNER TO postgres;

--
-- Name: secretariat_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.secretariat_stores_id_seq OWNED BY public.secretariat_stores.id;


--
-- Name: select_a_p_i_s; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.select_a_p_i_s (
    id bigint NOT NULL,
    id_ text NOT NULL,
    name text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.select_a_p_i_s OWNER TO postgres;

--
-- Name: select_a_p_i_s_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.select_a_p_i_s_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.select_a_p_i_s_id_seq OWNER TO postgres;

--
-- Name: select_a_p_i_s_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.select_a_p_i_s_id_seq OWNED BY public.select_a_p_i_s.id;


--
-- Name: server_d_b_s; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.server_d_b_s (
    id bigint NOT NULL,
    "DB_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.server_d_b_s OWNER TO postgres;

--
-- Name: server_d_b_s_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.server_d_b_s_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.server_d_b_s_id_seq OWNER TO postgres;

--
-- Name: server_d_b_s_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.server_d_b_s_id_seq OWNED BY public.server_d_b_s.id;


--
-- Name: services_reals; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.services_reals (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.services_reals OWNER TO postgres;

--
-- Name: services_reals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.services_reals_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.services_reals_id_seq OWNER TO postgres;

--
-- Name: services_reals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.services_reals_id_seq OWNED BY public.services_reals.id;


--
-- Name: settlements; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.settlements (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Total_Dificit" text NOT NULL,
    "Total_Excess" text NOT NULL,
    "Total_Dificit_Price" text NOT NULL,
    "Total_Excess_Price" text NOT NULL,
    "Inv_ID" bigint,
    "Account_Excess" bigint NOT NULL,
    "Account_Dificit" bigint NOT NULL,
    "Store" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Note" text,
    "Time" text,
    "Branch" text
);


ALTER TABLE public.settlements OWNER TO postgres;

--
-- Name: settlements_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.settlements_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.settlements_arr_seq OWNER TO postgres;

--
-- Name: settlements_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.settlements_arr_seq OWNED BY public.settlements.arr;


--
-- Name: settlements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.settlements_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.settlements_id_seq OWNER TO postgres;

--
-- Name: settlements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.settlements_id_seq OWNED BY public.settlements.id;


--
-- Name: sewing_accessories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_accessories (
    id bigint NOT NULL,
    "Product" bigint,
    "Qty" text,
    "Price" text,
    "Total" text,
    "Cost" text,
    "TotalCost" text,
    "SewingOrder" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sewing_accessories OWNER TO postgres;

--
-- Name: sewing_accessories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_accessories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_accessories_id_seq OWNER TO postgres;

--
-- Name: sewing_accessories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_accessories_id_seq OWNED BY public.sewing_accessories.id;


--
-- Name: sewing_al_kabkat; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_al_kabkat (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_al_kabkat OWNER TO postgres;

--
-- Name: sewing_al_kabkat_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_al_kabkat_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_al_kabkat_id_seq OWNER TO postgres;

--
-- Name: sewing_al_kabkat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_al_kabkat_id_seq OWNED BY public.sewing_al_kabkat.id;


--
-- Name: sewing_al_taktak; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_al_taktak (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_al_taktak OWNER TO postgres;

--
-- Name: sewing_al_taktak_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_al_taktak_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_al_taktak_id_seq OWNER TO postgres;

--
-- Name: sewing_al_taktak_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_al_taktak_id_seq OWNED BY public.sewing_al_taktak.id;


--
-- Name: sewing_buttons; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_buttons (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_buttons OWNER TO postgres;

--
-- Name: sewing_buttons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_buttons_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_buttons_id_seq OWNER TO postgres;

--
-- Name: sewing_buttons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_buttons_id_seq OWNED BY public.sewing_buttons.id;


--
-- Name: sewing_chest_pocket_fillings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_chest_pocket_fillings (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_chest_pocket_fillings OWNER TO postgres;

--
-- Name: sewing_chest_pocket_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_chest_pocket_fillings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_chest_pocket_fillings_id_seq OWNER TO postgres;

--
-- Name: sewing_chest_pocket_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_chest_pocket_fillings_id_seq OWNED BY public.sewing_chest_pocket_fillings.id;


--
-- Name: sewing_chest_pockets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_chest_pockets (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_chest_pockets OWNER TO postgres;

--
-- Name: sewing_chest_pockets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_chest_pockets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_chest_pockets_id_seq OWNER TO postgres;

--
-- Name: sewing_chest_pockets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_chest_pockets_id_seq OWNED BY public.sewing_chest_pockets.id;


--
-- Name: sewing_collar_paddings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_collar_paddings (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_collar_paddings OWNER TO postgres;

--
-- Name: sewing_collar_paddings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_collar_paddings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_collar_paddings_id_seq OWNER TO postgres;

--
-- Name: sewing_collar_paddings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_collar_paddings_id_seq OWNED BY public.sewing_collar_paddings.id;


--
-- Name: sewing_collars; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_collars (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_collars OWNER TO postgres;

--
-- Name: sewing_collars_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_collars_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_collars_id_seq OWNER TO postgres;

--
-- Name: sewing_collars_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_collars_id_seq OWNED BY public.sewing_collars.id;


--
-- Name: sewing_cseed_sleeves; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_cseed_sleeves (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_cseed_sleeves OWNER TO postgres;

--
-- Name: sewing_cseed_sleeves_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_cseed_sleeves_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_cseed_sleeves_id_seq OWNER TO postgres;

--
-- Name: sewing_cseed_sleeves_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_cseed_sleeves_id_seq OWNED BY public.sewing_cseed_sleeves.id;


--
-- Name: sewing_cupcake_fillings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_cupcake_fillings (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_cupcake_fillings OWNER TO postgres;

--
-- Name: sewing_cupcake_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_cupcake_fillings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_cupcake_fillings_id_seq OWNER TO postgres;

--
-- Name: sewing_cupcake_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_cupcake_fillings_id_seq OWNED BY public.sewing_cupcake_fillings.id;


--
-- Name: sewing_embroideries; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_embroideries (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_embroideries OWNER TO postgres;

--
-- Name: sewing_embroideries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_embroideries_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_embroideries_id_seq OWNER TO postgres;

--
-- Name: sewing_embroideries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_embroideries_id_seq OWNED BY public.sewing_embroideries.id;


--
-- Name: sewing_order_modules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_order_modules (
    id bigint NOT NULL,
    "Sleeves" bigint,
    "CseedSleeves" bigint,
    "AlKabkat" bigint,
    "AlTaktak" bigint,
    "SidePocket" bigint,
    "CupcakeFilling" bigint,
    "Collar" bigint,
    "CollarPadding" bigint,
    "ChestPocket" bigint,
    "ChestPocketFilling" bigint,
    "Seeds" bigint,
    "SeedFilling" bigint,
    "Embroidery" bigint,
    "Buttons" bigint,
    "SewingOrder" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "DXF_File" text,
    "Kabak_Sewing" text,
    "Product" text,
    "Product_Cost" text
);


ALTER TABLE public.sewing_order_modules OWNER TO postgres;

--
-- Name: sewing_order_modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_order_modules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_order_modules_id_seq OWNER TO postgres;

--
-- Name: sewing_order_modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_order_modules_id_seq OWNED BY public.sewing_order_modules.id;


--
-- Name: sewing_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_orders (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "RecivedDate" text,
    "Draw" text,
    "Payment_Method" text,
    "Status" text,
    "Refernce_Number" text,
    "Notes" text,
    "Qty" text,
    "DXF_Height_cm" text,
    "SizeName" text,
    "L" text,
    "LB" text,
    "B" text,
    "S" text,
    "AH" text,
    "CH" text,
    chest_full text,
    "BK" text,
    "HD" text,
    cuff text,
    gusset_len text,
    gusset_width_mm text,
    front text,
    net_chest text,
    neck_size text,
    front_shoulder_height text,
    shoulder_height text,
    back_neck_depth text,
    front_neck_depth text,
    back_down_shoulder text,
    shoulder_opening text,
    hand_cuff text,
    arm_rotation text,
    arm_length text,
    arm_elbow_width text,
    neck_height text,
    "Pocket_chest_height" text,
    neck_height_qalap text,
    hand_length_kabk text,
    hand_rotation_kabk text,
    "Total_Price" text,
    "TotalTax" text,
    "Total_af_Tax" text,
    "Discount" text,
    "Total_Af_Discount" text,
    "The_Net" text,
    "Pay" text,
    "DXF_File" text,
    "Branch" bigint,
    "RecivedBranch" bigint,
    "Safe" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "Delegate" bigint,
    "Client" bigint,
    "Product" bigint,
    "SewingType" bigint,
    "TaxType" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "User" text,
    "Execute" text DEFAULT '0'::text NOT NULL,
    "Kabak_Width" text,
    "Kabak_Sewing" text,
    "SewingSort" text,
    "TotalCost" text,
    "Done_Pay" text DEFAULT '0'::text,
    neck_size_qalap text,
    "B_Net" text,
    "BK_Net" text,
    "HD_Net" text,
    "IshtakTopWidth" text,
    "IshtakBottomWidth" text,
    "SideTopWidth" text,
    "SideBottomWidth" text
);


ALTER TABLE public.sewing_orders OWNER TO postgres;

--
-- Name: sewing_orders_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_orders_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_orders_arr_seq OWNER TO postgres;

--
-- Name: sewing_orders_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_orders_arr_seq OWNED BY public.sewing_orders."Code";


--
-- Name: sewing_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_orders_id_seq OWNER TO postgres;

--
-- Name: sewing_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_orders_id_seq OWNED BY public.sewing_orders.id;


--
-- Name: sewing_request_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_request_details (
    id bigint NOT NULL,
    "SewingRequest" bigint,
    "Type" bigint,
    "Product" bigint,
    "Qty" text,
    "Price" text,
    "Total" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sewing_request_details OWNER TO postgres;

--
-- Name: sewing_request_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_request_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_request_details_id_seq OWNER TO postgres;

--
-- Name: sewing_request_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_request_details_id_seq OWNED BY public.sewing_request_details.id;


--
-- Name: sewing_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_requests (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "RecivedDate" text,
    "Draw" text,
    "Payment_Method" text,
    "Status" text,
    "Refernce_Number" text,
    "Notes" text,
    "Total_Price" text,
    "TotalTax" text,
    "Total_af_Tax" text,
    "Discount" text,
    "Total_Af_Discount" text,
    "The_Net" text,
    "Pay" text,
    "SewingSort" text,
    "Qty" text,
    "SewingCost" text,
    "Branch" bigint,
    "RecivedBranch" bigint,
    "Safe" bigint,
    "Coin" bigint,
    "Cost_Center" bigint,
    "Delegate" bigint,
    "Client" bigint,
    "TaxType" bigint,
    "User" bigint,
    "SewingOrderID" bigint,
    "Transferred" smallint DEFAULT '0'::smallint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "OutsideSewingType" bigint
);


ALTER TABLE public.sewing_requests OWNER TO postgres;

--
-- Name: sewing_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_requests_id_seq OWNER TO postgres;

--
-- Name: sewing_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_requests_id_seq OWNED BY public.sewing_requests.id;


--
-- Name: sewing_seed_fillings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_seed_fillings (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_seed_fillings OWNER TO postgres;

--
-- Name: sewing_seed_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_seed_fillings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_seed_fillings_id_seq OWNER TO postgres;

--
-- Name: sewing_seed_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_seed_fillings_id_seq OWNED BY public.sewing_seed_fillings.id;


--
-- Name: sewing_seeds; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_seeds (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_seeds OWNER TO postgres;

--
-- Name: sewing_seeds_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_seeds_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_seeds_id_seq OWNER TO postgres;

--
-- Name: sewing_seeds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_seeds_id_seq OWNED BY public.sewing_seeds.id;


--
-- Name: sewing_side_pockets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_side_pockets (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_side_pockets OWNER TO postgres;

--
-- Name: sewing_side_pockets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_side_pockets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_side_pockets_id_seq OWNER TO postgres;

--
-- Name: sewing_side_pockets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_side_pockets_id_seq OWNED BY public.sewing_side_pockets.id;


--
-- Name: sewing_sleeves; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_sleeves (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "SewingType" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Guest" integer DEFAULT 0 NOT NULL,
    "Delete" integer DEFAULT 0 NOT NULL,
    "Type" integer DEFAULT 0,
    "Sort_Order" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.sewing_sleeves OWNER TO postgres;

--
-- Name: sewing_sleeves_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_sleeves_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_sleeves_id_seq OWNER TO postgres;

--
-- Name: sewing_sleeves_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_sleeves_id_seq OWNED BY public.sewing_sleeves.id;


--
-- Name: sewing_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sewing_types (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "Status" smallint DEFAULT '1'::smallint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Price_Normal" text,
    "Price_Urgent" text,
    "Max_Price" text,
    "Min_Price" text,
    "Sewing_Price_Normal" text,
    "Sewing_Price_Urgent" text,
    "Sewing_Max_Price" text,
    "Sewing_Min_Price" text
);


ALTER TABLE public.sewing_types OWNER TO postgres;

--
-- Name: sewing_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sewing_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sewing_types_id_seq OWNER TO postgres;

--
-- Name: sewing_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sewing_types_id_seq OWNED BY public.sewing_types.id;


--
-- Name: shifts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shifts (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Note" text,
    "Total_Cash" text DEFAULT 0,
    "Total_Later" text DEFAULT 0,
    "Total_Visa" text DEFAULT 0,
    "Total" text DEFAULT 0,
    "Pass" text,
    "Emp" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Close" text,
    "Amount" text,
    "Total_Recipt" text DEFAULT 0,
    "Total_Payment" text DEFAULT 0,
    "Store" text,
    "Safe" text,
    "Total_Later_Not_Paid" text DEFAULT 0,
    "Total_Later_Paid" text DEFAULT 0,
    "Total_Installment" text DEFAULT 0,
    "Total_Checks" text DEFAULT 0,
    "Total_Delivery" text DEFAULT 0,
    "Total_Installment_Companies" text DEFAULT 0,
    "Close_Date" text,
    "Open_Amount" text,
    "Open_Note" text,
    "Apps" text DEFAULT 0
);


ALTER TABLE public.shifts OWNER TO postgres;

--
-- Name: shifts_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shifts_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shifts_arr_seq OWNER TO postgres;

--
-- Name: shifts_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shifts_arr_seq OWNED BY public.shifts.arr;


--
-- Name: shifts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shifts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shifts_id_seq OWNER TO postgres;

--
-- Name: shifts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shifts_id_seq OWNED BY public.shifts.id;


--
-- Name: shipment_moves; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipment_moves (
    id bigint NOT NULL,
    "Code" text,
    "Barcode" text,
    "Date" text,
    "Time" text,
    "Sender" text,
    "Sender_Name" text,
    "Reciver" text,
    "Reciver_Name" text,
    "Status" text,
    "Status_Code" text,
    "Delegate" text,
    "Driver" text,
    "Note" text,
    "User" text,
    "Shipment_ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Shipment_Dist_ID" text,
    "Shipment_Unload_ID" text,
    "Shipment_Recived_ID" text
);


ALTER TABLE public.shipment_moves OWNER TO postgres;

--
-- Name: shipment_moves_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_moves_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_moves_id_seq OWNER TO postgres;

--
-- Name: shipment_moves_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_moves_id_seq OWNED BY public.shipment_moves.id;


--
-- Name: shipment_receipts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipment_receipts (
    id bigint NOT NULL,
    "Recived_Store" text,
    "Code" text,
    "Date" text,
    "Total_Cash" text,
    "Total_Later" text,
    "Total_Price" text,
    "Tickets_Numbers" text,
    "Status" text,
    "ShippingList" text,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.shipment_receipts OWNER TO postgres;

--
-- Name: shipment_receipts_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_receipts_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_receipts_arr_seq OWNER TO postgres;

--
-- Name: shipment_receipts_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_receipts_arr_seq OWNED BY public.shipment_receipts.arr;


--
-- Name: shipment_receipts_clients; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipment_receipts_clients (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "ShipmentReceipts" text,
    "ShipmentReceiptsList" text,
    "Total_Price" text,
    "Total_Qty" text,
    "Pay" text,
    "Payment_Method" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.shipment_receipts_clients OWNER TO postgres;

--
-- Name: shipment_receipts_clients_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_receipts_clients_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_receipts_clients_arr_seq OWNER TO postgres;

--
-- Name: shipment_receipts_clients_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_receipts_clients_arr_seq OWNED BY public.shipment_receipts_clients.arr;


--
-- Name: shipment_receipts_clients_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_receipts_clients_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_receipts_clients_id_seq OWNER TO postgres;

--
-- Name: shipment_receipts_clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_receipts_clients_id_seq OWNED BY public.shipment_receipts_clients.id;


--
-- Name: shipment_receipts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_receipts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_receipts_id_seq OWNER TO postgres;

--
-- Name: shipment_receipts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_receipts_id_seq OWNED BY public.shipment_receipts.id;


--
-- Name: shipment_receipts_lists; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipment_receipts_lists (
    id bigint NOT NULL,
    "Shipping_List" text,
    "Code" text,
    "Sender_Name" text,
    "Addressees_Name" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Payment_Method" text,
    "Notes" text,
    "Ticket" text,
    "ShipmentReceipts" text,
    "Status" text,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.shipment_receipts_lists OWNER TO postgres;

--
-- Name: shipment_receipts_lists_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_receipts_lists_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_receipts_lists_arr_seq OWNER TO postgres;

--
-- Name: shipment_receipts_lists_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_receipts_lists_arr_seq OWNED BY public.shipment_receipts_lists.arr;


--
-- Name: shipment_receipts_lists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_receipts_lists_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_receipts_lists_id_seq OWNER TO postgres;

--
-- Name: shipment_receipts_lists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_receipts_lists_id_seq OWNED BY public.shipment_receipts_lists.id;


--
-- Name: shipment_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipment_requests (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Status" text,
    "Pieces_Num" text,
    "Desc" text,
    "Weight" text,
    "Length" text,
    "Width" text,
    "Height" text,
    "Note" text,
    "Payment_Method" text,
    "Breakable" text,
    "Delivery_To_Others" text,
    "Opening_Package" text,
    "Sender_Name" text,
    "Sender_Governorate" text,
    "Sender_City" text,
    "Sender_Place" text,
    "Sender_Address" text,
    "Sender_Phone1" text,
    "Sender_Phone2" text,
    "Sender_Location" text,
    "Receiver_Name" text,
    "Receiver_Governorate" text,
    "Receiver_City" text,
    "Receiver_Place" text,
    "Receiver_Address" text,
    "Receiver_Phone1" text,
    "Receiver_Phone2" text,
    "Receiver_Location" text,
    "Delegate" text,
    "Sender" text,
    "Received" text,
    "Shipment_Cost" text,
    "Total" text,
    "User" text,
    "Pay" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Transfer" text DEFAULT '0'::text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Shipment_Type" text,
    "Receipt_Date" text,
    "Receipt_Time" text,
    "Arrival_Date" text,
    "Arrival_Time" text
);


ALTER TABLE public.shipment_requests OWNER TO postgres;

--
-- Name: shipment_requests_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_requests_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_requests_arr_seq OWNER TO postgres;

--
-- Name: shipment_requests_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_requests_arr_seq OWNED BY public.shipment_requests."Code";


--
-- Name: shipment_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipment_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipment_requests_id_seq OWNER TO postgres;

--
-- Name: shipment_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipment_requests_id_seq OWNED BY public.shipment_requests.id;


--
-- Name: shipments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipments (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Arrival_Date" text,
    "Arrival_Time" text,
    "Barcode" text,
    "Status" text DEFAULT '0'::text,
    "Pieces_Num" text,
    "Desc" text,
    "Reference_Num" text,
    "Weight" text,
    "Length" text,
    "Width" text,
    "Height" text,
    "Note" text,
    "Shipment_Class" text,
    "Payment_Method" text,
    "Breakable" text,
    "Delivery_To_Others" text,
    "Shipping_Costs_Included" text,
    "Opening_Package" text,
    "Sender_Name" text,
    "Sender_Governorate" text,
    "Sender_City" text,
    "Sender_Place" text,
    "Sender_Address" text,
    "Sender_Phone1" text,
    "Sender_Phone2" text,
    "Sender_Location" text,
    "Receiver_Name" text,
    "Receiver_Governorate" text,
    "Receiver_City" text,
    "Receiver_Place" text,
    "Receiver_Address" text,
    "Receiver_Phone1" text,
    "Receiver_Phone2" text,
    "Receiver_Location" text,
    "Delegate" text,
    "Driver" text,
    "Sender" text,
    "Received" text,
    "Shipment_Type" text,
    "Shipment_Rqst_Type" text,
    "Shipment_Category" text,
    "Shipment_Cost" text,
    "Goods_Cost" text,
    "Delivery_Cost" text,
    "Overload_Weight_Cost" text,
    "Collection_Commission" text,
    "Delivery_Commission" text,
    "Return_Cost" text,
    "Total" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "User" text,
    "Pay" text,
    "Insurance" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Store" text,
    "Car" text,
    "ToStore" text
);


ALTER TABLE public.shipments OWNER TO postgres;

--
-- Name: shipments_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipments_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipments_arr_seq OWNER TO postgres;

--
-- Name: shipments_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipments_arr_seq OWNED BY public.shipments."Code";


--
-- Name: shipments_distribution_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipments_distribution_goods (
    id bigint NOT NULL,
    "Shipment_ID" text,
    "Code" text,
    "Total_Weight" text,
    "Total_Cost" text,
    "ShipmentsDistribution" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Barcode" text,
    "Total_Pieces" text,
    "Status" text DEFAULT 0
);


ALTER TABLE public.shipments_distribution_goods OWNER TO postgres;

--
-- Name: shipments_distribution_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipments_distribution_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipments_distribution_goods_id_seq OWNER TO postgres;

--
-- Name: shipments_distribution_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipments_distribution_goods_id_seq OWNED BY public.shipments_distribution_goods.id;


--
-- Name: shipments_distribution_workers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipments_distribution_workers (
    id bigint NOT NULL,
    "Worker" text,
    "ShipmentsDistribution" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.shipments_distribution_workers OWNER TO postgres;

--
-- Name: shipments_distribution_workers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipments_distribution_workers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipments_distribution_workers_id_seq OWNER TO postgres;

--
-- Name: shipments_distribution_workers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipments_distribution_workers_id_seq OWNED BY public.shipments_distribution_workers.id;


--
-- Name: shipments_distributions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipments_distributions (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "FromStore" text,
    "ToStore" text,
    "Car" text,
    "Delegate" text,
    "Driver" text,
    "Total_Pieces" text,
    "Total_Weight" text,
    "Total_Cost" text,
    "Status" text,
    "User" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Count_Shipmets" text,
    "DriverPrecent" text
);


ALTER TABLE public.shipments_distributions OWNER TO postgres;

--
-- Name: shipments_distributions_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipments_distributions_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipments_distributions_arr_seq OWNER TO postgres;

--
-- Name: shipments_distributions_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipments_distributions_arr_seq OWNED BY public.shipments_distributions."Code";


--
-- Name: shipments_distributions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipments_distributions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipments_distributions_id_seq OWNER TO postgres;

--
-- Name: shipments_distributions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipments_distributions_id_seq OWNED BY public.shipments_distributions.id;


--
-- Name: shipments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipments_id_seq OWNER TO postgres;

--
-- Name: shipments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipments_id_seq OWNED BY public.shipments.id;


--
-- Name: shipping_companies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipping_companies (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "Phone" text,
    "Tax_Card" text,
    "Commercial_Register" text,
    "Account" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.shipping_companies OWNER TO postgres;

--
-- Name: shipping_companies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_companies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_companies_id_seq OWNER TO postgres;

--
-- Name: shipping_companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_companies_id_seq OWNED BY public.shipping_companies.id;


--
-- Name: shipping_defaults; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipping_defaults (
    id bigint NOT NULL,
    "Breakable" text,
    "Coin" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Safe" text,
    "Payment_Method" text,
    "Shipment_Class" text,
    "Opening_Package" text,
    "Shipment_Type" text,
    "Shipment_Category" text,
    "Delivery_To_Others" text,
    "Shipping_Costs_Included" text,
    "Insurance" text,
    "Draw" text,
    "Store" text
);


ALTER TABLE public.shipping_defaults OWNER TO postgres;

--
-- Name: shipping_defaults_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_defaults_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_defaults_id_seq OWNER TO postgres;

--
-- Name: shipping_defaults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_defaults_id_seq OWNED BY public.shipping_defaults.id;


--
-- Name: shipping_list_tickets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipping_list_tickets (
    id bigint NOT NULL,
    "Shipping_List" text,
    "Code" text,
    "Sender_Name" text,
    "Addressees_Name" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Payment_Method" text,
    "Notes" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Ticket" text
);


ALTER TABLE public.shipping_list_tickets OWNER TO postgres;

--
-- Name: shipping_list_tickets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_list_tickets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_list_tickets_id_seq OWNER TO postgres;

--
-- Name: shipping_list_tickets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_list_tickets_id_seq OWNED BY public.shipping_list_tickets.id;


--
-- Name: shipping_lists; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipping_lists (
    id bigint NOT NULL,
    "Ticket_Store" text,
    "Driver" text,
    "Car_Store" text,
    "Travel_Area" text,
    "Access_Area" text,
    "Date_Travel" text,
    "Date_Arrival" text,
    "Car_Number" text,
    "Code" text,
    "Date" text,
    "Total_Cash" text,
    "Total_Later" text,
    "Total_Price" text,
    "Tickets_Numbers" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Status" text
);


ALTER TABLE public.shipping_lists OWNER TO postgres;

--
-- Name: shipping_lists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_lists_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_lists_id_seq OWNER TO postgres;

--
-- Name: shipping_lists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_lists_id_seq OWNED BY public.shipping_lists.id;


--
-- Name: shipping_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipping_orders (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Weight" text,
    "Number" text,
    "Goods_Price" text,
    "Shipping_Price" text,
    "Total" text,
    "Breakable" text,
    "Note" text,
    "Draw" text,
    "Coin" text,
    "Cost_Center" text,
    "Vend" text,
    "Cli" text,
    "Open" text,
    "Paid" text,
    "Ship_Sort" text,
    "Adderss" text,
    "Requests" text,
    "Sure" text,
    "Safe" text,
    "Residual" text,
    "Emp_Note" text,
    "Shipping_Delegate" text,
    "Cancel" text,
    "Cancel_Note" text,
    "Cancel_Pay" text,
    "Cancel_Not_Pay" text,
    "Vendor_Shipping" text,
    "Request_Done" text,
    "Status" bigint,
    "Type" bigint,
    "Delegate" bigint,
    "Vendor" bigint,
    "Client" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.shipping_orders OWNER TO postgres;

--
-- Name: shipping_orders_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_orders_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_orders_arr_seq OWNER TO postgres;

--
-- Name: shipping_orders_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_orders_arr_seq OWNED BY public.shipping_orders.arr;


--
-- Name: shipping_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_orders_id_seq OWNER TO postgres;

--
-- Name: shipping_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_orders_id_seq OWNED BY public.shipping_orders.id;


--
-- Name: shipping_prices; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipping_prices (
    id bigint NOT NULL,
    "Place" text,
    "City" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "From" integer,
    "To" integer,
    "Price" numeric(8,2)
);


ALTER TABLE public.shipping_prices OWNER TO postgres;

--
-- Name: shipping_prices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_prices_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_prices_id_seq OWNER TO postgres;

--
-- Name: shipping_prices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_prices_id_seq OWNED BY public.shipping_prices.id;


--
-- Name: shipping_statuses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipping_statuses (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    "Color" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.shipping_statuses OWNER TO postgres;

--
-- Name: shipping_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_statuses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_statuses_id_seq OWNER TO postgres;

--
-- Name: shipping_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_statuses_id_seq OWNED BY public.shipping_statuses.id;


--
-- Name: shipping_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shipping_types (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.shipping_types OWNER TO postgres;

--
-- Name: shipping_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shipping_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shipping_types_id_seq OWNER TO postgres;

--
-- Name: shipping_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shipping_types_id_seq OWNED BY public.shipping_types.id;


--
-- Name: shippment_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shippment_products (
    id bigint NOT NULL,
    "P_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "V1" text,
    "V2" text,
    "V_Name" text,
    "VV_Name" text,
    "AvQty" text,
    "Qty" text,
    "Price" text,
    "Total" text,
    "Store" text,
    "Product" text,
    "Unit" text,
    "Shipment" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.shippment_products OWNER TO postgres;

--
-- Name: shippment_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shippment_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shippment_products_id_seq OWNER TO postgres;

--
-- Name: shippment_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shippment_products_id_seq OWNED BY public.shippment_products.id;


--
-- Name: shortcomings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.shortcomings (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Payment_Method" text NOT NULL,
    "Status" text NOT NULL,
    "Vendor_Bill_Date" text,
    "Refernce_Number" text,
    "Note" text,
    "Product_Numbers" text NOT NULL,
    "Total_Qty" text NOT NULL,
    "Total_Discount" text NOT NULL,
    "Total_BF_Taxes" text NOT NULL,
    "Total_Taxes" text NOT NULL,
    "Total_Price" text NOT NULL,
    "Pay" text,
    "ToPurch" text,
    "Safe" bigint NOT NULL,
    "Vendor" bigint NOT NULL,
    "Delegate" bigint NOT NULL,
    "Store" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Purch_Date" text,
    "Purch_Reason" text,
    "ShipStatus" text,
    "P_Order_Num" text,
    "Ship" text,
    "Check_Type" text,
    "Due_Date" text,
    "Check_Number" text,
    "Later_Due" text,
    "Sent" text,
    "TaxBill" text,
    "TaxCode" text,
    "Time" text,
    "Branch" text,
    "CustomerGroup" text,
    "File" text,
    "Current_Credit" text,
    "Residual" text,
    "Total_Net" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text
);


ALTER TABLE public.shortcomings OWNER TO postgres;

--
-- Name: shortcomings_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shortcomings_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shortcomings_arr_seq OWNER TO postgres;

--
-- Name: shortcomings_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shortcomings_arr_seq OWNED BY public.shortcomings.arr;


--
-- Name: shortcomings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.shortcomings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.shortcomings_id_seq OWNER TO postgres;

--
-- Name: shortcomings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.shortcomings_id_seq OWNED BY public.shortcomings.id;


--
-- Name: show_print_defaults; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.show_print_defaults (
    id bigint NOT NULL,
    "CompanyName" text NOT NULL,
    "ProductName" text NOT NULL,
    "ProductPrice" text NOT NULL,
    "Coin" text NOT NULL,
    "Unit" text NOT NULL,
    "Group" text NOT NULL,
    "Code" text NOT NULL,
    "Logo" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.show_print_defaults OWNER TO postgres;

--
-- Name: show_print_defaults_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.show_print_defaults_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.show_print_defaults_id_seq OWNER TO postgres;

--
-- Name: show_print_defaults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.show_print_defaults_id_seq OWNED BY public.show_print_defaults.id;


--
-- Name: social_media; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.social_media (
    id bigint NOT NULL,
    "Facebook" character varying(191),
    "Twitter" character varying(191),
    "Instagram" character varying(191),
    "Youtube" character varying(191),
    "Snapchat" character varying(191),
    "Whatsapp" character varying(191),
    "Google_Plus" character varying(191),
    "LinkedIn" character varying(191),
    "Pinterest" character varying(191),
    "Telegram" character varying(191),
    "iOS" character varying(191),
    "Android" character varying(191),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.social_media OWNER TO postgres;

--
-- Name: social_media_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.social_media_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.social_media_id_seq OWNER TO postgres;

--
-- Name: social_media_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.social_media_id_seq OWNED BY public.social_media.id;


--
-- Name: special_cases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.special_cases (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Discount" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.special_cases OWNER TO postgres;

--
-- Name: special_cases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.special_cases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.special_cases_id_seq OWNER TO postgres;

--
-- Name: special_cases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.special_cases_id_seq OWNED BY public.special_cases.id;


--
-- Name: spend_profits; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.spend_profits (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Amount" text NOT NULL,
    "Remaining_Profit" text NOT NULL,
    "Partner" bigint NOT NULL,
    "Safe" bigint NOT NULL,
    "Coin" bigint,
    "Cost_Center" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Payment_Method" text
);


ALTER TABLE public.spend_profits OWNER TO postgres;

--
-- Name: spend_profits_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.spend_profits_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.spend_profits_id_seq OWNER TO postgres;

--
-- Name: spend_profits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.spend_profits_id_seq OWNED BY public.spend_profits.id;


--
-- Name: start_periods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.start_periods (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Note" text,
    "Total_Products" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Store" bigint,
    "Coin" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Time" text,
    "Branch" text,
    "Edit" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0
);


ALTER TABLE public.start_periods OWNER TO postgres;

--
-- Name: start_periods_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.start_periods_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.start_periods_arr_seq OWNER TO postgres;

--
-- Name: start_periods_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.start_periods_arr_seq OWNED BY public.start_periods."Code";


--
-- Name: start_periods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.start_periods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.start_periods_id_seq OWNER TO postgres;

--
-- Name: start_periods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.start_periods_id_seq OWNED BY public.start_periods.id;


--
-- Name: store_count_sales; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.store_count_sales (
    id bigint NOT NULL,
    "Store" text NOT NULL,
    "Total" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Tax" text
);


ALTER TABLE public.store_count_sales OWNER TO postgres;

--
-- Name: store_count_sales_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.store_count_sales_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.store_count_sales_id_seq OWNER TO postgres;

--
-- Name: store_count_sales_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.store_count_sales_id_seq OWNED BY public.store_count_sales.id;


--
-- Name: store_counts; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.store_counts (
    id bigint NOT NULL,
    "Store" text NOT NULL,
    "Total" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Tax" text
);


ALTER TABLE public.store_counts OWNER TO postgres;

--
-- Name: store_counts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.store_counts_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.store_counts_id_seq OWNER TO postgres;

--
-- Name: store_counts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.store_counts_id_seq OWNED BY public.store_counts.id;


--
-- Name: store_transfer_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.store_transfer_filter_twos (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Total" text,
    "TotalQty" text,
    "Note" text,
    "From_Store" text,
    "To_Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Status" text,
    "Ship" text,
    "CostShip" text,
    "RecivedShip" text,
    "OldQty" text,
    "Edit" text,
    "Delegate" text,
    "Time" text,
    "Type" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text
);


ALTER TABLE public.store_transfer_filter_twos OWNER TO postgres;

--
-- Name: store_transfer_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.store_transfer_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.store_transfer_filter_twos_id_seq OWNER TO postgres;

--
-- Name: store_transfer_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.store_transfer_filter_twos_id_seq OWNED BY public.store_transfer_filter_twos.id;


--
-- Name: store_transfer_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.store_transfer_filters (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Draw" text,
    "Total" text,
    "TotalQty" text,
    "Note" text,
    "From_Store" text,
    "To_Store" text,
    "Coin" text,
    "Cost_Center" text,
    "User" text,
    "Status" text,
    "Ship" text,
    "CostShip" text,
    "RecivedShip" text,
    "OldQty" text,
    "Edit" text,
    "Delegate" text,
    "Time" text,
    "Type" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text
);


ALTER TABLE public.store_transfer_filters OWNER TO postgres;

--
-- Name: store_transfer_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.store_transfer_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.store_transfer_filters_id_seq OWNER TO postgres;

--
-- Name: store_transfer_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.store_transfer_filters_id_seq OWNED BY public.store_transfer_filters.id;


--
-- Name: stores; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores (
    id bigint NOT NULL,
    "Date" text NOT NULL,
    "Time" text NOT NULL,
    "Name" text NOT NULL,
    "Phone" text,
    "Address" text,
    "Account" bigint NOT NULL,
    "User" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Code" text,
    "Branch" bigint,
    "Letter" text,
    "Account_Client" text,
    "NameEn" text,
    "Lat" text,
    "Lang" text
);


ALTER TABLE public.stores OWNER TO postgres;

--
-- Name: stores_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_arr_seq OWNER TO postgres;

--
-- Name: stores_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_arr_seq OWNED BY public.stores."Code";


--
-- Name: stores_default_data; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores_default_data (
    id bigint NOT NULL,
    "Group" bigint,
    "Unit" bigint,
    "Tax" bigint,
    "Coin" bigint,
    "Account_Excess" bigint,
    "Account_Dificit" bigint,
    "Store" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Type" text,
    "Style" text,
    "StoresTarnsferPrice" text,
    "Guide_Product_Cost" text,
    "Client_Store_Account" text,
    "Show_Ship" text,
    "StoresTarnsferHide" text,
    "CodeType" text,
    "ReturnStoresTransfer" text,
    "Cost_Price" text,
    "Hide_Product" text,
    "StartPeriod_Show_Product" text,
    "Fictitious_Quantities" text,
    "Qty_With_Add_Product" text
);


ALTER TABLE public.stores_default_data OWNER TO postgres;

--
-- Name: stores_default_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_default_data_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_default_data_id_seq OWNER TO postgres;

--
-- Name: stores_default_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_default_data_id_seq OWNED BY public.stores_default_data.id;


--
-- Name: stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_id_seq OWNER TO postgres;

--
-- Name: stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_id_seq OWNED BY public.stores.id;


--
-- Name: stores_moves; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores_moves (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Branch" text,
    "Type" text,
    "Note" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Ship" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Store" bigint,
    "Cost_Center" bigint,
    "User" bigint,
    "Coin" bigint,
    "Account" bigint,
    "Safe" bigint,
    "TypeEn" text,
    "Delete" text DEFAULT 0,
    "Edit" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0
);


ALTER TABLE public.stores_moves OWNER TO postgres;

--
-- Name: stores_moves_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores_moves_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Branch" text,
    "Store" text,
    "Safe" text,
    "Type" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Note" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Account" text,
    "Ship" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.stores_moves_columns OWNER TO postgres;

--
-- Name: stores_moves_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_moves_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_moves_columns_id_seq OWNER TO postgres;

--
-- Name: stores_moves_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_moves_columns_id_seq OWNED BY public.stores_moves_columns.id;


--
-- Name: stores_moves_columns_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores_moves_columns_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Branch" text,
    "Store" text,
    "Safe" text,
    "Type" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Note" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Account" text,
    "Ship" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.stores_moves_columns_sechdules OWNER TO postgres;

--
-- Name: stores_moves_columns_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_moves_columns_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_moves_columns_sechdules_id_seq OWNER TO postgres;

--
-- Name: stores_moves_columns_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_moves_columns_sechdules_id_seq OWNED BY public.stores_moves_columns_sechdules.id;


--
-- Name: stores_moves_filter_twos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores_moves_filter_twos (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Branch" text,
    "Store" text,
    "Safe" text,
    "Type" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Note" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Account" text,
    "Ship" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.stores_moves_filter_twos OWNER TO postgres;

--
-- Name: stores_moves_filter_twos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_moves_filter_twos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_moves_filter_twos_id_seq OWNER TO postgres;

--
-- Name: stores_moves_filter_twos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_moves_filter_twos_id_seq OWNED BY public.stores_moves_filter_twos.id;


--
-- Name: stores_moves_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores_moves_filters (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Branch" text,
    "Store" text,
    "Safe" text,
    "Type" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Note" text,
    "Total_Qty" text,
    "Total_Price" text,
    "Account" text,
    "Ship" text,
    "ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.stores_moves_filters OWNER TO postgres;

--
-- Name: stores_moves_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_moves_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_moves_filters_id_seq OWNER TO postgres;

--
-- Name: stores_moves_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_moves_filters_id_seq OWNED BY public.stores_moves_filters.id;


--
-- Name: stores_moves_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_moves_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_moves_id_seq OWNER TO postgres;

--
-- Name: stores_moves_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_moves_id_seq OWNED BY public.stores_moves.id;


--
-- Name: stores_transfer_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores_transfer_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Amount" text,
    "From_Store" text,
    "To_Store" text,
    "User" text,
    "Coin" text,
    "Shipping" text,
    "Note" text,
    "Delegate" text,
    "Product_Name" text,
    "Product_Code" text,
    "Group" text,
    "Brand" text,
    "Qty" text,
    "Price" text,
    "Trans_Qty" text,
    "Unit" text,
    "Total" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text
);


ALTER TABLE public.stores_transfer_columns OWNER TO postgres;

--
-- Name: stores_transfer_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_transfer_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_transfer_columns_id_seq OWNER TO postgres;

--
-- Name: stores_transfer_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_transfer_columns_id_seq OWNED BY public.stores_transfer_columns.id;


--
-- Name: stores_transfer_columns_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stores_transfer_columns_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Amount" text,
    "From_Store" text,
    "To_Store" text,
    "User" text,
    "Coin" text,
    "Shipping" text,
    "Note" text,
    "Delegate" text,
    "Product_Name" text,
    "Product_Code" text,
    "Group" text,
    "Brand" text,
    "Qty" text,
    "Price" text,
    "Trans_Qty" text,
    "Unit" text,
    "Total" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Branch" text
);


ALTER TABLE public.stores_transfer_columns_sechdules OWNER TO postgres;

--
-- Name: stores_transfer_columns_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stores_transfer_columns_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stores_transfer_columns_sechdules_id_seq OWNER TO postgres;

--
-- Name: stores_transfer_columns_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stores_transfer_columns_sechdules_id_seq OWNED BY public.stores_transfer_columns_sechdules.id;


--
-- Name: stors_transfers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.stors_transfers (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Date" text NOT NULL,
    "Draw" text NOT NULL,
    "Total" text NOT NULL,
    "Note" text,
    "From_Store" bigint NOT NULL,
    "To_Store" bigint NOT NULL,
    "Coin" bigint NOT NULL,
    "Cost_Center" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "TotalQty" text,
    "Status" text DEFAULT 0,
    "CostShip" text,
    "RecivedShip" text,
    "OldQty" text,
    "Edit" text,
    "Time" text,
    "Branch" text,
    "Total_Cost" text,
    "TypeTransfer" text,
    "Cost_Store" text,
    "Delegate" bigint,
    "Ship" bigint,
    "File" text,
    "Edit_t" text DEFAULT 0,
    "Delete" text DEFAULT 0,
    "Edit_New_Code" text DEFAULT 0
);


ALTER TABLE public.stors_transfers OWNER TO postgres;

--
-- Name: stors_transfers_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stors_transfers_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stors_transfers_arr_seq OWNER TO postgres;

--
-- Name: stors_transfers_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stors_transfers_arr_seq OWNED BY public.stors_transfers."Code";


--
-- Name: stors_transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.stors_transfers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.stors_transfers_id_seq OWNER TO postgres;

--
-- Name: stors_transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.stors_transfers_id_seq OWNED BY public.stors_transfers.id;


--
-- Name: student_groups; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.student_groups (
    id bigint NOT NULL,
    "Image" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Arabic_Desc" text,
    "English_Desc" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.student_groups OWNER TO postgres;

--
-- Name: student_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.student_groups_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.student_groups_id_seq OWNER TO postgres;

--
-- Name: student_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.student_groups_id_seq OWNED BY public.student_groups.id;


--
-- Name: student_importants; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.student_importants (
    id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Student" text,
    "Course" text
);


ALTER TABLE public.student_importants OWNER TO postgres;

--
-- Name: student_importants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.student_importants_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.student_importants_id_seq OWNER TO postgres;

--
-- Name: student_importants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.student_importants_id_seq OWNED BY public.student_importants.id;


--
-- Name: students; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.students (
    id bigint NOT NULL,
    "Code" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Group" text,
    "Phone1" text,
    "Phone2" text,
    "Dad_Phone" text,
    "Mom_Phone" text,
    "Special_Case" text,
    "Case" text,
    "Email" text,
    "Whatsapp" text,
    "Age" text,
    "Gov" text,
    "City" text,
    "Place" text,
    "Nationality" text,
    "Address" text,
    "Profession" text,
    "Ntional_ID" text,
    "Account" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.students OWNER TO postgres;

--
-- Name: students_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.students_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.students_id_seq OWNER TO postgres;

--
-- Name: students_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.students_id_seq OWNED BY public.students.id;


--
-- Name: sub_images; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sub_images (
    id bigint NOT NULL,
    "Image" text NOT NULL,
    "Product" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sub_images OWNER TO postgres;

--
-- Name: sub_images_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sub_images_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sub_images_id_seq OWNER TO postgres;

--
-- Name: sub_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sub_images_id_seq OWNED BY public.sub_images.id;


--
-- Name: sub_virables; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sub_virables (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    "V_ID" bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.sub_virables OWNER TO postgres;

--
-- Name: sub_virables_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sub_virables_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sub_virables_id_seq OWNER TO postgres;

--
-- Name: sub_virables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sub_virables_id_seq OWNED BY public.sub_virables.id;


--
-- Name: subscribe_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.subscribe_types (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.subscribe_types OWNER TO postgres;

--
-- Name: subscribe_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.subscribe_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.subscribe_types_id_seq OWNER TO postgres;

--
-- Name: subscribe_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.subscribe_types_id_seq OWNED BY public.subscribe_types.id;


--
-- Name: sup_pages_e_com_designs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sup_pages_e_com_designs (
    id bigint NOT NULL,
    "About_Title_Color" text,
    "About_Txt_Color" text,
    "Blogs_Title_Color" text,
    "Blogs_Txt_Color" text,
    "Blogs_Hover_Txt_Color" text,
    "Contact_Title_Color" text,
    "Contact_Txt_Color" text,
    "Contact_Form_Input_Border_Color" text,
    "Contact_Form_Input_Txt_Color" text,
    "Contact_Form_Button_BG_Color" text,
    "Contact_Form_Button_Txt_Color" text,
    "Contact_Form_Button_Hover_BG_Color" text,
    "Contact_Form_Button_Hover_Txt_Color" text,
    "Faq_Title_Color" text,
    "Faq_Q_BG_Color" text,
    "Faq_Q_Txt_Color" text,
    "Faq_A_Line_Color" text,
    "Faq_A_BG_Color" text,
    "Faq_A_Txt_Color" text,
    "MyAccount_Box_BG_Color" text,
    "MyAccount_Box_Button_BG_Color" text,
    "MyAccount_Box_Button_Txt_Color" text,
    "MyAccount_Box_Button_Hover_BG_Color" text,
    "MyAccount_Box_Button_Hover_Txt_Color" text,
    "MyAccount_Box_Input_Border_Color" text,
    "MyAccount_Box_Input_Txt_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sup_pages_e_com_designs OWNER TO postgres;

--
-- Name: sup_pages_e_com_designs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sup_pages_e_com_designs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sup_pages_e_com_designs_id_seq OWNER TO postgres;

--
-- Name: sup_pages_e_com_designs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sup_pages_e_com_designs_id_seq OWNED BY public.sup_pages_e_com_designs.id;


--
-- Name: sup_pages_part_two_e_com_designs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sup_pages_part_two_e_com_designs (
    id bigint NOT NULL,
    "Shop_Product_BG_Color" text,
    "Shop_Product_Group_BG_Color" text,
    "Shop_Product_Group_Txt_Color" text,
    "Shop_Product_Group_Hover_BG_Color" text,
    "Shop_Product_Group_Hover_Txt_Color" text,
    "Shop_Product_Icon_BG_Color" text,
    "Shop_Product_Icon_Txt_Color" text,
    "Shop_Product_Icon_Hover_BG_Color" text,
    "Shop_Product_Icon_Hover_Txt_Color" text,
    "Shop_Product_Txt_Color" text,
    "Shop_Product_Price_Color" text,
    "Shop_Product_Rate_Color" text,
    "Shop_Filter_Title_Color" text,
    "Shop_Filter_Txt_Color" text,
    "Shop_Filter_Search_BG_Color" text,
    "Shop_Filter_Search_Icon_BG_Color" text,
    "Shop_Filter_Search_Icon_Txt_Color" text,
    "Shop_Filter_Search_Icon_BG_Hover_Color" text,
    "Shop_Filter_Search_Icon_Txt_Hover_Color" text,
    "Cart_Button_BG_Color" text,
    "Cart_Button_Txt_Color" text,
    "Cart_Button_BG_Hover_Color" text,
    "Cart_Button_Txt_Hover_Color" text,
    "Cart_Box_BG_Color" text,
    "Cart_Box_Title_Color" text,
    "Cart_Box_Txt_Color" text,
    "Cart_Box_Button_BG_Color" text,
    "Cart_Box_Button_Txt_Color" text,
    "Cart_Box_Button_BG_Hover_Color" text,
    "Cart_Box_Button_Txt_Hover_Color" text,
    "Cart_Cupon_Button_BG_Color" text,
    "Cart_Cupon_Button_Txt_Color" text,
    "Cart_Cupon_Button_BG_Hover_Color" text,
    "Cart_Cupon_Button_Txt_Hover_Color" text,
    "Cart_Cupon_Input_BG_Color" text,
    "Checkout_Box_BG_Color" text,
    "Checkout_Box_Title_Color" text,
    "Checkout_Box_Txt_Color" text,
    "Checkout_Box_Button_BG_Color" text,
    "Checkout_Box_Button_Txt_Color" text,
    "Checkout_Box_Button_BG_Hover_Color" text,
    "Checkout_Box_Button_Txt_Hover_Color" text,
    "Checkout_Head_BG_Color" text,
    "Checkout_Head_Txt_Color" text,
    "Checkout_Input_BG_Color" text,
    "Checkout_Input_Txt_Color" text,
    "Reg_Login_Form_Box_BG_Color" text,
    "Reg_Login_Form_Box_Title_Color" text,
    "Reg_Login_Form_Box_Txt_Color" text,
    "Reg_Login_Form_Box_Txt_Hover_Color" text,
    "Reg_Login_Form_Box_Input_Border_Color" text,
    "Reg_Login_Form_Box_Button_BG_Color" text,
    "Reg_Login_Form_Box_Button_Txt_Color" text,
    "Reg_Login_Form_Box_Button_BG_Hover_Color" text,
    "Reg_Login_Form_Box_Button_Txt_Hover_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sup_pages_part_two_e_com_designs OWNER TO postgres;

--
-- Name: sup_pages_part_two_e_com_designs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sup_pages_part_two_e_com_designs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sup_pages_part_two_e_com_designs_id_seq OWNER TO postgres;

--
-- Name: sup_pages_part_two_e_com_designs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sup_pages_part_two_e_com_designs_id_seq OWNED BY public.sup_pages_part_two_e_com_designs.id;


--
-- Name: sup_pages_wish_comp_e_com_designs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sup_pages_wish_comp_e_com_designs (
    id bigint NOT NULL,
    "Wish_Title_BG_Color" text,
    "Wish_Title_Txt_Color" text,
    "Wish_Box_BG_Color" text,
    "Wish_Box_Border_Color" text,
    "Wish_Box_Border_Type" text,
    "Wish_Box_Txt_Color" text,
    "Wish_Box_Button_BG_Color" text,
    "Wish_Box_Button_Txt_Color" text,
    "Wish_Box_Button_BG_Hover_Color" text,
    "Wish_Box_Button_Txt_Hover_Color" text,
    "Compare_Box_BG_Color" text,
    "Compare_Box_Txt_Color" text,
    "Compare_Box_Price_Hover_Color" text,
    "Compare_Box_Delete_Txt_Color" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sup_pages_wish_comp_e_com_designs OWNER TO postgres;

--
-- Name: sup_pages_wish_comp_e_com_designs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sup_pages_wish_comp_e_com_designs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sup_pages_wish_comp_e_com_designs_id_seq OWNER TO postgres;

--
-- Name: sup_pages_wish_comp_e_com_designs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sup_pages_wish_comp_e_com_designs_id_seq OWNED BY public.sup_pages_wish_comp_e_com_designs.id;


--
-- Name: taxes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.taxes (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Name" text NOT NULL,
    "Rate" text NOT NULL,
    "Type" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Hide" character varying DEFAULT 0,
    "Account" bigint,
    arr bigint,
    "CodeTax" text,
    "SubType" text,
    "NameEn" text
);


ALTER TABLE public.taxes OWNER TO postgres;

--
-- Name: taxes_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.taxes_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.taxes_arr_seq OWNER TO postgres;

--
-- Name: taxes_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.taxes_arr_seq OWNED BY public.taxes.arr;


--
-- Name: taxes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.taxes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.taxes_id_seq OWNER TO postgres;

--
-- Name: taxes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.taxes_id_seq OWNED BY public.taxes.id;


--
-- Name: teachers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.teachers (
    id bigint NOT NULL,
    "Code" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Image" text,
    "Work_Type" text,
    "Hour_Price" text,
    "Qualification" text,
    "Qualification_Attach" text,
    "National_ID" text,
    "National_ID_Attach" text,
    "CV" text,
    "Nationality" text,
    "Gov" text,
    "City" text,
    "Place" text,
    "Address" text,
    "Age" text,
    "Phone1" text,
    "Phone2" text,
    "Whatsapp" text,
    "Facebook" text,
    "Instagram" text,
    "Linked" text,
    "Telegram" text,
    "Arabic_Bio" text,
    "English_Bio" text,
    "Marital_Status" text,
    "Account" text,
    "Covenant" text,
    "Commission" text,
    "Merit" text,
    "Account_Emp" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.teachers OWNER TO postgres;

--
-- Name: teachers_groups; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.teachers_groups (
    id bigint NOT NULL,
    "Teacher" text,
    "Group" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.teachers_groups OWNER TO postgres;

--
-- Name: teachers_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.teachers_groups_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.teachers_groups_id_seq OWNER TO postgres;

--
-- Name: teachers_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.teachers_groups_id_seq OWNED BY public.teachers_groups.id;


--
-- Name: teachers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.teachers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.teachers_id_seq OWNER TO postgres;

--
-- Name: teachers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.teachers_id_seq OWNED BY public.teachers.id;


--
-- Name: teachers_subjects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.teachers_subjects (
    id bigint NOT NULL,
    "Teacher" text,
    "Subject" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.teachers_subjects OWNER TO postgres;

--
-- Name: teachers_subjects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.teachers_subjects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.teachers_subjects_id_seq OWNER TO postgres;

--
-- Name: teachers_subjects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.teachers_subjects_id_seq OWNED BY public.teachers_subjects.id;


--
-- Name: tenants; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.tenants (
    id character varying(191) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    data json
);


ALTER TABLE public.tenants OWNER TO postgres;

--
-- Name: tenants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.tenants_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.tenants_id_seq OWNER TO postgres;

--
-- Name: tenants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.tenants_id_seq OWNED BY public.tenants.id;


--
-- Name: terms; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.terms (
    id bigint NOT NULL,
    "Arabic_Desc" text NOT NULL,
    "English_Desc" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.terms OWNER TO postgres;

--
-- Name: terms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.terms_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.terms_id_seq OWNER TO postgres;

--
-- Name: terms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.terms_id_seq OWNED BY public.terms.id;


--
-- Name: terms_maintainces; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.terms_maintainces (
    id bigint NOT NULL,
    "Desc_Work" text NOT NULL,
    "Desc_Not_Work" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Desc_Work_En" text,
    "Desc_Not_Work_En" text
);


ALTER TABLE public.terms_maintainces OWNER TO postgres;

--
-- Name: terms_maintainces_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.terms_maintainces_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.terms_maintainces_id_seq OWNER TO postgres;

--
-- Name: terms_maintainces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.terms_maintainces_id_seq OWNED BY public.terms_maintainces.id;


--
-- Name: testclients; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.testclients (
    id bigint NOT NULL,
    "Name" text,
    "Governrate" text,
    "City" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.testclients OWNER TO postgres;

--
-- Name: testclients_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.testclients_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.testclients_id_seq OWNER TO postgres;

--
-- Name: testclients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.testclients_id_seq OWNED BY public.testclients.id;


--
-- Name: ticekt_issues; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ticekt_issues (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ticekt_issues OWNER TO postgres;

--
-- Name: ticekt_issues_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ticekt_issues_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ticekt_issues_id_seq OWNER TO postgres;

--
-- Name: ticekt_issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.ticekt_issues_id_seq OWNED BY public.ticekt_issues.id;


--
-- Name: ticket_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ticket_products (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Price" text,
    "Weight" text,
    "Length" text,
    "Width" text,
    "Height" text,
    "Qty" text,
    "Unit" text,
    "Total" text,
    "Store" text,
    "Product" text,
    "Ticket" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ticket_products OWNER TO postgres;

--
-- Name: ticket_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ticket_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ticket_products_id_seq OWNER TO postgres;

--
-- Name: ticket_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.ticket_products_id_seq OWNED BY public.ticket_products.id;


--
-- Name: tickets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.tickets (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Payment_Method" text,
    "Sender_Name" text,
    "Sender_Address" text,
    "Sender_Phone" text,
    "Addressees_Name" text,
    "Addressees_Address" text,
    "Addressees_Phone" text,
    "Notes" text,
    "Sub_Total" text,
    "Discount" text,
    "Total" text,
    "Store" text,
    "Safe" text,
    "Recived" text,
    "Selected" text,
    "Coin" text,
    "Draw" text,
    "Product_Numbers" text,
    "Total_Qty" text,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Access_Area" text,
    "TicketIssues" text
);


ALTER TABLE public.tickets OWNER TO postgres;

--
-- Name: tickets_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.tickets_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.tickets_arr_seq OWNER TO postgres;

--
-- Name: tickets_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.tickets_arr_seq OWNED BY public.tickets.arr;


--
-- Name: tickets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.tickets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.tickets_id_seq OWNER TO postgres;

--
-- Name: tickets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.tickets_id_seq OWNED BY public.tickets.id;


--
-- Name: translation_tourism_companies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.translation_tourism_companies (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Precent" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.translation_tourism_companies OWNER TO postgres;

--
-- Name: translation_tourism_companies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.translation_tourism_companies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.translation_tourism_companies_id_seq OWNER TO postgres;

--
-- Name: translation_tourism_companies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.translation_tourism_companies_id_seq OWNED BY public.translation_tourism_companies.id;


--
-- Name: translte_modules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.translte_modules (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Arabic_Name" text,
    "English_Name" text,
    "Lang" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.translte_modules OWNER TO postgres;

--
-- Name: translte_modules_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.translte_modules_details (
    id bigint NOT NULL,
    "Arabic_Text" text,
    "Translate_Text" text,
    "Module" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.translte_modules_details OWNER TO postgres;

--
-- Name: translte_modules_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.translte_modules_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.translte_modules_details_id_seq OWNER TO postgres;

--
-- Name: translte_modules_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.translte_modules_details_id_seq OWNED BY public.translte_modules_details.id;


--
-- Name: translte_modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.translte_modules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.translte_modules_id_seq OWNER TO postgres;

--
-- Name: translte_modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.translte_modules_id_seq OWNED BY public.translte_modules.id;


--
-- Name: transltors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.transltors (
    id bigint NOT NULL,
    "Original_Name" text NOT NULL,
    "New_Arabic_Name" text NOT NULL,
    "New_English_Name" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.transltors OWNER TO postgres;

--
-- Name: transltors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.transltors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.transltors_id_seq OWNER TO postgres;

--
-- Name: transltors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transltors_id_seq OWNED BY public.transltors.id;


--
-- Name: transport_contractors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.transport_contractors (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Phone" text,
    "Gov" text,
    "City" text,
    "Place" text,
    "Account" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Merit_Account" text
);


ALTER TABLE public.transport_contractors OWNER TO postgres;

--
-- Name: transport_contractors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.transport_contractors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.transport_contractors_id_seq OWNER TO postgres;

--
-- Name: transport_contractors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transport_contractors_id_seq OWNED BY public.transport_contractors.id;


--
-- Name: transport_permit_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.transport_permit_details (
    id bigint NOT NULL,
    "Statement" text,
    "Qty" text,
    "Note" text,
    "Permit" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.transport_permit_details OWNER TO postgres;

--
-- Name: transport_permit_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.transport_permit_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.transport_permit_details_id_seq OWNER TO postgres;

--
-- Name: transport_permit_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transport_permit_details_id_seq OWNED BY public.transport_permit_details.id;


--
-- Name: transport_permits; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.transport_permits (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Address" text,
    "Client" text,
    "Note" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.transport_permits OWNER TO postgres;

--
-- Name: transport_permits_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.transport_permits_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.transport_permits_id_seq OWNER TO postgres;

--
-- Name: transport_permits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transport_permits_id_seq OWNED BY public.transport_permits.id;


--
-- Name: transport_prices; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.transport_prices (
    id bigint NOT NULL,
    "From_Place" text,
    "To_Place" text,
    "Value" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.transport_prices OWNER TO postgres;

--
-- Name: transport_prices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.transport_prices_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.transport_prices_id_seq OWNER TO postgres;

--
-- Name: transport_prices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transport_prices_id_seq OWNED BY public.transport_prices.id;


--
-- Name: transport_receivers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.transport_receivers (
    id bigint NOT NULL,
    "Arabic_Name" text,
    "English_Name" text,
    "Phone" text,
    "Phone2" text,
    "Gov" text,
    "City" text,
    "Place" text,
    "Address" text,
    "Location" text,
    "Client" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.transport_receivers OWNER TO postgres;

--
-- Name: transport_receivers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.transport_receivers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.transport_receivers_id_seq OWNER TO postgres;

--
-- Name: transport_receivers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transport_receivers_id_seq OWNED BY public.transport_receivers.id;


--
-- Name: transports; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.transports (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Arrival_Date" text,
    "Arrival_Time" text,
    "Reference_Num" text,
    "Weight" text,
    "Note" text,
    "Payment_Method" text,
    "Insurance" text,
    "Pay" text,
    "Value" text,
    "Type" text,
    "Sender_Name" text,
    "Sender_Governorate" text,
    "Sender_City" text,
    "Sender_Place" text,
    "Sender_Address" text,
    "Sender_Phone1" text,
    "Sender_Phone2" text,
    "Sender_Location" text,
    "Receiver_Name" text,
    "Receiver_Governorate" text,
    "Receiver_City" text,
    "Receiver_Place" text,
    "Receiver_Address" text,
    "Receiver_Phone1" text,
    "Receiver_Phone2" text,
    "Receiver_Location" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "Cost_Center" text,
    "Driver" text,
    "Car" text,
    "Driver_Precent" text,
    "Driver_Value" text,
    "Contractor" text,
    "Contractor_Precent" text,
    "Contractor_Value" text,
    "Sender" text,
    "Received" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Expenses_Value" text,
    "Expenses_Precent" text,
    "The_Net" text,
    "Tax_Type" text,
    "Tax" text,
    "Tax_Value" text,
    "Tax_Profit_Type" text,
    "Tax_Profit" text,
    "Tax_Profit_Value" text
);


ALTER TABLE public.transports OWNER TO postgres;

--
-- Name: transports_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.transports_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.transports_arr_seq OWNER TO postgres;

--
-- Name: transports_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transports_arr_seq OWNED BY public.transports."Code";


--
-- Name: transports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.transports_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.transports_id_seq OWNER TO postgres;

--
-- Name: transports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transports_id_seq OWNED BY public.transports.id;


--
-- Name: unloading_shipments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.unloading_shipments (
    id bigint NOT NULL,
    "Code" text,
    "Date" text,
    "Time" text,
    "Safe" text,
    "Coin" text,
    "Draw" text,
    "FromStore" text,
    "ToStore" text,
    "Car" text,
    "Delegate" text,
    "Driver" text,
    "Total_Pieces" text,
    "Total_Weight" text,
    "Total_Cost" text,
    "Count_Shipmets" text,
    "Status" text,
    "User" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ShipmentsDistributionCode" text
);


ALTER TABLE public.unloading_shipments OWNER TO postgres;

--
-- Name: unloading_shipments_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.unloading_shipments_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.unloading_shipments_arr_seq OWNER TO postgres;

--
-- Name: unloading_shipments_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.unloading_shipments_arr_seq OWNED BY public.unloading_shipments."Code";


--
-- Name: unloading_shipments_goods; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.unloading_shipments_goods (
    id bigint NOT NULL,
    "Shipment_ID" text,
    "Code" text,
    "Total_Weight" text,
    "Total_Cost" text,
    "Total_Pieces" text,
    "ShipmentsUnloading" bigint,
    "Status" text DEFAULT 0,
    "Dist_Goods_ID" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Barcode" text
);


ALTER TABLE public.unloading_shipments_goods OWNER TO postgres;

--
-- Name: unloading_shipments_goods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.unloading_shipments_goods_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.unloading_shipments_goods_id_seq OWNER TO postgres;

--
-- Name: unloading_shipments_goods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.unloading_shipments_goods_id_seq OWNED BY public.unloading_shipments_goods.id;


--
-- Name: unloading_shipments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.unloading_shipments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.unloading_shipments_id_seq OWNER TO postgres;

--
-- Name: unloading_shipments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.unloading_shipments_id_seq OWNED BY public.unloading_shipments.id;


--
-- Name: unloading_shipments_workers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.unloading_shipments_workers (
    id bigint NOT NULL,
    "Worker" text,
    "ShipmentsUnloading" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.unloading_shipments_workers OWNER TO postgres;

--
-- Name: unloading_shipments_workers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.unloading_shipments_workers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.unloading_shipments_workers_id_seq OWNER TO postgres;

--
-- Name: unloading_shipments_workers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.unloading_shipments_workers_id_seq OWNED BY public.unloading_shipments_workers.id;


--
-- Name: update_values_investors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.update_values_investors (
    id bigint NOT NULL,
    "Date" text,
    "Valye" text,
    "Investor" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.update_values_investors OWNER TO postgres;

--
-- Name: update_values_investors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.update_values_investors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.update_values_investors_id_seq OWNER TO postgres;

--
-- Name: update_values_investors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.update_values_investors_id_seq OWNED BY public.update_values_investors.id;


--
-- Name: upload_accountings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.upload_accountings (
    id bigint NOT NULL,
    "Name" text,
    "Type" text,
    "Parent" text,
    "Note" text,
    "User" text,
    "Account_Code" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.upload_accountings OWNER TO postgres;

--
-- Name: upload_accountings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.upload_accountings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.upload_accountings_id_seq OWNER TO postgres;

--
-- Name: upload_accountings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.upload_accountings_id_seq OWNED BY public.upload_accountings.id;


--
-- Name: users_moves; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.users_moves (
    id bigint NOT NULL,
    "User" bigint NOT NULL,
    "Date" text NOT NULL,
    "Time" text NOT NULL,
    "Screen" text NOT NULL,
    "Type" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Explain" text,
    "ScreenEn" text,
    "TypeEn" text,
    "ExplainEn" text
);


ALTER TABLE public.users_moves OWNER TO postgres;

--
-- Name: users_moves_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.users_moves_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.users_moves_id_seq OWNER TO postgres;

--
-- Name: users_moves_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.users_moves_id_seq OWNED BY public.users_moves.id;


--
-- Name: v_a_prices; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.v_a_prices (
    id bigint NOT NULL,
    "Price" text,
    "MainV" bigint,
    "SubV" bigint,
    "Product" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Offer_Price" text,
    "Added" text,
    "VAProductID" text
);


ALTER TABLE public.v_a_prices OWNER TO postgres;

--
-- Name: v_a_prices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.v_a_prices_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.v_a_prices_id_seq OWNER TO postgres;

--
-- Name: v_a_prices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.v_a_prices_id_seq OWNED BY public.v_a_prices.id;


--
-- Name: v_a_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.v_a_products (
    id bigint NOT NULL,
    "Product_Code" text,
    "P_Ar_Name" text,
    "P_En_Name" text,
    "Unit" text,
    "Product" bigint,
    "ProductID" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.v_a_products OWNER TO postgres;

--
-- Name: v_a_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.v_a_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.v_a_products_id_seq OWNER TO postgres;

--
-- Name: v_a_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.v_a_products_id_seq OWNED BY public.v_a_products.id;


--
-- Name: v_a_qties; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.v_a_qties (
    id bigint NOT NULL,
    "Qty" text,
    "MainV" bigint,
    "SubV" bigint,
    "Product" bigint,
    "ProductID" bigint,
    "VAProductID" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.v_a_qties OWNER TO postgres;

--
-- Name: v_a_qties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.v_a_qties_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.v_a_qties_id_seq OWNER TO postgres;

--
-- Name: v_a_qties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.v_a_qties_id_seq OWNED BY public.v_a_qties.id;


--
-- Name: vendor_account_statement_column_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.vendor_account_statement_column_sechdules (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Vendor" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ShiftCode" text,
    "Executor" text
);


ALTER TABLE public.vendor_account_statement_column_sechdules OWNER TO postgres;

--
-- Name: vendor_account_statement_column_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vendor_account_statement_column_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vendor_account_statement_column_sechdules_id_seq OWNER TO postgres;

--
-- Name: vendor_account_statement_column_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vendor_account_statement_column_sechdules_id_seq OWNED BY public.vendor_account_statement_column_sechdules.id;


--
-- Name: vendor_account_statement_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.vendor_account_statement_columns (
    id bigint NOT NULL,
    "Date" text,
    "Code" text,
    "Time" text,
    "Refrence_Number" text,
    "Branch" text,
    "Store" text,
    "Payment_Method" text,
    "Safe" text,
    "Type" text,
    "Shipping" text,
    "Cost_Center" text,
    "User" text,
    "Coin" text,
    "Due_Date" text,
    "Delegate" text,
    "Note" text,
    "Total_Return" text,
    "Total_Price" text,
    "Total_Discount" text,
    "Total_Tax" text,
    "Total_Net" text,
    "Paid" text,
    "Residual" text,
    "Vendor" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "ShiftCode" text,
    "Executor" text
);


ALTER TABLE public.vendor_account_statement_columns OWNER TO postgres;

--
-- Name: vendor_account_statement_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vendor_account_statement_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vendor_account_statement_columns_id_seq OWNER TO postgres;

--
-- Name: vendor_account_statement_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vendor_account_statement_columns_id_seq OWNED BY public.vendor_account_statement_columns.id;


--
-- Name: vendor_filters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.vendor_filters (
    id bigint NOT NULL,
    "Product" text NOT NULL,
    "Code" text,
    "Name" text,
    "VName" text,
    "VVName" text,
    "V1" text,
    "V2" text,
    "Qty" text,
    "Price" text,
    "Total" text,
    "Vendor" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.vendor_filters OWNER TO postgres;

--
-- Name: vendor_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vendor_filters_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vendor_filters_id_seq OWNER TO postgres;

--
-- Name: vendor_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vendor_filters_id_seq OWNED BY public.vendor_filters.id;


--
-- Name: vendor_products; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.vendor_products (
    id bigint NOT NULL,
    "Product_Name" text,
    "Product_Weight" text,
    "Product_Height" text,
    "Product_Length" text,
    "Product_Width" text,
    "Qty" text,
    "Price" text,
    "Vendor" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.vendor_products OWNER TO postgres;

--
-- Name: vendor_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vendor_products_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vendor_products_id_seq OWNER TO postgres;

--
-- Name: vendor_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vendor_products_id_seq OWNED BY public.vendor_products.id;


--
-- Name: vendors; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.vendors (
    id bigint NOT NULL,
    "Code" text NOT NULL,
    "Name" text NOT NULL,
    "Phone" text,
    "Phone2" text,
    "Commercial_Register" text,
    "Tax_Card" text,
    "Price_Level" text,
    "Account" bigint,
    "User" bigint,
    arr bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Tax_Registration_Number" text,
    "Tax_activity_code" text,
    work_nature text,
    "Buliding_Num" text,
    "Street" text,
    "Postal_Code" text,
    tax_magistrate text,
    "Floor" text,
    "Room" text,
    "Landmark" text,
    "Add_Info" text,
    "City" bigint,
    "Place" bigint,
    "Nationality" bigint,
    "Responsible" bigint,
    "Pro_Group" bigint,
    "Brand" bigint,
    "Governrate" bigint,
    "NameEn" text,
    "SearchCode" text,
    "Credit_Limit" text,
    "Monthly_Target" text DEFAULT 0,
    "Quarterly_Target" text DEFAULT 0,
    "Yearly_Target" text DEFAULT 0
);


ALTER TABLE public.vendors OWNER TO postgres;

--
-- Name: vendors_arr_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vendors_arr_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vendors_arr_seq OWNER TO postgres;

--
-- Name: vendors_arr_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vendors_arr_seq OWNED BY public.vendors.arr;


--
-- Name: vendors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vendors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vendors_id_seq OWNER TO postgres;

--
-- Name: vendors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vendors_id_seq OWNED BY public.vendors.id;


--
-- Name: vendors_statements_column_sechdules; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.vendors_statements_column_sechdules (
    id bigint NOT NULL,
    "Account_Code" text,
    "Account_Name" text,
    "Debiator_Before" text,
    "Creditor_Before" text,
    "Total_Debitor" text,
    "Total_Creditor" text,
    "Debitor_Balance" text,
    "Creditor_Balance" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.vendors_statements_column_sechdules OWNER TO postgres;

--
-- Name: vendors_statements_column_sechdules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vendors_statements_column_sechdules_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vendors_statements_column_sechdules_id_seq OWNER TO postgres;

--
-- Name: vendors_statements_column_sechdules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vendors_statements_column_sechdules_id_seq OWNED BY public.vendors_statements_column_sechdules.id;


--
-- Name: vendors_statements_columns; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.vendors_statements_columns (
    id bigint NOT NULL,
    "Account_Code" text,
    "Account_Name" text,
    "Debiator_Before" text,
    "Creditor_Before" text,
    "Total_Debitor" text,
    "Total_Creditor" text,
    "Debitor_Balance" text,
    "Creditor_Balance" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.vendors_statements_columns OWNER TO postgres;

--
-- Name: vendors_statements_columns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vendors_statements_columns_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vendors_statements_columns_id_seq OWNER TO postgres;

--
-- Name: vendors_statements_columns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vendors_statements_columns_id_seq OWNED BY public.vendors_statements_columns.id;


--
-- Name: virables; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.virables (
    id bigint NOT NULL,
    "Name" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "NameEn" text
);


ALTER TABLE public.virables OWNER TO postgres;

--
-- Name: virables_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.virables_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.virables_id_seq OWNER TO postgres;

--
-- Name: virables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.virables_id_seq OWNED BY public.virables.id;


--
-- Name: vouchers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.vouchers (
    id bigint NOT NULL,
    "Draw" text,
    "Coin" text,
    "Safe" text,
    "Debitor" text,
    "Creditor" text,
    "Account" text,
    "Statement" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.vouchers OWNER TO postgres;

--
-- Name: vouchers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.vouchers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.vouchers_id_seq OWNER TO postgres;

--
-- Name: vouchers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.vouchers_id_seq OWNED BY public.vouchers.id;


--
-- Name: web_sliders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.web_sliders (
    id bigint NOT NULL,
    "Status" character varying(191) NOT NULL,
    "Arabic_Title" text NOT NULL,
    "English_Title" text NOT NULL,
    "Arabic_Desc" text NOT NULL,
    "English_Desc" text NOT NULL,
    "Image" text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Type" text
);


ALTER TABLE public.web_sliders OWNER TO postgres;

--
-- Name: web_sliders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.web_sliders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.web_sliders_id_seq OWNER TO postgres;

--
-- Name: web_sliders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.web_sliders_id_seq OWNED BY public.web_sliders.id;


--
-- Name: wishlists; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.wishlists (
    id bigint NOT NULL,
    "Product" bigint,
    "User" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.wishlists OWNER TO postgres;

--
-- Name: wishlists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.wishlists_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.wishlists_id_seq OWNER TO postgres;

--
-- Name: wishlists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.wishlists_id_seq OWNED BY public.wishlists.id;


--
-- Name: work_departments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.work_departments (
    id bigint NOT NULL,
    "Arabic_Name" text NOT NULL,
    "English_Name" text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "Parent" text,
    "Budget" text
);


ALTER TABLE public.work_departments OWNER TO postgres;

--
-- Name: work_departments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.work_departments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.work_departments_id_seq OWNER TO postgres;

--
-- Name: work_departments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.work_departments_id_seq OWNED BY public.work_departments.id;


--
-- Name: workers_sales_petrols; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.workers_sales_petrols (
    id bigint NOT NULL,
    "Worker" bigint,
    "SalesPetrol" bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.workers_sales_petrols OWNER TO postgres;

--
-- Name: workers_sales_petrols_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.workers_sales_petrols_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.workers_sales_petrols_id_seq OWNER TO postgres;

--
-- Name: workers_sales_petrols_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.workers_sales_petrols_id_seq OWNED BY public.workers_sales_petrols.id;


--
-- Name: zkteco_devices; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.zkteco_devices (
    id bigint NOT NULL,
    ip inet NOT NULL,
    port character varying(10) NOT NULL,
    model_name character varying(191) NOT NULL,
    status smallint DEFAULT '0'::smallint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.zkteco_devices OWNER TO postgres;

--
-- Name: zkteco_devices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.zkteco_devices_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.zkteco_devices_id_seq OWNER TO postgres;

--
-- Name: zkteco_devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.zkteco_devices_id_seq OWNED BY public.zkteco_devices.id;


--
-- Name: a_v_pro_check_qties id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.a_v_pro_check_qties ALTER COLUMN id SET DEFAULT nextval('public.a_v_pro_check_qties_id_seq'::regclass);


--
-- Name: abouts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.abouts ALTER COLUMN id SET DEFAULT nextval('public.abouts_id_seq'::regclass);


--
-- Name: abstracts_contractors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.abstracts_contractors ALTER COLUMN id SET DEFAULT nextval('public.abstracts_contractors_id_seq'::regclass);


--
-- Name: acccounting_manuals id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.acccounting_manuals ALTER COLUMN id SET DEFAULT nextval('public.acccounting_manuals_id_seq'::regclass);


--
-- Name: accounts_default_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.accounts_default_data ALTER COLUMN id SET DEFAULT nextval('public.accounts_default_data_id_seq'::regclass);


--
-- Name: activites id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.activites ALTER COLUMN id SET DEFAULT nextval('public.activites_id_seq'::regclass);


--
-- Name: add_translates id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.add_translates ALTER COLUMN id SET DEFAULT nextval('public.add_translates_id_seq'::regclass);


--
-- Name: additional_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.additional_products ALTER COLUMN id SET DEFAULT nextval('public.additional_products_id_seq'::regclass);


--
-- Name: addressses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.addressses ALTER COLUMN id SET DEFAULT nextval('public.addressses_id_seq'::regclass);


--
-- Name: admins id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.admins ALTER COLUMN id SET DEFAULT nextval('public.admins_id_seq'::regclass);


--
-- Name: all_groups id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.all_groups ALTER COLUMN id SET DEFAULT nextval('public.all_groups_id_seq'::regclass);


--
-- Name: allowences_emps id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.allowences_emps ALTER COLUMN id SET DEFAULT nextval('public.allowences_emps_id_seq'::regclass);


--
-- Name: apps_change_prices id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.apps_change_prices ALTER COLUMN id SET DEFAULT nextval('public.apps_change_prices_id_seq'::regclass);


--
-- Name: articles id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.articles ALTER COLUMN id SET DEFAULT nextval('public.articles_id_seq'::regclass);


--
-- Name: assay_bill_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_bill_details ALTER COLUMN id SET DEFAULT nextval('public.assay_bill_details_id_seq'::regclass);


--
-- Name: assay_bills id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_bills ALTER COLUMN id SET DEFAULT nextval('public.assay_bills_id_seq'::regclass);


--
-- Name: assay_project_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_project_details ALTER COLUMN id SET DEFAULT nextval('public.assay_project_details_id_seq'::regclass);


--
-- Name: assay_projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_projects ALTER COLUMN id SET DEFAULT nextval('public.assay_projects_id_seq'::regclass);


--
-- Name: assembly_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assembly_products ALTER COLUMN id SET DEFAULT nextval('public.assembly_products_id_seq'::regclass);


--
-- Name: assets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets ALTER COLUMN id SET DEFAULT nextval('public.assets_id_seq'::regclass);


--
-- Name: assets Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets ALTER COLUMN "Code" SET DEFAULT nextval('public.assets_arr_seq'::regclass);


--
-- Name: assets_expenses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets_expenses ALTER COLUMN id SET DEFAULT nextval('public.assets_expenses_id_seq'::regclass);


--
-- Name: attend_departure_import id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attend_departure_import ALTER COLUMN id SET DEFAULT nextval('public.attend_departure_import_id_seq'::regclass);


--
-- Name: attendance_emps id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance_emps ALTER COLUMN id SET DEFAULT nextval('public.attendance_emps_id_seq'::regclass);


--
-- Name: attendances id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendances ALTER COLUMN id SET DEFAULT nextval('public.attendances_id_seq'::regclass);


--
-- Name: attendances Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendances ALTER COLUMN "Code" SET DEFAULT nextval('public.attendances_arr_seq'::regclass);


--
-- Name: attendence_policy_emps id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendence_policy_emps ALTER COLUMN id SET DEFAULT nextval('public.attendence_policy_emps_id_seq'::regclass);


--
-- Name: barcode_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_products ALTER COLUMN id SET DEFAULT nextval('public.barcode_products_id_seq'::regclass);


--
-- Name: barcode_settings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_settings ALTER COLUMN id SET DEFAULT nextval('public.barcode_settings_id_seq'::regclass);


--
-- Name: barcode_settings Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_settings ALTER COLUMN "Code" SET DEFAULT nextval('public.barcode_settings_arr_seq'::regclass);


--
-- Name: barcode_shows id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_shows ALTER COLUMN id SET DEFAULT nextval('public.barcode_shows_id_seq'::regclass);


--
-- Name: befroe_footers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.befroe_footers ALTER COLUMN id SET DEFAULT nextval('public.befroe_footers_id_seq'::regclass);


--
-- Name: beneftis_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.beneftis_types ALTER COLUMN id SET DEFAULT nextval('public.beneftis_types_id_seq'::regclass);


--
-- Name: bones_sales_petrols id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.bones_sales_petrols ALTER COLUMN id SET DEFAULT nextval('public.bones_sales_petrols_id_seq'::regclass);


--
-- Name: bones_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.bones_types ALTER COLUMN id SET DEFAULT nextval('public.bones_types_id_seq'::regclass);


--
-- Name: borrowas id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.borrowas ALTER COLUMN id SET DEFAULT nextval('public.borrowas_id_seq'::regclass);


--
-- Name: borrowas Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.borrowas ALTER COLUMN "Code" SET DEFAULT nextval('public.borrowas_arr_seq'::regclass);


--
-- Name: branches id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.branches ALTER COLUMN id SET DEFAULT nextval('public.branches_id_seq'::regclass);


--
-- Name: brands id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.brands ALTER COLUMN id SET DEFAULT nextval('public.brands_id_seq'::regclass);


--
-- Name: campaigns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.campaigns ALTER COLUMN id SET DEFAULT nextval('public.campaigns_id_seq'::regclass);


--
-- Name: capital_increases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.capital_increases ALTER COLUMN id SET DEFAULT nextval('public.capital_increases_id_seq'::regclass);


--
-- Name: capitals id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.capitals ALTER COLUMN id SET DEFAULT nextval('public.capitals_id_seq'::regclass);


--
-- Name: car_shippings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.car_shippings ALTER COLUMN id SET DEFAULT nextval('public.car_shippings_id_seq'::regclass);


--
-- Name: cars_sales_petrols id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cars_sales_petrols ALTER COLUMN id SET DEFAULT nextval('public.cars_sales_petrols_id_seq'::regclass);


--
-- Name: cart_stores id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cart_stores ALTER COLUMN id SET DEFAULT nextval('public.cart_stores_id_seq'::regclass);


--
-- Name: catalog_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.catalog_requests ALTER COLUMN id SET DEFAULT nextval('public.catalog_requests_id_seq'::regclass);


--
-- Name: chat_issues id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_issues ALTER COLUMN id SET DEFAULT nextval('public.chat_issues_id_seq'::regclass);


--
-- Name: checks_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.checks_types ALTER COLUMN id SET DEFAULT nextval('public.checks_types_id_seq'::regclass);


--
-- Name: cities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities ALTER COLUMN id SET DEFAULT nextval('public.cities_id_seq'::regclass);


--
-- Name: clearances id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.clearances ALTER COLUMN id SET DEFAULT nextval('public.clearances_id_seq'::regclass);


--
-- Name: client_account_statement_column_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_account_statement_column_sechdules ALTER COLUMN id SET DEFAULT nextval('public.client_account_statement_column_sechdules_id_seq'::regclass);


--
-- Name: client_account_statement_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_account_statement_columns ALTER COLUMN id SET DEFAULT nextval('public.client_account_statement_columns_id_seq'::regclass);


--
-- Name: client_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_filters ALTER COLUMN id SET DEFAULT nextval('public.client_filters_id_seq'::regclass);


--
-- Name: client_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_requests ALTER COLUMN id SET DEFAULT nextval('public.client_requests_id_seq'::regclass);


--
-- Name: client_requests Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_requests ALTER COLUMN "Code" SET DEFAULT nextval('public.client_requests_arr_seq'::regclass);


--
-- Name: client_sales_petrols id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_sales_petrols ALTER COLUMN id SET DEFAULT nextval('public.client_sales_petrols_id_seq'::regclass);


--
-- Name: client_statuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_statuses ALTER COLUMN id SET DEFAULT nextval('public.client_statuses_id_seq'::regclass);


--
-- Name: clients_statements_column_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.clients_statements_column_sechdules ALTER COLUMN id SET DEFAULT nextval('public.clients_statements_column_sechdules_id_seq'::regclass);


--
-- Name: clients_statements_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.clients_statements_columns ALTER COLUMN id SET DEFAULT nextval('public.clients_statements_columns_id_seq'::regclass);


--
-- Name: coins id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.coins ALTER COLUMN id SET DEFAULT nextval('public.coins_id_seq'::regclass);


--
-- Name: comments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments ALTER COLUMN id SET DEFAULT nextval('public.comments_id_seq'::regclass);


--
-- Name: comments_clients id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments_clients ALTER COLUMN id SET DEFAULT nextval('public.comments_clients_id_seq'::regclass);


--
-- Name: company_cars id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.company_cars ALTER COLUMN id SET DEFAULT nextval('public.company_cars_id_seq'::regclass);


--
-- Name: company_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.company_data ALTER COLUMN id SET DEFAULT nextval('public.company_data_id_seq'::regclass);


--
-- Name: compare_prices_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compare_prices_columns ALTER COLUMN id SET DEFAULT nextval('public.compare_prices_columns_id_seq'::regclass);


--
-- Name: compare_prices_columns_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compare_prices_columns_sechdules ALTER COLUMN id SET DEFAULT nextval('public.compare_prices_columns_sechdules_id_seq'::regclass);


--
-- Name: compare_prices_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compare_prices_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.compare_prices_filter_twos_id_seq'::regclass);


--
-- Name: compare_prices_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compare_prices_filters ALTER COLUMN id SET DEFAULT nextval('public.compare_prices_filters_id_seq'::regclass);


--
-- Name: compares id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compares ALTER COLUMN id SET DEFAULT nextval('public.compares_id_seq'::regclass);


--
-- Name: competitors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.competitors ALTER COLUMN id SET DEFAULT nextval('public.competitors_id_seq'::regclass);


--
-- Name: consist_maintainces id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consist_maintainces ALTER COLUMN id SET DEFAULT nextval('public.consist_maintainces_id_seq'::regclass);


--
-- Name: consists id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consists ALTER COLUMN id SET DEFAULT nextval('public.consists_id_seq'::regclass);


--
-- Name: consists Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consists ALTER COLUMN "Code" SET DEFAULT nextval('public.consists_arr_seq'::regclass);


--
-- Name: contact_u_s id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contact_u_s ALTER COLUMN id SET DEFAULT nextval('public.contact_u_s_id_seq'::regclass);


--
-- Name: contract_statuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contract_statuses ALTER COLUMN id SET DEFAULT nextval('public.contract_statuses_id_seq'::regclass);


--
-- Name: contractors_real_projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contractors_real_projects ALTER COLUMN id SET DEFAULT nextval('public.contractors_real_projects_id_seq'::regclass);


--
-- Name: cost_centers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cost_centers ALTER COLUMN id SET DEFAULT nextval('public.cost_centers_id_seq'::regclass);


--
-- Name: counters_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.counters_types ALTER COLUMN id SET DEFAULT nextval('public.counters_types_id_seq'::regclass);


--
-- Name: countris id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countris ALTER COLUMN id SET DEFAULT nextval('public.countris_id_seq'::regclass);


--
-- Name: coupon_codes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.coupon_codes ALTER COLUMN id SET DEFAULT nextval('public.coupon_codes_id_seq'::regclass);


--
-- Name: courses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses ALTER COLUMN id SET DEFAULT nextval('public.courses_id_seq'::regclass);


--
-- Name: courses_categories id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses_categories ALTER COLUMN id SET DEFAULT nextval('public.courses_categories_id_seq'::regclass);


--
-- Name: courses_halls id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses_halls ALTER COLUMN id SET DEFAULT nextval('public.courses_halls_id_seq'::regclass);


--
-- Name: courses_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses_types ALTER COLUMN id SET DEFAULT nextval('public.courses_types_id_seq'::regclass);


--
-- Name: crm_default_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data ALTER COLUMN id SET DEFAULT nextval('public.crm_default_data_id_seq'::regclass);


--
-- Name: custom_prints id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.custom_prints ALTER COLUMN id SET DEFAULT nextval('public.custom_prints_id_seq'::regclass);


--
-- Name: customer_comments_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_comments_products ALTER COLUMN id SET DEFAULT nextval('public.customer_comments_products_id_seq'::regclass);


--
-- Name: customer_follow_ups id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_follow_ups ALTER COLUMN id SET DEFAULT nextval('public.customer_follow_ups_id_seq'::regclass);


--
-- Name: customer_follow_ups Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_follow_ups ALTER COLUMN "Code" SET DEFAULT nextval('public.customer_follow_ups_arr_seq'::regclass);


--
-- Name: customer_sizes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_sizes ALTER COLUMN id SET DEFAULT nextval('public.customer_sizes_id_seq'::regclass);


--
-- Name: customers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers ALTER COLUMN id SET DEFAULT nextval('public.customers_id_seq'::regclass);


--
-- Name: customers Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers ALTER COLUMN "Code" SET DEFAULT nextval('public.customers_arr_seq'::regclass);


--
-- Name: customers_files id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_files ALTER COLUMN id SET DEFAULT nextval('public.customers_files_id_seq'::regclass);


--
-- Name: customers_groups id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_groups ALTER COLUMN id SET DEFAULT nextval('public.customers_groups_id_seq'::regclass);


--
-- Name: customers_rate_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_rate_types ALTER COLUMN id SET DEFAULT nextval('public.customers_rate_types_id_seq'::regclass);


--
-- Name: customers_tickets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_tickets ALTER COLUMN id SET DEFAULT nextval('public.customers_tickets_id_seq'::regclass);


--
-- Name: customers_tickets Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_tickets ALTER COLUMN "Code" SET DEFAULT nextval('public.customers_tickets_arr_seq'::regclass);


--
-- Name: deducations_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deducations_types ALTER COLUMN id SET DEFAULT nextval('public.deducations_types_id_seq'::regclass);


--
-- Name: deductions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deductions ALTER COLUMN id SET DEFAULT nextval('public.deductions_id_seq'::regclass);


--
-- Name: deductions Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deductions ALTER COLUMN "Code" SET DEFAULT nextval('public.deductions_arr_seq'::regclass);


--
-- Name: default_data_show_hides id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_data_show_hides ALTER COLUMN id SET DEFAULT nextval('public.default_data_show_hides_id_seq'::regclass);


--
-- Name: default_sewing_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders ALTER COLUMN id SET DEFAULT nextval('public.default_sewing_orders_id_seq'::regclass);


--
-- Name: delivery_apps id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.delivery_apps ALTER COLUMN id SET DEFAULT nextval('public.delivery_apps_id_seq'::regclass);


--
-- Name: depaarture_policy_emps id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.depaarture_policy_emps ALTER COLUMN id SET DEFAULT nextval('public.depaarture_policy_emps_id_seq'::regclass);


--
-- Name: departure_emps id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departure_emps ALTER COLUMN id SET DEFAULT nextval('public.departure_emps_id_seq'::regclass);


--
-- Name: departures id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departures ALTER COLUMN id SET DEFAULT nextval('public.departures_id_seq'::regclass);


--
-- Name: departures Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departures ALTER COLUMN "Code" SET DEFAULT nextval('public.departures_arr_seq'::regclass);


--
-- Name: desvice_cases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.desvice_cases ALTER COLUMN id SET DEFAULT nextval('public.desvice_cases_id_seq'::regclass);


--
-- Name: device_descrips id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.device_descrips ALTER COLUMN id SET DEFAULT nextval('public.device_descrips_id_seq'::regclass);


--
-- Name: devices_typesies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.devices_typesies ALTER COLUMN id SET DEFAULT nextval('public.devices_typesies_id_seq'::regclass);


--
-- Name: disclaimers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.disclaimers ALTER COLUMN id SET DEFAULT nextval('public.disclaimers_id_seq'::regclass);


--
-- Name: discounts_emps id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.discounts_emps ALTER COLUMN id SET DEFAULT nextval('public.discounts_emps_id_seq'::regclass);


--
-- Name: documentary__credits id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.documentary__credits ALTER COLUMN id SET DEFAULT nextval('public.documentary__credits_id_seq'::regclass);


--
-- Name: domains id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.domains ALTER COLUMN id SET DEFAULT nextval('public.domains_id_seq'::regclass);


--
-- Name: dxf_heights id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dxf_heights ALTER COLUMN id SET DEFAULT nextval('public.dxf_heights_id_seq'::regclass);


--
-- Name: emp_covenants id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_covenants ALTER COLUMN id SET DEFAULT nextval('public.emp_covenants_id_seq'::regclass);


--
-- Name: emp_excs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_excs ALTER COLUMN id SET DEFAULT nextval('public.emp_excs_id_seq'::regclass);


--
-- Name: emp_installment_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_installment_details ALTER COLUMN id SET DEFAULT nextval('public.emp_installment_details_id_seq'::regclass);


--
-- Name: emp_installments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_installments ALTER COLUMN id SET DEFAULT nextval('public.emp_installments_id_seq'::regclass);


--
-- Name: emp_mails id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_mails ALTER COLUMN id SET DEFAULT nextval('public.emp_mails_id_seq'::regclass);


--
-- Name: emp_movements id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_movements ALTER COLUMN id SET DEFAULT nextval('public.emp_movements_id_seq'::regclass);


--
-- Name: emp_p_o_s_stores id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_p_o_s_stores ALTER COLUMN id SET DEFAULT nextval('public.emp_p_o_s_stores_id_seq'::regclass);


--
-- Name: emp_payment_accounts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_payment_accounts ALTER COLUMN id SET DEFAULT nextval('public.emp_payment_accounts_id_seq'::regclass);


--
-- Name: emp_ratios id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_ratios ALTER COLUMN id SET DEFAULT nextval('public.emp_ratios_id_seq'::regclass);


--
-- Name: emp_recipt_accounts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_recipt_accounts ALTER COLUMN id SET DEFAULT nextval('public.emp_recipt_accounts_id_seq'::regclass);


--
-- Name: emp_safes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_safes ALTER COLUMN id SET DEFAULT nextval('public.emp_safes_id_seq'::regclass);


--
-- Name: empassies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.empassies ALTER COLUMN id SET DEFAULT nextval('public.empassies_id_seq'::regclass);


--
-- Name: empassy_reserve_dates id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.empassy_reserve_dates ALTER COLUMN id SET DEFAULT nextval('public.empassy_reserve_dates_id_seq'::regclass);


--
-- Name: employesses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employesses ALTER COLUMN id SET DEFAULT nextval('public.employesses_id_seq'::regclass);


--
-- Name: employesses Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employesses ALTER COLUMN "Code" SET DEFAULT nextval('public.employesses_arr_seq'::regclass);


--
-- Name: employment_levels id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employment_levels ALTER COLUMN id SET DEFAULT nextval('public.employment_levels_id_seq'::regclass);


--
-- Name: emps_producation_points id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emps_producation_points ALTER COLUMN id SET DEFAULT nextval('public.emps_producation_points_id_seq'::regclass);


--
-- Name: emps_producation_quantities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emps_producation_quantities ALTER COLUMN id SET DEFAULT nextval('public.emps_producation_quantities_id_seq'::regclass);


--
-- Name: entitlements id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.entitlements ALTER COLUMN id SET DEFAULT nextval('public.entitlements_id_seq'::regclass);


--
-- Name: entitlements Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.entitlements ALTER COLUMN "Code" SET DEFAULT nextval('public.entitlements_arr_seq'::regclass);


--
-- Name: events id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.events ALTER COLUMN id SET DEFAULT nextval('public.events_id_seq'::regclass);


--
-- Name: examinations_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.examinations_types ALTER COLUMN id SET DEFAULT nextval('public.examinations_types_id_seq'::regclass);


--
-- Name: exchange_commissions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.exchange_commissions ALTER COLUMN id SET DEFAULT nextval('public.exchange_commissions_id_seq'::regclass);


--
-- Name: exchange_commissions Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.exchange_commissions ALTER COLUMN "Code" SET DEFAULT nextval('public.exchange_commissions_arr_seq'::regclass);


--
-- Name: execute_job_order_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_job_order_models ALTER COLUMN id SET DEFAULT nextval('public.execute_job_order_models_id_seq'::regclass);


--
-- Name: execute_job_order_workmanships id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_job_order_workmanships ALTER COLUMN id SET DEFAULT nextval('public.execute_job_order_workmanships_id_seq'::regclass);


--
-- Name: execute_job_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_job_orders ALTER COLUMN id SET DEFAULT nextval('public.execute_job_orders_id_seq'::regclass);


--
-- Name: execute_job_orders Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_job_orders ALTER COLUMN "Code" SET DEFAULT nextval('public.execute_job_orders_arr_seq'::regclass);


--
-- Name: execute_sewing_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders ALTER COLUMN id SET DEFAULT nextval('public.execute_sewing_orders_id_seq'::regclass);


--
-- Name: executing_receiving_secretariats id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executing_receiving_secretariats ALTER COLUMN id SET DEFAULT nextval('public.executing_receiving_secretariats_id_seq'::regclass);


--
-- Name: executing_receiving_secretariats Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executing_receiving_secretariats ALTER COLUMN "Code" SET DEFAULT nextval('public.executing_receiving_secretariats_arr_seq'::regclass);


--
-- Name: executing_receivings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executing_receivings ALTER COLUMN id SET DEFAULT nextval('public.executing_receivings_id_seq'::regclass);


--
-- Name: executing_receivings Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executing_receivings ALTER COLUMN "Code" SET DEFAULT nextval('public.executing_receivings_arr_seq'::regclass);


--
-- Name: executor_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executor_filters ALTER COLUMN id SET DEFAULT nextval('public.executor_filters_id_seq'::regclass);


--
-- Name: expenses_list_column_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expenses_list_column_sechdules ALTER COLUMN id SET DEFAULT nextval('public.expenses_list_column_sechdules_id_seq'::regclass);


--
-- Name: expenses_list_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expenses_list_columns ALTER COLUMN id SET DEFAULT nextval('public.expenses_list_columns_id_seq'::regclass);


--
-- Name: expenses_type_projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expenses_type_projects ALTER COLUMN id SET DEFAULT nextval('public.expenses_type_projects_id_seq'::regclass);


--
-- Name: expenses_type_templates id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expenses_type_templates ALTER COLUMN id SET DEFAULT nextval('public.expenses_type_templates_id_seq'::regclass);


--
-- Name: expire_date_qties id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expire_date_qties ALTER COLUMN id SET DEFAULT nextval('public.expire_date_qties_id_seq'::regclass);


--
-- Name: export_checks id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks ALTER COLUMN id SET DEFAULT nextval('public.export_checks_id_seq'::regclass);


--
-- Name: export_checks Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks ALTER COLUMN "Code" SET DEFAULT nextval('public.export_checks_arr_seq'::regclass);


--
-- Name: f_a_q_s id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.f_a_q_s ALTER COLUMN id SET DEFAULT nextval('public.f_a_q_s_id_seq'::regclass);


--
-- Name: failed_jobs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.failed_jobs ALTER COLUMN id SET DEFAULT nextval('public.failed_jobs_id_seq'::regclass);


--
-- Name: faults_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.faults_types ALTER COLUMN id SET DEFAULT nextval('public.faults_types_id_seq'::regclass);


--
-- Name: fifo_qties id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.fifo_qties ALTER COLUMN id SET DEFAULT nextval('public.fifo_qties_id_seq'::regclass);


--
-- Name: follow_lists id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.follow_lists ALTER COLUMN id SET DEFAULT nextval('public.follow_lists_id_seq'::regclass);


--
-- Name: general_dailies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.general_dailies ALTER COLUMN id SET DEFAULT nextval('public.general_dailies_id_seq'::regclass);


--
-- Name: general_dailies Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.general_dailies ALTER COLUMN "Code" SET DEFAULT nextval('public.general_dailies_arr_seq'::regclass);


--
-- Name: goods_product_projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.goods_product_projects ALTER COLUMN id SET DEFAULT nextval('public.goods_product_projects_id_seq'::regclass);


--
-- Name: goods_projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.goods_projects ALTER COLUMN id SET DEFAULT nextval('public.goods_projects_id_seq'::regclass);


--
-- Name: governrates id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.governrates ALTER COLUMN id SET DEFAULT nextval('public.governrates_id_seq'::regclass);


--
-- Name: group_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.group_filters ALTER COLUMN id SET DEFAULT nextval('public.group_filters_id_seq'::regclass);


--
-- Name: holidays id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.holidays ALTER COLUMN id SET DEFAULT nextval('public.holidays_id_seq'::regclass);


--
-- Name: holidays Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.holidays ALTER COLUMN "Code" SET DEFAULT nextval('public.holidays_arr_seq'::regclass);


--
-- Name: holidays_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.holidays_types ALTER COLUMN id SET DEFAULT nextval('public.holidays_types_id_seq'::regclass);


--
-- Name: home_e_com_designs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_e_com_designs ALTER COLUMN id SET DEFAULT nextval('public.home_e_com_designs_id_seq'::regclass);


--
-- Name: home_product_e_com_designs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_product_e_com_designs ALTER COLUMN id SET DEFAULT nextval('public.home_product_e_com_designs_id_seq'::regclass);


--
-- Name: import_expenses_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.import_expenses_types ALTER COLUMN id SET DEFAULT nextval('public.import_expenses_types_id_seq'::regclass);


--
-- Name: import_new_prods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.import_new_prods ALTER COLUMN id SET DEFAULT nextval('public.import_new_prods_id_seq'::regclass);


--
-- Name: import_new_prods_starts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.import_new_prods_starts ALTER COLUMN id SET DEFAULT nextval('public.import_new_prods_starts_id_seq'::regclass);


--
-- Name: in_out_logs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.in_out_logs ALTER COLUMN id SET DEFAULT nextval('public.in_out_logs_id_seq'::regclass);


--
-- Name: incom_checks id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks ALTER COLUMN id SET DEFAULT nextval('public.incom_checks_id_seq'::regclass);


--
-- Name: incom_checks Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks ALTER COLUMN "Code" SET DEFAULT nextval('public.incom_checks_arr_seq'::regclass);


--
-- Name: incom_manufacturing_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_manufacturing_models ALTER COLUMN id SET DEFAULT nextval('public.incom_manufacturing_models_id_seq'::regclass);


--
-- Name: incom_manufacturing_secretariat_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_manufacturing_secretariat_models ALTER COLUMN id SET DEFAULT nextval('public.incom_manufacturing_secretariat_models_id_seq'::regclass);


--
-- Name: install_companies_sales_bills_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.install_companies_sales_bills_columns ALTER COLUMN id SET DEFAULT nextval('public.install_companies_sales_bills_columns_id_seq'::regclass);


--
-- Name: install_companies_sales_bills_columns_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.install_companies_sales_bills_columns_sechdules ALTER COLUMN id SET DEFAULT nextval('public.install_companies_sales_bills_columns_sechdules_id_seq'::regclass);


--
-- Name: installment_companies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installment_companies ALTER COLUMN id SET DEFAULT nextval('public.installment_companies_id_seq'::regclass);


--
-- Name: installment_companies_ratios id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installment_companies_ratios ALTER COLUMN id SET DEFAULT nextval('public.installment_companies_ratios_id_seq'::regclass);


--
-- Name: installment_dates id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installment_dates ALTER COLUMN id SET DEFAULT nextval('public.installment_dates_id_seq'::regclass);


--
-- Name: installments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installments ALTER COLUMN id SET DEFAULT nextval('public.installments_id_seq'::regclass);


--
-- Name: insurance_companies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_companies ALTER COLUMN id SET DEFAULT nextval('public.insurance_companies_id_seq'::regclass);


--
-- Name: insurance_papers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_papers ALTER COLUMN id SET DEFAULT nextval('public.insurance_papers_id_seq'::regclass);


--
-- Name: insurance_papers Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_papers ALTER COLUMN "Code" SET DEFAULT nextval('public.insurance_papers_arr_seq'::regclass);


--
-- Name: interviews id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews ALTER COLUMN id SET DEFAULT nextval('public.interviews_id_seq'::regclass);


--
-- Name: interviews Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews ALTER COLUMN "Code" SET DEFAULT nextval('public.interviews_arr_seq'::regclass);


--
-- Name: interviews_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews_types ALTER COLUMN id SET DEFAULT nextval('public.interviews_types_id_seq'::regclass);


--
-- Name: intros id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.intros ALTER COLUMN id SET DEFAULT nextval('public.intros_id_seq'::regclass);


--
-- Name: inventories id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.inventories ALTER COLUMN id SET DEFAULT nextval('public.inventories_id_seq'::regclass);


--
-- Name: inventories Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.inventories ALTER COLUMN "Code" SET DEFAULT nextval('public.inventories_arr_seq'::regclass);


--
-- Name: investors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.investors ALTER COLUMN id SET DEFAULT nextval('public.investors_id_seq'::regclass);


--
-- Name: issues id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issues ALTER COLUMN id SET DEFAULT nextval('public.issues_id_seq'::regclass);


--
-- Name: items_groups id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.items_groups ALTER COLUMN id SET DEFAULT nextval('public.items_groups_id_seq'::regclass);


--
-- Name: itineraries id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.itineraries ALTER COLUMN id SET DEFAULT nextval('public.itineraries_id_seq'::regclass);


--
-- Name: itinerary_visits id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.itinerary_visits ALTER COLUMN id SET DEFAULT nextval('public.itinerary_visits_id_seq'::regclass);


--
-- Name: job_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.job_orders ALTER COLUMN id SET DEFAULT nextval('public.job_orders_id_seq'::regclass);


--
-- Name: job_orders Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.job_orders ALTER COLUMN "Code" SET DEFAULT nextval('public.job_orders_arr_seq'::regclass);


--
-- Name: job_orders_executors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.job_orders_executors ALTER COLUMN id SET DEFAULT nextval('public.job_orders_executors_id_seq'::regclass);


--
-- Name: jobs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.jobs ALTER COLUMN id SET DEFAULT nextval('public.jobs_id_seq'::regclass);


--
-- Name: jobs_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.jobs_types ALTER COLUMN id SET DEFAULT nextval('public.jobs_types_id_seq'::regclass);


--
-- Name: jouns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.jouns ALTER COLUMN id SET DEFAULT nextval('public.jouns_id_seq'::regclass);


--
-- Name: journalizing_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizing_details ALTER COLUMN id SET DEFAULT nextval('public.journalizing_details_id_seq'::regclass);


--
-- Name: journalizings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizings ALTER COLUMN id SET DEFAULT nextval('public.journalizings_id_seq'::regclass);


--
-- Name: journalizings Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizings ALTER COLUMN "Code" SET DEFAULT nextval('public.journalizings_arr_seq'::regclass);


--
-- Name: languages id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.languages ALTER COLUMN id SET DEFAULT nextval('public.languages_id_seq'::regclass);


--
-- Name: loan_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loan_types ALTER COLUMN id SET DEFAULT nextval('public.loan_types_id_seq'::regclass);


--
-- Name: loans id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans ALTER COLUMN id SET DEFAULT nextval('public.loans_id_seq'::regclass);


--
-- Name: loans Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans ALTER COLUMN "Code" SET DEFAULT nextval('public.loans_arr_seq'::regclass);


--
-- Name: login_sliders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.login_sliders ALTER COLUMN id SET DEFAULT nextval('public.login_sliders_id_seq'::regclass);


--
-- Name: main_e_com_designs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.main_e_com_designs ALTER COLUMN id SET DEFAULT nextval('public.main_e_com_designs_id_seq'::regclass);


--
-- Name: maintainc_bills id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills ALTER COLUMN id SET DEFAULT nextval('public.maintainc_bills_id_seq'::regclass);


--
-- Name: maintainc_bills Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills ALTER COLUMN "Code" SET DEFAULT nextval('public.maintainc_bills_arr_seq'::regclass);


--
-- Name: maintaince_colors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintaince_colors ALTER COLUMN id SET DEFAULT nextval('public.maintaince_colors_id_seq'::regclass);


--
-- Name: maintaince_default_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintaince_default_data ALTER COLUMN id SET DEFAULT nextval('public.maintaince_default_data_id_seq'::regclass);


--
-- Name: manu_store_counts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manu_store_counts ALTER COLUMN id SET DEFAULT nextval('public.manu_store_counts_id_seq'::regclass);


--
-- Name: manufacture_companies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacture_companies ALTER COLUMN id SET DEFAULT nextval('public.manufacture_companies_id_seq'::regclass);


--
-- Name: manufacturing_default_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_default_data ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_default_data_id_seq'::regclass);


--
-- Name: manufacturing_executions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_executions ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_executions_id_seq'::regclass);


--
-- Name: manufacturing_executions Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_executions ALTER COLUMN "Code" SET DEFAULT nextval('public.manufacturing_executions_arr_seq'::regclass);


--
-- Name: manufacturing_halls id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_halls ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_halls_id_seq'::regclass);


--
-- Name: manufacturing_model_assets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_assets ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_model_assets_id_seq'::regclass);


--
-- Name: manufacturing_model_emps id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_emps ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_model_emps_id_seq'::regclass);


--
-- Name: manufacturing_model_expenses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_expenses ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_model_expenses_id_seq'::regclass);


--
-- Name: manufacturing_model_services id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_services ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_model_services_id_seq'::regclass);


--
-- Name: manufacturing_model_workers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_workers ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_model_workers_id_seq'::regclass);


--
-- Name: manufacturing_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_models ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_models_id_seq'::regclass);


--
-- Name: manufacturing_models Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_models ALTER COLUMN "Code" SET DEFAULT nextval('public.manufacturing_models_arr_seq'::regclass);


--
-- Name: manufacturing_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_orders ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_orders_id_seq'::regclass);


--
-- Name: manufacturing_orders Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_orders ALTER COLUMN "Code" SET DEFAULT nextval('public.manufacturing_orders_arr_seq'::regclass);


--
-- Name: manufacturing_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_requests ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_requests_id_seq'::regclass);


--
-- Name: manufacturing_requests Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_requests ALTER COLUMN "Code" SET DEFAULT nextval('public.manufacturing_requests_arr_seq'::regclass);


--
-- Name: manufacturing_secretariat_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_secretariat_models ALTER COLUMN id SET DEFAULT nextval('public.manufacturing_secretariat_models_id_seq'::regclass);


--
-- Name: manufacturing_secretariat_models Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_secretariat_models ALTER COLUMN "Code" SET DEFAULT nextval('public.manufacturing_secretariat_models_arr_seq'::regclass);


--
-- Name: measuerments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.measuerments ALTER COLUMN id SET DEFAULT nextval('public.measuerments_id_seq'::regclass);


--
-- Name: missions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.missions ALTER COLUMN id SET DEFAULT nextval('public.missions_id_seq'::regclass);


--
-- Name: module_settings_nums id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.module_settings_nums ALTER COLUMN id SET DEFAULT nextval('public.module_settings_nums_id_seq'::regclass);


--
-- Name: modules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.modules ALTER COLUMN id SET DEFAULT nextval('public.modules_id_seq'::regclass);


--
-- Name: more_products_halls id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.more_products_halls ALTER COLUMN id SET DEFAULT nextval('public.more_products_halls_id_seq'::regclass);


--
-- Name: most_sales_products_column_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.most_sales_products_column_sechdules ALTER COLUMN id SET DEFAULT nextval('public.most_sales_products_column_sechdules_id_seq'::regclass);


--
-- Name: most_sales_products_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.most_sales_products_columns ALTER COLUMN id SET DEFAULT nextval('public.most_sales_products_columns_id_seq'::regclass);


--
-- Name: msg_rqsts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.msg_rqsts ALTER COLUMN id SET DEFAULT nextval('public.msg_rqsts_id_seq'::regclass);


--
-- Name: my_follow_lists id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.my_follow_lists ALTER COLUMN id SET DEFAULT nextval('public.my_follow_lists_id_seq'::regclass);


--
-- Name: new_shipping_categories id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.new_shipping_categories ALTER COLUMN id SET DEFAULT nextval('public.new_shipping_categories_id_seq'::regclass);


--
-- Name: new_shipping_rqst_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.new_shipping_rqst_types ALTER COLUMN id SET DEFAULT nextval('public.new_shipping_rqst_types_id_seq'::regclass);


--
-- Name: new_shipping_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.new_shipping_types ALTER COLUMN id SET DEFAULT nextval('public.new_shipping_types_id_seq'::regclass);


--
-- Name: notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications ALTER COLUMN id SET DEFAULT nextval('public.notifications_id_seq'::regclass);


--
-- Name: opening_entries id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries ALTER COLUMN id SET DEFAULT nextval('public.opening_entries_id_seq'::regclass);


--
-- Name: opening_entries Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries ALTER COLUMN "Code" SET DEFAULT nextval('public.opening_entries_arr_seq'::regclass);


--
-- Name: opening_entries_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries_details ALTER COLUMN id SET DEFAULT nextval('public.opening_entries_details_id_seq'::regclass);


--
-- Name: order_pays id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.order_pays ALTER COLUMN id SET DEFAULT nextval('public.order_pays_id_seq'::regclass);


--
-- Name: outcom_manufacturing_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.outcom_manufacturing_models ALTER COLUMN id SET DEFAULT nextval('public.outcom_manufacturing_models_id_seq'::regclass);


--
-- Name: outcome_manufacturing_secretariat_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.outcome_manufacturing_secretariat_models ALTER COLUMN id SET DEFAULT nextval('public.outcome_manufacturing_secretariat_models_id_seq'::regclass);


--
-- Name: over_times id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.over_times ALTER COLUMN id SET DEFAULT nextval('public.over_times_id_seq'::regclass);


--
-- Name: owners_reals id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.owners_reals ALTER COLUMN id SET DEFAULT nextval('public.owners_reals_id_seq'::regclass);


--
-- Name: pack_prems id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pack_prems ALTER COLUMN id SET DEFAULT nextval('public.pack_prems_id_seq'::regclass);


--
-- Name: packages id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.packages ALTER COLUMN id SET DEFAULT nextval('public.packages_id_seq'::regclass);


--
-- Name: partners id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.partners ALTER COLUMN id SET DEFAULT nextval('public.partners_id_seq'::regclass);


--
-- Name: pay_profit_investors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_profit_investors ALTER COLUMN id SET DEFAULT nextval('public.pay_profit_investors_id_seq'::regclass);


--
-- Name: pay_salaries id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_salaries ALTER COLUMN id SET DEFAULT nextval('public.pay_salaries_id_seq'::regclass);


--
-- Name: pay_salaries Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_salaries ALTER COLUMN "Code" SET DEFAULT nextval('public.pay_salaries_arr_seq'::regclass);


--
-- Name: payment_voucher_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_voucher_details ALTER COLUMN id SET DEFAULT nextval('public.payment_voucher_details_id_seq'::regclass);


--
-- Name: payment_vouchers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_vouchers ALTER COLUMN id SET DEFAULT nextval('public.payment_vouchers_id_seq'::regclass);


--
-- Name: payment_vouchers Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_vouchers ALTER COLUMN "Code" SET DEFAULT nextval('public.payment_vouchers_arr_seq'::regclass);


--
-- Name: paymentss_products_real_projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.paymentss_products_real_projects ALTER COLUMN id SET DEFAULT nextval('public.paymentss_products_real_projects_id_seq'::regclass);


--
-- Name: paymentss_real_projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.paymentss_real_projects ALTER COLUMN id SET DEFAULT nextval('public.paymentss_real_projects_id_seq'::regclass);


--
-- Name: permission_to_exchange_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods ALTER COLUMN id SET DEFAULT nextval('public.permission_to_exchange_goods_id_seq'::regclass);


--
-- Name: permission_to_exchange_goods Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods ALTER COLUMN "Code" SET DEFAULT nextval('public.permission_to_exchange_goods_arr_seq'::regclass);


--
-- Name: permission_to_recived_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_recived_goods ALTER COLUMN id SET DEFAULT nextval('public.permission_to_recived_goods_id_seq'::regclass);


--
-- Name: permission_to_recived_goods Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_recived_goods ALTER COLUMN "Code" SET DEFAULT nextval('public.permission_to_recived_goods_arr_seq'::regclass);


--
-- Name: permissions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permissions ALTER COLUMN id SET DEFAULT nextval('public.permissions_id_seq'::regclass);


--
-- Name: places id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.places ALTER COLUMN id SET DEFAULT nextval('public.places_id_seq'::regclass);


--
-- Name: places_reals id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.places_reals ALTER COLUMN id SET DEFAULT nextval('public.places_reals_id_seq'::regclass);


--
-- Name: platforms id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.platforms ALTER COLUMN id SET DEFAULT nextval('public.platforms_id_seq'::regclass);


--
-- Name: polices id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.polices ALTER COLUMN id SET DEFAULT nextval('public.polices_id_seq'::regclass);


--
-- Name: pro_details_imgs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pro_details_imgs ALTER COLUMN id SET DEFAULT nextval('public.pro_details_imgs_id_seq'::regclass);


--
-- Name: pro_notes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pro_notes ALTER COLUMN id SET DEFAULT nextval('public.pro_notes_id_seq'::regclass);


--
-- Name: product_colors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_colors ALTER COLUMN id SET DEFAULT nextval('public.product_colors_id_seq'::regclass);


--
-- Name: product_details_e_com_designs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_details_e_com_designs ALTER COLUMN id SET DEFAULT nextval('public.product_details_e_com_designs_id_seq'::regclass);


--
-- Name: product_executing_receiving_secretariats id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_executing_receiving_secretariats ALTER COLUMN id SET DEFAULT nextval('public.product_executing_receiving_secretariats_id_seq'::regclass);


--
-- Name: product_inventories id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_inventories ALTER COLUMN id SET DEFAULT nextval('public.product_inventories_id_seq'::regclass);


--
-- Name: product_job_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_job_orders ALTER COLUMN id SET DEFAULT nextval('public.product_job_orders_id_seq'::regclass);


--
-- Name: product_maintainc_bills id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_maintainc_bills ALTER COLUMN id SET DEFAULT nextval('public.product_maintainc_bills_id_seq'::regclass);


--
-- Name: product_manufacturing_executions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_manufacturing_executions ALTER COLUMN id SET DEFAULT nextval('public.product_manufacturing_executions_id_seq'::regclass);


--
-- Name: product_moves id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves ALTER COLUMN id SET DEFAULT nextval('public.product_moves_id_seq'::regclass);


--
-- Name: product_moves_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves_columns ALTER COLUMN id SET DEFAULT nextval('public.product_moves_columns_id_seq'::regclass);


--
-- Name: product_moves_columns_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves_columns_sechdules ALTER COLUMN id SET DEFAULT nextval('public.product_moves_columns_sechdules_id_seq'::regclass);


--
-- Name: product_moves_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.product_moves_filter_twos_id_seq'::regclass);


--
-- Name: product_moves_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves_filters ALTER COLUMN id SET DEFAULT nextval('public.product_moves_filters_id_seq'::regclass);


--
-- Name: product_quote_images id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_quote_images ALTER COLUMN id SET DEFAULT nextval('public.product_quote_images_id_seq'::regclass);


--
-- Name: product_return_without_bills id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_return_without_bills ALTER COLUMN id SET DEFAULT nextval('public.product_return_without_bills_id_seq'::regclass);


--
-- Name: product_sales id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales ALTER COLUMN id SET DEFAULT nextval('public.product_sales_id_seq'::regclass);


--
-- Name: product_sales_gifts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_gifts ALTER COLUMN id SET DEFAULT nextval('public.product_sales_gifts_id_seq'::regclass);


--
-- Name: product_sales_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_orders ALTER COLUMN id SET DEFAULT nextval('public.product_sales_orders_id_seq'::regclass);


--
-- Name: product_sales_subscribes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_subscribes ALTER COLUMN id SET DEFAULT nextval('public.product_sales_subscribes_id_seq'::regclass);


--
-- Name: product_settlements id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_settlements ALTER COLUMN id SET DEFAULT nextval('public.product_settlements_id_seq'::regclass);


--
-- Name: product_sizes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sizes ALTER COLUMN id SET DEFAULT nextval('public.product_sizes_id_seq'::regclass);


--
-- Name: product_thicknesses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_thicknesses ALTER COLUMN id SET DEFAULT nextval('public.product_thicknesses_id_seq'::regclass);


--
-- Name: product_type_defaults id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_type_defaults ALTER COLUMN id SET DEFAULT nextval('public.product_type_defaults_id_seq'::regclass);


--
-- Name: product_units id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_units ALTER COLUMN id SET DEFAULT nextval('public.product_units_id_seq'::regclass);


--
-- Name: products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products ALTER COLUMN id SET DEFAULT nextval('public.products_id_seq'::regclass);


--
-- Name: products_client_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_client_requests ALTER COLUMN id SET DEFAULT nextval('public.products_client_requests_id_seq'::regclass);


--
-- Name: products_consists id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_consists ALTER COLUMN id SET DEFAULT nextval('public.products_consists_id_seq'::regclass);


--
-- Name: products_executing_receivings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_executing_receivings ALTER COLUMN id SET DEFAULT nextval('public.products_executing_receivings_id_seq'::regclass);


--
-- Name: products_manufacturing_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_orders ALTER COLUMN id SET DEFAULT nextval('public.products_manufacturing_orders_id_seq'::regclass);


--
-- Name: products_manufacturing_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_requests ALTER COLUMN id SET DEFAULT nextval('public.products_manufacturing_requests_id_seq'::regclass);


--
-- Name: products_permission_to_exchange_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods ALTER COLUMN id SET DEFAULT nextval('public.products_permission_to_exchange_goods_id_seq'::regclass);


--
-- Name: products_permission_to_recived_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_recived_goods ALTER COLUMN id SET DEFAULT nextval('public.products_permission_to_recived_goods_id_seq'::regclass);


--
-- Name: products_purchase_petrols id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchase_petrols ALTER COLUMN id SET DEFAULT nextval('public.products_purchase_petrols_id_seq'::regclass);


--
-- Name: products_purchases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases ALTER COLUMN id SET DEFAULT nextval('public.products_purchases_id_seq'::regclass);


--
-- Name: products_purchases_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases_orders ALTER COLUMN id SET DEFAULT nextval('public.products_purchases_orders_id_seq'::regclass);


--
-- Name: products_qties id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_qties ALTER COLUMN id SET DEFAULT nextval('public.products_qties_id_seq'::regclass);


--
-- Name: products_quotes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_quotes ALTER COLUMN id SET DEFAULT nextval('public.products_quotes_id_seq'::regclass);


--
-- Name: products_return_maintaince_bills id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills ALTER COLUMN id SET DEFAULT nextval('public.products_return_maintaince_bills_id_seq'::regclass);


--
-- Name: products_secretariat_export_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_export_goods ALTER COLUMN id SET DEFAULT nextval('public.products_secretariat_export_goods_id_seq'::regclass);


--
-- Name: products_secretariat_import_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_import_goods ALTER COLUMN id SET DEFAULT nextval('public.products_secretariat_import_goods_id_seq'::regclass);


--
-- Name: products_shortcomings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_shortcomings ALTER COLUMN id SET DEFAULT nextval('public.products_shortcomings_id_seq'::regclass);


--
-- Name: products_start_periods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_start_periods ALTER COLUMN id SET DEFAULT nextval('public.products_start_periods_id_seq'::regclass);


--
-- Name: products_stores id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores ALTER COLUMN id SET DEFAULT nextval('public.products_stores_id_seq'::regclass);


--
-- Name: products_stores_transfers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores_transfers ALTER COLUMN id SET DEFAULT nextval('public.products_stores_transfers_id_seq'::regclass);


--
-- Name: products_viras id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_viras ALTER COLUMN id SET DEFAULT nextval('public.products_viras_id_seq'::regclass);


--
-- Name: profit_sales_product_column_sechdulrs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.profit_sales_product_column_sechdulrs ALTER COLUMN id SET DEFAULT nextval('public.profit_sales_product_column_sechdulrs_id_seq'::regclass);


--
-- Name: profit_sales_product_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.profit_sales_product_columns ALTER COLUMN id SET DEFAULT nextval('public.profit_sales_product_columns_id_seq'::regclass);


--
-- Name: project_statuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.project_statuses ALTER COLUMN id SET DEFAULT nextval('public.project_statuses_id_seq'::regclass);


--
-- Name: project_teams id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.project_teams ALTER COLUMN id SET DEFAULT nextval('public.project_teams_id_seq'::regclass);


--
-- Name: projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.projects ALTER COLUMN id SET DEFAULT nextval('public.projects_id_seq'::regclass);


--
-- Name: purch_bills_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purch_bills_columns ALTER COLUMN id SET DEFAULT nextval('public.purch_bills_columns_id_seq'::regclass);


--
-- Name: purch_bills_columns_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purch_bills_columns_sechdules ALTER COLUMN id SET DEFAULT nextval('public.purch_bills_columns_sechdules_id_seq'::regclass);


--
-- Name: purch_bills_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purch_bills_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.purch_bills_filter_twos_id_seq'::regclass);


--
-- Name: purch_bills_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purch_bills_filters ALTER COLUMN id SET DEFAULT nextval('public.purch_bills_filters_id_seq'::regclass);


--
-- Name: purchase_petrols id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchase_petrols ALTER COLUMN id SET DEFAULT nextval('public.purchase_petrols_id_seq'::regclass);


--
-- Name: purchase_petrols Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchase_petrols ALTER COLUMN "Code" SET DEFAULT nextval('public.purchase_petrols_arr_seq'::regclass);


--
-- Name: purchases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases ALTER COLUMN id SET DEFAULT nextval('public.purchases_id_seq'::regclass);


--
-- Name: purchases Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases ALTER COLUMN "Code" SET DEFAULT nextval('public.purchases_arr_seq'::regclass);


--
-- Name: purchases_default_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_default_data ALTER COLUMN id SET DEFAULT nextval('public.purchases_default_data_id_seq'::regclass);


--
-- Name: purchases_expenses_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_expenses_types ALTER COLUMN id SET DEFAULT nextval('public.purchases_expenses_types_id_seq'::regclass);


--
-- Name: purchases_order_expenses_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_order_expenses_types ALTER COLUMN id SET DEFAULT nextval('public.purchases_order_expenses_types_id_seq'::regclass);


--
-- Name: purchases_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders ALTER COLUMN id SET DEFAULT nextval('public.purchases_orders_id_seq'::regclass);


--
-- Name: purchases_orders Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders ALTER COLUMN "Code" SET DEFAULT nextval('public.purchases_orders_arr_seq'::regclass);


--
-- Name: purpose_travel id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purpose_travel ALTER COLUMN id SET DEFAULT nextval('public.purpose_travel_id_seq'::regclass);


--
-- Name: q_r_s id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.q_r_s ALTER COLUMN id SET DEFAULT nextval('public.q_r_s_id_seq'::regclass);


--
-- Name: qualities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.qualities ALTER COLUMN id SET DEFAULT nextval('public.qualities_id_seq'::regclass);


--
-- Name: qualities Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.qualities ALTER COLUMN "Code" SET DEFAULT nextval('public.qualities_arr_seq'::regclass);


--
-- Name: quality_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quality_details ALTER COLUMN id SET DEFAULT nextval('public.quality_details_id_seq'::regclass);


--
-- Name: quote_images id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quote_images ALTER COLUMN id SET DEFAULT nextval('public.quote_images_id_seq'::regclass);


--
-- Name: quote_images Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quote_images ALTER COLUMN "Code" SET DEFAULT nextval('public.quote_images_arr_seq'::regclass);


--
-- Name: quotes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes ALTER COLUMN id SET DEFAULT nextval('public.quotes_id_seq'::regclass);


--
-- Name: quotes Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes ALTER COLUMN "Code" SET DEFAULT nextval('public.quotes_arr_seq'::regclass);


--
-- Name: rabih_education id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rabih_education ALTER COLUMN id SET DEFAULT nextval('public.rabih_education_id_seq'::regclass);


--
-- Name: rates id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rates ALTER COLUMN id SET DEFAULT nextval('public.rates_id_seq'::regclass);


--
-- Name: real_sate_projects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_sate_projects ALTER COLUMN id SET DEFAULT nextval('public.real_sate_projects_id_seq'::regclass);


--
-- Name: real_sate_projects_payments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_sate_projects_payments ALTER COLUMN id SET DEFAULT nextval('public.real_sate_projects_payments_id_seq'::regclass);


--
-- Name: real_state_default_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_state_default_data ALTER COLUMN id SET DEFAULT nextval('public.real_state_default_data_id_seq'::regclass);


--
-- Name: real_units id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_units ALTER COLUMN id SET DEFAULT nextval('public.real_units_id_seq'::regclass);


--
-- Name: real_units_services id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_units_services ALTER COLUMN id SET DEFAULT nextval('public.real_units_services_id_seq'::regclass);


--
-- Name: reasons id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reasons ALTER COLUMN id SET DEFAULT nextval('public.reasons_id_seq'::regclass);


--
-- Name: recipt_maintaince_errors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintaince_errors ALTER COLUMN id SET DEFAULT nextval('public.recipt_maintaince_errors_id_seq'::regclass);


--
-- Name: recipt_maintainces id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces ALTER COLUMN id SET DEFAULT nextval('public.recipt_maintainces_id_seq'::regclass);


--
-- Name: recipt_maintainces Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces ALTER COLUMN "Code" SET DEFAULT nextval('public.recipt_maintainces_arr_seq'::regclass);


--
-- Name: recipt_voucher_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_voucher_details ALTER COLUMN id SET DEFAULT nextval('public.recipt_voucher_details_id_seq'::regclass);


--
-- Name: recipt_vouchers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_vouchers ALTER COLUMN id SET DEFAULT nextval('public.recipt_vouchers_id_seq'::regclass);


--
-- Name: recipt_vouchers Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_vouchers ALTER COLUMN "Code" SET DEFAULT nextval('public.recipt_vouchers_arr_seq'::regclass);


--
-- Name: recipts_sales_petrols id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipts_sales_petrols ALTER COLUMN id SET DEFAULT nextval('public.recipts_sales_petrols_id_seq'::regclass);


--
-- Name: recipts_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipts_types ALTER COLUMN id SET DEFAULT nextval('public.recipts_types_id_seq'::regclass);


--
-- Name: recived_purch_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purch_products ALTER COLUMN id SET DEFAULT nextval('public.recived_purch_products_id_seq'::regclass);


--
-- Name: recived_purchts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purchts ALTER COLUMN id SET DEFAULT nextval('public.recived_purchts_id_seq'::regclass);


--
-- Name: recived_purchts Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purchts ALTER COLUMN "Code" SET DEFAULT nextval('public.recived_purchts_arr_seq'::regclass);


--
-- Name: recived_sales id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales ALTER COLUMN id SET DEFAULT nextval('public.recived_sales_id_seq'::regclass);


--
-- Name: recived_sales Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales ALTER COLUMN "Code" SET DEFAULT nextval('public.recived_sales_arr_seq'::regclass);


--
-- Name: recived_sales_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales_products ALTER COLUMN id SET DEFAULT nextval('public.recived_sales_products_id_seq'::regclass);


--
-- Name: recived_shipment_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_shipment_goods ALTER COLUMN id SET DEFAULT nextval('public.recived_shipment_goods_id_seq'::regclass);


--
-- Name: recived_shipments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_shipments ALTER COLUMN id SET DEFAULT nextval('public.recived_shipments_id_seq'::regclass);


--
-- Name: recived_shipments Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_shipments ALTER COLUMN "Code" SET DEFAULT nextval('public.recived_shipments_arr_seq'::regclass);


--
-- Name: reg_courses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_courses ALTER COLUMN id SET DEFAULT nextval('public.reg_courses_id_seq'::regclass);


--
-- Name: reg_courses_students id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_courses_students ALTER COLUMN id SET DEFAULT nextval('public.reg_courses_students_id_seq'::regclass);


--
-- Name: reg_over_times id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_over_times ALTER COLUMN id SET DEFAULT nextval('public.reg_over_times_id_seq'::regclass);


--
-- Name: reg_over_times Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_over_times ALTER COLUMN "Code" SET DEFAULT nextval('public.reg_over_times_arr_seq'::regclass);


--
-- Name: remove_products_halls id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.remove_products_halls ALTER COLUMN id SET DEFAULT nextval('public.remove_products_halls_id_seq'::regclass);


--
-- Name: rent_contracts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rent_contracts ALTER COLUMN id SET DEFAULT nextval('public.rent_contracts_id_seq'::regclass);


--
-- Name: rent_period_reals id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rent_period_reals ALTER COLUMN id SET DEFAULT nextval('public.rent_period_reals_id_seq'::regclass);


--
-- Name: reports_settings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reports_settings ALTER COLUMN id SET DEFAULT nextval('public.reports_settings_id_seq'::regclass);


--
-- Name: reservations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reservations ALTER COLUMN id SET DEFAULT nextval('public.reservations_id_seq'::regclass);


--
-- Name: reservations Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reservations ALTER COLUMN "Code" SET DEFAULT nextval('public.reservations_arr_seq'::regclass);


--
-- Name: reserve_course_days id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reserve_course_days ALTER COLUMN id SET DEFAULT nextval('public.reserve_course_days_id_seq'::regclass);


--
-- Name: reserve_course_students id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reserve_course_students ALTER COLUMN id SET DEFAULT nextval('public.reserve_course_students_id_seq'::regclass);


--
-- Name: reserve_courses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reserve_courses ALTER COLUMN id SET DEFAULT nextval('public.reserve_courses_id_seq'::regclass);


--
-- Name: resignation_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resignation_requests ALTER COLUMN id SET DEFAULT nextval('public.resignation_requests_id_seq'::regclass);


--
-- Name: resignation_requests Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resignation_requests ALTER COLUMN "Code" SET DEFAULT nextval('public.resignation_requests_arr_seq'::regclass);


--
-- Name: resturant_abouts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_abouts ALTER COLUMN id SET DEFAULT nextval('public.resturant_abouts_id_seq'::regclass);


--
-- Name: resturant_blogs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_blogs ALTER COLUMN id SET DEFAULT nextval('public.resturant_blogs_id_seq'::regclass);


--
-- Name: resturant_cart_check_styles id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_cart_check_styles ALTER COLUMN id SET DEFAULT nextval('public.resturant_cart_check_styles_id_seq'::regclass);


--
-- Name: resturant_carts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_carts ALTER COLUMN id SET DEFAULT nextval('public.resturant_carts_id_seq'::regclass);


--
-- Name: resturant_cupon_codes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_cupon_codes ALTER COLUMN id SET DEFAULT nextval('public.resturant_cupon_codes_id_seq'::regclass);


--
-- Name: resturant_galleries id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_galleries ALTER COLUMN id SET DEFAULT nextval('public.resturant_galleries_id_seq'::regclass);


--
-- Name: resturant_homes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_homes ALTER COLUMN id SET DEFAULT nextval('public.resturant_homes_id_seq'::regclass);


--
-- Name: resturant_index_style_i_i_s id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_index_style_i_i_s ALTER COLUMN id SET DEFAULT nextval('public.resturant_index_style_i_i_s_id_seq'::regclass);


--
-- Name: resturant_index_style_i_s id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_index_style_i_s ALTER COLUMN id SET DEFAULT nextval('public.resturant_index_style_i_s_id_seq'::regclass);


--
-- Name: resturant_menu_styles id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_menu_styles ALTER COLUMN id SET DEFAULT nextval('public.resturant_menu_styles_id_seq'::regclass);


--
-- Name: resturant_nav_foot_styles id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_nav_foot_styles ALTER COLUMN id SET DEFAULT nextval('public.resturant_nav_foot_styles_id_seq'::regclass);


--
-- Name: resturant_privacies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_privacies ALTER COLUMN id SET DEFAULT nextval('public.resturant_privacies_id_seq'::regclass);


--
-- Name: resturant_reservations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_reservations ALTER COLUMN id SET DEFAULT nextval('public.resturant_reservations_id_seq'::regclass);


--
-- Name: resturant_reviews id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_reviews ALTER COLUMN id SET DEFAULT nextval('public.resturant_reviews_id_seq'::regclass);


--
-- Name: resturant_sliders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_sliders ALTER COLUMN id SET DEFAULT nextval('public.resturant_sliders_id_seq'::regclass);


--
-- Name: resturant_socials id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_socials ALTER COLUMN id SET DEFAULT nextval('public.resturant_socials_id_seq'::regclass);


--
-- Name: resturant_styles id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_styles ALTER COLUMN id SET DEFAULT nextval('public.resturant_styles_id_seq'::regclass);


--
-- Name: resturant_sup_page_styles id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_sup_page_styles ALTER COLUMN id SET DEFAULT nextval('public.resturant_sup_page_styles_id_seq'::regclass);


--
-- Name: resturant_tables id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_tables ALTER COLUMN id SET DEFAULT nextval('public.resturant_tables_id_seq'::regclass);


--
-- Name: resturant_terms id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_terms ALTER COLUMN id SET DEFAULT nextval('public.resturant_terms_id_seq'::regclass);


--
-- Name: resturant_video_sections id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_video_sections ALTER COLUMN id SET DEFAULT nextval('public.resturant_video_sections_id_seq'::regclass);


--
-- Name: return_maintaince_bills id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills ALTER COLUMN id SET DEFAULT nextval('public.return_maintaince_bills_id_seq'::regclass);


--
-- Name: return_maintaince_bills Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills ALTER COLUMN "Code" SET DEFAULT nextval('public.return_maintaince_bills_arr_seq'::regclass);


--
-- Name: return_products_stores_transfers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_products_stores_transfers ALTER COLUMN id SET DEFAULT nextval('public.return_products_stores_transfers_id_seq'::regclass);


--
-- Name: return_purch_bills_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_bills_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.return_purch_bills_filter_twos_id_seq'::regclass);


--
-- Name: return_purch_bills_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_bills_filters ALTER COLUMN id SET DEFAULT nextval('public.return_purch_bills_filters_id_seq'::regclass);


--
-- Name: return_purch_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_products ALTER COLUMN id SET DEFAULT nextval('public.return_purch_products_id_seq'::regclass);


--
-- Name: return_purches id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches ALTER COLUMN id SET DEFAULT nextval('public.return_purches_id_seq'::regclass);


--
-- Name: return_purches Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches ALTER COLUMN "Code" SET DEFAULT nextval('public.return_purches_arr_seq'::regclass);


--
-- Name: return_resons id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_resons ALTER COLUMN id SET DEFAULT nextval('public.return_resons_id_seq'::regclass);


--
-- Name: return_sales id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales ALTER COLUMN id SET DEFAULT nextval('public.return_sales_id_seq'::regclass);


--
-- Name: return_sales Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales ALTER COLUMN "Code" SET DEFAULT nextval('public.return_sales_arr_seq'::regclass);


--
-- Name: return_sales_bills_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_bills_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.return_sales_bills_filter_twos_id_seq'::regclass);


--
-- Name: return_sales_bills_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_bills_filters ALTER COLUMN id SET DEFAULT nextval('public.return_sales_bills_filters_id_seq'::regclass);


--
-- Name: return_sales_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_products ALTER COLUMN id SET DEFAULT nextval('public.return_sales_products_id_seq'::regclass);


--
-- Name: return_stors_transfers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_stors_transfers ALTER COLUMN id SET DEFAULT nextval('public.return_stors_transfers_id_seq'::regclass);


--
-- Name: return_stors_transfers Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_stors_transfers ALTER COLUMN "Code" SET DEFAULT nextval('public.return_stors_transfers_arr_seq'::regclass);


--
-- Name: return_without_bills id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_without_bills ALTER COLUMN id SET DEFAULT nextval('public.return_without_bills_id_seq'::regclass);


--
-- Name: return_without_bills Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_without_bills ALTER COLUMN "Code" SET DEFAULT nextval('public.return_without_bills_arr_seq'::regclass);


--
-- Name: roles id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles ALTER COLUMN id SET DEFAULT nextval('public.roles_id_seq'::regclass);


--
-- Name: room_reservations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.room_reservations ALTER COLUMN id SET DEFAULT nextval('public.room_reservations_id_seq'::regclass);


--
-- Name: rooms id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rooms ALTER COLUMN id SET DEFAULT nextval('public.rooms_id_seq'::regclass);


--
-- Name: rooms_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rooms_types ALTER COLUMN id SET DEFAULT nextval('public.rooms_types_id_seq'::regclass);


--
-- Name: rqst_transports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rqst_transports ALTER COLUMN id SET DEFAULT nextval('public.rqst_transports_id_seq'::regclass);


--
-- Name: rqst_transports Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rqst_transports ALTER COLUMN "Code" SET DEFAULT nextval('public.rqst_transports_arr_seq'::regclass);


--
-- Name: safe_transfer_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfer_columns ALTER COLUMN id SET DEFAULT nextval('public.safe_transfer_columns_id_seq'::regclass);


--
-- Name: safe_transfer_columns_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfer_columns_sechdules ALTER COLUMN id SET DEFAULT nextval('public.safe_transfer_columns_sechdules_id_seq'::regclass);


--
-- Name: safe_transfer_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfer_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.safe_transfer_filter_twos_id_seq'::regclass);


--
-- Name: safe_transfer_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfer_filters ALTER COLUMN id SET DEFAULT nextval('public.safe_transfer_filters_id_seq'::regclass);


--
-- Name: safe_transfers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers ALTER COLUMN id SET DEFAULT nextval('public.safe_transfers_id_seq'::regclass);


--
-- Name: safe_transfers Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers ALTER COLUMN "Code" SET DEFAULT nextval('public.safe_transfers_arr_seq'::regclass);


--
-- Name: safes_banks id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safes_banks ALTER COLUMN id SET DEFAULT nextval('public.safes_banks_id_seq'::regclass);


--
-- Name: safes_banks Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safes_banks ALTER COLUMN "Code" SET DEFAULT nextval('public.safes_banks_arr_seq'::regclass);


--
-- Name: sales id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales ALTER COLUMN id SET DEFAULT nextval('public.sales_id_seq'::regclass);


--
-- Name: sales Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales ALTER COLUMN "Code" SET DEFAULT nextval('public.sales_arr_seq'::regclass);


--
-- Name: sales_bills_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_bills_columns ALTER COLUMN id SET DEFAULT nextval('public.sales_bills_columns_id_seq'::regclass);


--
-- Name: sales_bills_columns_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_bills_columns_sechdules ALTER COLUMN id SET DEFAULT nextval('public.sales_bills_columns_sechdules_id_seq'::regclass);


--
-- Name: sales_bills_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_bills_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.sales_bills_filter_twos_id_seq'::regclass);


--
-- Name: sales_bills_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_bills_filters ALTER COLUMN id SET DEFAULT nextval('public.sales_bills_filters_id_seq'::regclass);


--
-- Name: sales_contracts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_contracts ALTER COLUMN id SET DEFAULT nextval('public.sales_contracts_id_seq'::regclass);


--
-- Name: sales_default_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_default_data ALTER COLUMN id SET DEFAULT nextval('public.sales_default_data_id_seq'::regclass);


--
-- Name: sales_fifo_qties id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_fifo_qties ALTER COLUMN id SET DEFAULT nextval('public.sales_fifo_qties_id_seq'::regclass);


--
-- Name: sales_gifts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_gifts ALTER COLUMN id SET DEFAULT nextval('public.sales_gifts_id_seq'::regclass);


--
-- Name: sales_gifts Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_gifts ALTER COLUMN "Code" SET DEFAULT nextval('public.sales_gifts_arr_seq'::regclass);


--
-- Name: sales_maint_fifo_qties id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_maint_fifo_qties ALTER COLUMN id SET DEFAULT nextval('public.sales_maint_fifo_qties_id_seq'::regclass);


--
-- Name: sales_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders ALTER COLUMN id SET DEFAULT nextval('public.sales_orders_id_seq'::regclass);


--
-- Name: sales_orders Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders ALTER COLUMN "Code" SET DEFAULT nextval('public.sales_orders_arr_seq'::regclass);


--
-- Name: sales_petrols id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_petrols ALTER COLUMN id SET DEFAULT nextval('public.sales_petrols_id_seq'::regclass);


--
-- Name: sales_petrols Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_petrols ALTER COLUMN "Code" SET DEFAULT nextval('public.sales_petrols_arr_seq'::regclass);


--
-- Name: sales_subscribes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_subscribes ALTER COLUMN id SET DEFAULT nextval('public.sales_subscribes_id_seq'::regclass);


--
-- Name: sales_subscribes Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_subscribes ALTER COLUMN "Code" SET DEFAULT nextval('public.sales_subscribes_arr_seq'::regclass);


--
-- Name: scientific_materials id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.scientific_materials ALTER COLUMN id SET DEFAULT nextval('public.scientific_materials_id_seq'::regclass);


--
-- Name: secretariat_export_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_export_goods ALTER COLUMN id SET DEFAULT nextval('public.secretariat_export_goods_id_seq'::regclass);


--
-- Name: secretariat_export_goods Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_export_goods ALTER COLUMN "Code" SET DEFAULT nextval('public.secretariat_export_goods_arr_seq'::regclass);


--
-- Name: secretariat_import_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_import_goods ALTER COLUMN id SET DEFAULT nextval('public.secretariat_import_goods_id_seq'::regclass);


--
-- Name: secretariat_import_goods Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_import_goods ALTER COLUMN "Code" SET DEFAULT nextval('public.secretariat_import_goods_arr_seq'::regclass);


--
-- Name: secretariat_qties id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_qties ALTER COLUMN id SET DEFAULT nextval('public.secretariat_qties_id_seq'::regclass);


--
-- Name: secretariat_stores id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_stores ALTER COLUMN id SET DEFAULT nextval('public.secretariat_stores_id_seq'::regclass);


--
-- Name: select_a_p_i_s id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.select_a_p_i_s ALTER COLUMN id SET DEFAULT nextval('public.select_a_p_i_s_id_seq'::regclass);


--
-- Name: server_d_b_s id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.server_d_b_s ALTER COLUMN id SET DEFAULT nextval('public.server_d_b_s_id_seq'::regclass);


--
-- Name: services_reals id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.services_reals ALTER COLUMN id SET DEFAULT nextval('public.services_reals_id_seq'::regclass);


--
-- Name: settlements id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements ALTER COLUMN id SET DEFAULT nextval('public.settlements_id_seq'::regclass);


--
-- Name: settlements Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements ALTER COLUMN "Code" SET DEFAULT nextval('public.settlements_arr_seq'::regclass);


--
-- Name: sewing_accessories id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_accessories ALTER COLUMN id SET DEFAULT nextval('public.sewing_accessories_id_seq'::regclass);


--
-- Name: sewing_al_kabkat id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_al_kabkat ALTER COLUMN id SET DEFAULT nextval('public.sewing_al_kabkat_id_seq'::regclass);


--
-- Name: sewing_al_taktak id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_al_taktak ALTER COLUMN id SET DEFAULT nextval('public.sewing_al_taktak_id_seq'::regclass);


--
-- Name: sewing_buttons id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_buttons ALTER COLUMN id SET DEFAULT nextval('public.sewing_buttons_id_seq'::regclass);


--
-- Name: sewing_chest_pocket_fillings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_chest_pocket_fillings ALTER COLUMN id SET DEFAULT nextval('public.sewing_chest_pocket_fillings_id_seq'::regclass);


--
-- Name: sewing_chest_pockets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_chest_pockets ALTER COLUMN id SET DEFAULT nextval('public.sewing_chest_pockets_id_seq'::regclass);


--
-- Name: sewing_collar_paddings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_collar_paddings ALTER COLUMN id SET DEFAULT nextval('public.sewing_collar_paddings_id_seq'::regclass);


--
-- Name: sewing_collars id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_collars ALTER COLUMN id SET DEFAULT nextval('public.sewing_collars_id_seq'::regclass);


--
-- Name: sewing_cseed_sleeves id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_cseed_sleeves ALTER COLUMN id SET DEFAULT nextval('public.sewing_cseed_sleeves_id_seq'::regclass);


--
-- Name: sewing_cupcake_fillings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_cupcake_fillings ALTER COLUMN id SET DEFAULT nextval('public.sewing_cupcake_fillings_id_seq'::regclass);


--
-- Name: sewing_embroideries id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_embroideries ALTER COLUMN id SET DEFAULT nextval('public.sewing_embroideries_id_seq'::regclass);


--
-- Name: sewing_order_modules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules ALTER COLUMN id SET DEFAULT nextval('public.sewing_order_modules_id_seq'::regclass);


--
-- Name: sewing_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders ALTER COLUMN id SET DEFAULT nextval('public.sewing_orders_id_seq'::regclass);


--
-- Name: sewing_orders Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders ALTER COLUMN "Code" SET DEFAULT nextval('public.sewing_orders_arr_seq'::regclass);


--
-- Name: sewing_request_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_request_details ALTER COLUMN id SET DEFAULT nextval('public.sewing_request_details_id_seq'::regclass);


--
-- Name: sewing_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests ALTER COLUMN id SET DEFAULT nextval('public.sewing_requests_id_seq'::regclass);


--
-- Name: sewing_seed_fillings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_seed_fillings ALTER COLUMN id SET DEFAULT nextval('public.sewing_seed_fillings_id_seq'::regclass);


--
-- Name: sewing_seeds id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_seeds ALTER COLUMN id SET DEFAULT nextval('public.sewing_seeds_id_seq'::regclass);


--
-- Name: sewing_side_pockets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_side_pockets ALTER COLUMN id SET DEFAULT nextval('public.sewing_side_pockets_id_seq'::regclass);


--
-- Name: sewing_sleeves id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_sleeves ALTER COLUMN id SET DEFAULT nextval('public.sewing_sleeves_id_seq'::regclass);


--
-- Name: sewing_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_types ALTER COLUMN id SET DEFAULT nextval('public.sewing_types_id_seq'::regclass);


--
-- Name: shifts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shifts ALTER COLUMN id SET DEFAULT nextval('public.shifts_id_seq'::regclass);


--
-- Name: shifts Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shifts ALTER COLUMN "Code" SET DEFAULT nextval('public.shifts_arr_seq'::regclass);


--
-- Name: shipment_moves id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_moves ALTER COLUMN id SET DEFAULT nextval('public.shipment_moves_id_seq'::regclass);


--
-- Name: shipment_receipts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts ALTER COLUMN id SET DEFAULT nextval('public.shipment_receipts_id_seq'::regclass);


--
-- Name: shipment_receipts Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts ALTER COLUMN "Code" SET DEFAULT nextval('public.shipment_receipts_arr_seq'::regclass);


--
-- Name: shipment_receipts_clients id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts_clients ALTER COLUMN id SET DEFAULT nextval('public.shipment_receipts_clients_id_seq'::regclass);


--
-- Name: shipment_receipts_clients Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts_clients ALTER COLUMN "Code" SET DEFAULT nextval('public.shipment_receipts_clients_arr_seq'::regclass);


--
-- Name: shipment_receipts_lists id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts_lists ALTER COLUMN id SET DEFAULT nextval('public.shipment_receipts_lists_id_seq'::regclass);


--
-- Name: shipment_receipts_lists Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts_lists ALTER COLUMN "Code" SET DEFAULT nextval('public.shipment_receipts_lists_arr_seq'::regclass);


--
-- Name: shipment_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_requests ALTER COLUMN id SET DEFAULT nextval('public.shipment_requests_id_seq'::regclass);


--
-- Name: shipment_requests Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_requests ALTER COLUMN "Code" SET DEFAULT nextval('public.shipment_requests_arr_seq'::regclass);


--
-- Name: shipments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments ALTER COLUMN id SET DEFAULT nextval('public.shipments_id_seq'::regclass);


--
-- Name: shipments Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments ALTER COLUMN "Code" SET DEFAULT nextval('public.shipments_arr_seq'::regclass);


--
-- Name: shipments_distribution_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments_distribution_goods ALTER COLUMN id SET DEFAULT nextval('public.shipments_distribution_goods_id_seq'::regclass);


--
-- Name: shipments_distribution_workers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments_distribution_workers ALTER COLUMN id SET DEFAULT nextval('public.shipments_distribution_workers_id_seq'::regclass);


--
-- Name: shipments_distributions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments_distributions ALTER COLUMN id SET DEFAULT nextval('public.shipments_distributions_id_seq'::regclass);


--
-- Name: shipments_distributions Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments_distributions ALTER COLUMN "Code" SET DEFAULT nextval('public.shipments_distributions_arr_seq'::regclass);


--
-- Name: shipping_companies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_companies ALTER COLUMN id SET DEFAULT nextval('public.shipping_companies_id_seq'::regclass);


--
-- Name: shipping_defaults id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_defaults ALTER COLUMN id SET DEFAULT nextval('public.shipping_defaults_id_seq'::regclass);


--
-- Name: shipping_list_tickets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_list_tickets ALTER COLUMN id SET DEFAULT nextval('public.shipping_list_tickets_id_seq'::regclass);


--
-- Name: shipping_lists id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_lists ALTER COLUMN id SET DEFAULT nextval('public.shipping_lists_id_seq'::regclass);


--
-- Name: shipping_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_orders ALTER COLUMN id SET DEFAULT nextval('public.shipping_orders_id_seq'::regclass);


--
-- Name: shipping_orders Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_orders ALTER COLUMN "Code" SET DEFAULT nextval('public.shipping_orders_arr_seq'::regclass);


--
-- Name: shipping_prices id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_prices ALTER COLUMN id SET DEFAULT nextval('public.shipping_prices_id_seq'::regclass);


--
-- Name: shipping_statuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_statuses ALTER COLUMN id SET DEFAULT nextval('public.shipping_statuses_id_seq'::regclass);


--
-- Name: shipping_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_types ALTER COLUMN id SET DEFAULT nextval('public.shipping_types_id_seq'::regclass);


--
-- Name: shippment_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shippment_products ALTER COLUMN id SET DEFAULT nextval('public.shippment_products_id_seq'::regclass);


--
-- Name: shortcomings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings ALTER COLUMN id SET DEFAULT nextval('public.shortcomings_id_seq'::regclass);


--
-- Name: shortcomings Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings ALTER COLUMN "Code" SET DEFAULT nextval('public.shortcomings_arr_seq'::regclass);


--
-- Name: show_print_defaults id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.show_print_defaults ALTER COLUMN id SET DEFAULT nextval('public.show_print_defaults_id_seq'::regclass);


--
-- Name: social_media id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.social_media ALTER COLUMN id SET DEFAULT nextval('public.social_media_id_seq'::regclass);


--
-- Name: special_cases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.special_cases ALTER COLUMN id SET DEFAULT nextval('public.special_cases_id_seq'::regclass);


--
-- Name: spend_profits id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.spend_profits ALTER COLUMN id SET DEFAULT nextval('public.spend_profits_id_seq'::regclass);


--
-- Name: start_periods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.start_periods ALTER COLUMN id SET DEFAULT nextval('public.start_periods_id_seq'::regclass);


--
-- Name: start_periods Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.start_periods ALTER COLUMN "Code" SET DEFAULT nextval('public.start_periods_arr_seq'::regclass);


--
-- Name: store_count_sales id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.store_count_sales ALTER COLUMN id SET DEFAULT nextval('public.store_count_sales_id_seq'::regclass);


--
-- Name: store_counts id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.store_counts ALTER COLUMN id SET DEFAULT nextval('public.store_counts_id_seq'::regclass);


--
-- Name: store_transfer_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.store_transfer_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.store_transfer_filter_twos_id_seq'::regclass);


--
-- Name: store_transfer_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.store_transfer_filters ALTER COLUMN id SET DEFAULT nextval('public.store_transfer_filters_id_seq'::regclass);


--
-- Name: stores id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores ALTER COLUMN id SET DEFAULT nextval('public.stores_arr_seq'::regclass);


--
-- Name: stores Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores ALTER COLUMN "Code" SET DEFAULT nextval('public.stores_id_seq'::regclass);


--
-- Name: stores_default_data id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data ALTER COLUMN id SET DEFAULT nextval('public.stores_default_data_id_seq'::regclass);


--
-- Name: stores_moves id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves ALTER COLUMN id SET DEFAULT nextval('public.stores_moves_id_seq'::regclass);


--
-- Name: stores_moves_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves_columns ALTER COLUMN id SET DEFAULT nextval('public.stores_moves_columns_id_seq'::regclass);


--
-- Name: stores_moves_columns_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves_columns_sechdules ALTER COLUMN id SET DEFAULT nextval('public.stores_moves_columns_sechdules_id_seq'::regclass);


--
-- Name: stores_moves_filter_twos id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves_filter_twos ALTER COLUMN id SET DEFAULT nextval('public.stores_moves_filter_twos_id_seq'::regclass);


--
-- Name: stores_moves_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves_filters ALTER COLUMN id SET DEFAULT nextval('public.stores_moves_filters_id_seq'::regclass);


--
-- Name: stores_transfer_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_transfer_columns ALTER COLUMN id SET DEFAULT nextval('public.stores_transfer_columns_id_seq'::regclass);


--
-- Name: stores_transfer_columns_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_transfer_columns_sechdules ALTER COLUMN id SET DEFAULT nextval('public.stores_transfer_columns_sechdules_id_seq'::regclass);


--
-- Name: stors_transfers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers ALTER COLUMN id SET DEFAULT nextval('public.stors_transfers_id_seq'::regclass);


--
-- Name: stors_transfers Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers ALTER COLUMN "Code" SET DEFAULT nextval('public.stors_transfers_arr_seq'::regclass);


--
-- Name: student_groups id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.student_groups ALTER COLUMN id SET DEFAULT nextval('public.student_groups_id_seq'::regclass);


--
-- Name: student_importants id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.student_importants ALTER COLUMN id SET DEFAULT nextval('public.student_importants_id_seq'::regclass);


--
-- Name: students id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.students ALTER COLUMN id SET DEFAULT nextval('public.students_id_seq'::regclass);


--
-- Name: sub_images id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sub_images ALTER COLUMN id SET DEFAULT nextval('public.sub_images_id_seq'::regclass);


--
-- Name: sub_virables id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sub_virables ALTER COLUMN id SET DEFAULT nextval('public.sub_virables_id_seq'::regclass);


--
-- Name: subscribe_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.subscribe_types ALTER COLUMN id SET DEFAULT nextval('public.subscribe_types_id_seq'::regclass);


--
-- Name: sup_pages_e_com_designs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sup_pages_e_com_designs ALTER COLUMN id SET DEFAULT nextval('public.sup_pages_e_com_designs_id_seq'::regclass);


--
-- Name: sup_pages_part_two_e_com_designs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sup_pages_part_two_e_com_designs ALTER COLUMN id SET DEFAULT nextval('public.sup_pages_part_two_e_com_designs_id_seq'::regclass);


--
-- Name: sup_pages_wish_comp_e_com_designs id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sup_pages_wish_comp_e_com_designs ALTER COLUMN id SET DEFAULT nextval('public.sup_pages_wish_comp_e_com_designs_id_seq'::regclass);


--
-- Name: taxes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.taxes ALTER COLUMN id SET DEFAULT nextval('public.taxes_id_seq'::regclass);


--
-- Name: taxes Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.taxes ALTER COLUMN "Code" SET DEFAULT nextval('public.taxes_arr_seq'::regclass);


--
-- Name: teachers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.teachers ALTER COLUMN id SET DEFAULT nextval('public.teachers_id_seq'::regclass);


--
-- Name: teachers_groups id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.teachers_groups ALTER COLUMN id SET DEFAULT nextval('public.teachers_groups_id_seq'::regclass);


--
-- Name: teachers_subjects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.teachers_subjects ALTER COLUMN id SET DEFAULT nextval('public.teachers_subjects_id_seq'::regclass);


--
-- Name: terms id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.terms ALTER COLUMN id SET DEFAULT nextval('public.terms_id_seq'::regclass);


--
-- Name: terms_maintainces id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.terms_maintainces ALTER COLUMN id SET DEFAULT nextval('public.terms_maintainces_id_seq'::regclass);


--
-- Name: testclients id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.testclients ALTER COLUMN id SET DEFAULT nextval('public.testclients_id_seq'::regclass);


--
-- Name: ticekt_issues id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ticekt_issues ALTER COLUMN id SET DEFAULT nextval('public.ticekt_issues_id_seq'::regclass);


--
-- Name: ticket_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ticket_products ALTER COLUMN id SET DEFAULT nextval('public.ticket_products_id_seq'::regclass);


--
-- Name: tickets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tickets ALTER COLUMN id SET DEFAULT nextval('public.tickets_id_seq'::regclass);


--
-- Name: tickets Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tickets ALTER COLUMN "Code" SET DEFAULT nextval('public.tickets_arr_seq'::regclass);


--
-- Name: translation_tourism_companies id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translation_tourism_companies ALTER COLUMN id SET DEFAULT nextval('public.translation_tourism_companies_id_seq'::regclass);


--
-- Name: translte_modules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translte_modules ALTER COLUMN id SET DEFAULT nextval('public.translte_modules_id_seq'::regclass);


--
-- Name: translte_modules_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translte_modules_details ALTER COLUMN id SET DEFAULT nextval('public.translte_modules_details_id_seq'::regclass);


--
-- Name: transltors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transltors ALTER COLUMN id SET DEFAULT nextval('public.transltors_id_seq'::regclass);


--
-- Name: transport_contractors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_contractors ALTER COLUMN id SET DEFAULT nextval('public.transport_contractors_id_seq'::regclass);


--
-- Name: transport_permit_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_permit_details ALTER COLUMN id SET DEFAULT nextval('public.transport_permit_details_id_seq'::regclass);


--
-- Name: transport_permits id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_permits ALTER COLUMN id SET DEFAULT nextval('public.transport_permits_id_seq'::regclass);


--
-- Name: transport_prices id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_prices ALTER COLUMN id SET DEFAULT nextval('public.transport_prices_id_seq'::regclass);


--
-- Name: transport_receivers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_receivers ALTER COLUMN id SET DEFAULT nextval('public.transport_receivers_id_seq'::regclass);


--
-- Name: transports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transports ALTER COLUMN id SET DEFAULT nextval('public.transports_id_seq'::regclass);


--
-- Name: transports Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transports ALTER COLUMN "Code" SET DEFAULT nextval('public.transports_arr_seq'::regclass);


--
-- Name: unloading_shipments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.unloading_shipments ALTER COLUMN id SET DEFAULT nextval('public.unloading_shipments_id_seq'::regclass);


--
-- Name: unloading_shipments Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.unloading_shipments ALTER COLUMN "Code" SET DEFAULT nextval('public.unloading_shipments_arr_seq'::regclass);


--
-- Name: unloading_shipments_goods id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.unloading_shipments_goods ALTER COLUMN id SET DEFAULT nextval('public.unloading_shipments_goods_id_seq'::regclass);


--
-- Name: unloading_shipments_workers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.unloading_shipments_workers ALTER COLUMN id SET DEFAULT nextval('public.unloading_shipments_workers_id_seq'::regclass);


--
-- Name: update_values_investors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.update_values_investors ALTER COLUMN id SET DEFAULT nextval('public.update_values_investors_id_seq'::regclass);


--
-- Name: upload_accountings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.upload_accountings ALTER COLUMN id SET DEFAULT nextval('public.upload_accountings_id_seq'::regclass);


--
-- Name: users_moves id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users_moves ALTER COLUMN id SET DEFAULT nextval('public.users_moves_id_seq'::regclass);


--
-- Name: v_a_prices id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_prices ALTER COLUMN id SET DEFAULT nextval('public.v_a_prices_id_seq'::regclass);


--
-- Name: v_a_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_products ALTER COLUMN id SET DEFAULT nextval('public.v_a_products_id_seq'::regclass);


--
-- Name: v_a_qties id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_qties ALTER COLUMN id SET DEFAULT nextval('public.v_a_qties_id_seq'::regclass);


--
-- Name: vendor_account_statement_column_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendor_account_statement_column_sechdules ALTER COLUMN id SET DEFAULT nextval('public.vendor_account_statement_column_sechdules_id_seq'::regclass);


--
-- Name: vendor_account_statement_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendor_account_statement_columns ALTER COLUMN id SET DEFAULT nextval('public.vendor_account_statement_columns_id_seq'::regclass);


--
-- Name: vendor_filters id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendor_filters ALTER COLUMN id SET DEFAULT nextval('public.vendor_filters_id_seq'::regclass);


--
-- Name: vendor_products id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendor_products ALTER COLUMN id SET DEFAULT nextval('public.vendor_products_id_seq'::regclass);


--
-- Name: vendors id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors ALTER COLUMN id SET DEFAULT nextval('public.vendors_id_seq'::regclass);


--
-- Name: vendors Code; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors ALTER COLUMN "Code" SET DEFAULT nextval('public.vendors_arr_seq'::regclass);


--
-- Name: vendors_statements_column_sechdules id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors_statements_column_sechdules ALTER COLUMN id SET DEFAULT nextval('public.vendors_statements_column_sechdules_id_seq'::regclass);


--
-- Name: vendors_statements_columns id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors_statements_columns ALTER COLUMN id SET DEFAULT nextval('public.vendors_statements_columns_id_seq'::regclass);


--
-- Name: virables id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.virables ALTER COLUMN id SET DEFAULT nextval('public.virables_id_seq'::regclass);


--
-- Name: vouchers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vouchers ALTER COLUMN id SET DEFAULT nextval('public.vouchers_id_seq'::regclass);


--
-- Name: web_sliders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.web_sliders ALTER COLUMN id SET DEFAULT nextval('public.web_sliders_id_seq'::regclass);


--
-- Name: wishlists id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wishlists ALTER COLUMN id SET DEFAULT nextval('public.wishlists_id_seq'::regclass);


--
-- Name: work_departments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.work_departments ALTER COLUMN id SET DEFAULT nextval('public.work_departments_id_seq'::regclass);


--
-- Name: workers_sales_petrols id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.workers_sales_petrols ALTER COLUMN id SET DEFAULT nextval('public.workers_sales_petrols_id_seq'::regclass);


--
-- Name: zkteco_devices id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.zkteco_devices ALTER COLUMN id SET DEFAULT nextval('public.zkteco_devices_id_seq'::regclass);


--
-- Data for Name: a_v_pro_check_qties; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.a_v_pro_check_qties (id, "Product", "AvQty", "Qty", "RequestQty", created_at, updated_at, "OriginalProduct", "NewRequestQty") FROM stdin;
\.


--
-- Data for Name: abouts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.abouts (id, "Image", "Image_2", "Image_3", "Arabic_Title", "English_Title", "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	AboutImages/bTiXmoIvZgg7T3RUX9Y1.jpeg	AboutImages/NqfSP0j3p9wn3n5X4N3s.jpeg	AboutImages/DdpthioSZUZlqRR1szE9.jpeg	BELLE MULTIPURPOSE BOOTSTRAP 4 HTML TEMPLATE	BELLE MULTIPURPOSE BOOTSTRAP 4 HTML TEMPLATE	SED UT PERSPICIATIS UNDE OMNIS ISTE NATUS ERROR\r\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain.\r\n\nsimple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted.\r\n\nABOUT ANNIMEX WEB\r\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.\r\n\nAt vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga.	SED UT PERSPICIATIS UNDE OMNIS ISTE NATUS ERROR\r\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain.\r\n\nsimple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted.\r\n\nABOUT ANNIMEX WEB\r\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.\r\n\nAt vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga.	\N	2022-06-04 15:13:12
\.


--
-- Data for Name: abstracts_contractors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.abstracts_contractors (id, "Code", "Date", "Name", "Value", "Statement", "Contractor", "Project", "Edit", "Delete", "Edit_New_Code", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: acccounting_manuals; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.acccounting_manuals (id, "Code", "Name", "Type", "Parent", "Note", "User", created_at, updated_at, "Account_Code", "Pro_Group", "NameEn", "SearchCode") FROM stdin;
824	606	مصروفات البيع و التوزيع	0	20	\N	1	2022-04-13 19:11:41	2022-10-18 22:42:48	75	\N	Selling and Distribution Expenses	\N
826	403	تحصيل دليفري	1	18	\N	11	2022-05-15 16:52:32	2022-10-18 22:42:47	57	\N	Delivery Service Collection	\N
2523	20102	مورد افتراضي	1	37	\N	11	2024-02-09 00:08:40	2024-02-09 00:08:40	\N	\N	Default Vendor	\N
119	205	مجمع الاهلاك	0	16	\N	1	2021-10-02 08:23:41	2024-02-14 23:12:23	41	\N	Asset Depreciation Accumulator	\N
852	607	رسوم بنوك	0	20	\N	11	2022-11-03 07:48:29	2022-11-03 07:48:29	٠	\N	Bank Fees	\N
853	608	مصاريف شركات التقسيط	0	20	\N	11	2022-11-03 07:49:34	2022-11-03 07:49:34	0	\N	Installment Companies Expenses	\N
854	60701	رسوم خدمه	1	852	\N	11	2022-11-03 07:49:52	2022-11-03 07:49:52	0	\N	Service Charges	\N
856	404	إيردات اخري	0	18	\N	11	2022-11-03 07:55:13	2022-11-03 07:55:13	0	\N	Other Revenues	\N
888	1020103	شركات التقسيط	0	23	\N	11	2022-11-03 07:54:02	2022-11-03 07:54:02	0	\N	Installment Companies	\N
2497	6060204	تكلفه مصنعيه	1	55	\N	11	2022-12-21 02:46:32	2022-12-21 02:46:32	0	\N	Manufacturing Cost	\N
2498	6060205	تالف الصيانه	1	55	\N	11	2023-01-16 18:58:53	2023-01-16 18:58:53	0	\N	Maintenance Damaged	\N
2503	6060107	مندوب مبيعات افتراضي  عموله 	1	164	\N	11	2024-02-08 23:52:53	2024-02-08 23:54:43	\N	\N	Default Sales  Commission 	\N
2505	20401	مندوب مبيعات افتراضي  استحقاق 	1	43	\N	11	2024-02-08 23:52:53	2024-02-08 23:54:43	\N	\N	Default Sales  Merit 	\N
2513	20403	مهندس افتراضي  استحقاق 	1	43	\N	11	2024-02-08 23:56:24	2024-02-08 23:56:24	\N	\N	Default Eng  Merit 	\N
2518	60113	نادل افتراضي	1	53	\N	11	2024-02-08 23:58:21	2024-02-08 23:58:21	\N	\N	Default Waiter	\N
2502	60109	مندوب مبيعات افتراضي	1	53	\N	11	2024-02-08 23:52:53	2024-02-08 23:54:43	\N	\N	Default Sales	\N
2504	102040108	مندوب مبيعات افتراضي  عهده 	1	121	\N	11	2024-02-08 23:52:53	2024-02-08 23:54:43	\N	\N	Default Sales  Custody 	\N
2510	60111	مهندس افتراضي	1	53	\N	11	2024-02-08 23:56:24	2024-02-08 23:56:24	\N	\N	Default Eng	\N
2511	6060109	مهندس افتراضي  عموله 	1	164	\N	11	2024-02-08 23:56:24	2024-02-08 23:56:24	\N	\N	Default Eng  Commission 	\N
2512	102040110	مهندس افتراضي  عهده 	1	121	\N	11	2024-02-08 23:56:24	2024-02-08 23:56:24	\N	\N	Default Eng  Custody 	\N
2519	6060111	نادل افتراضي  عموله 	1	164	\N	11	2024-02-08 23:58:21	2024-02-08 23:58:21	\N	\N	Default Waiter  Commission 	\N
2520	102040112	نادل افتراضي  عهده 	1	121	\N	11	2024-02-08 23:58:21	2024-02-08 23:58:21	\N	\N	Default Waiter  Custody 	\N
2521	20405	نادل افتراضي  استحقاق 	1	43	\N	11	2024-02-08 23:58:21	2024-02-08 23:58:21	\N	\N	Default Waiter  Merit 	\N
2496	405	ايراد مصنعية	1	18	\N	11	2022-12-21 02:46:07	2024-02-14 23:15:25	0	\N	Manufacturing Revenue	\N
895	40401	ايردات رسوم الخدمة	1	856	\N	11	2022-11-03 07:55:46	2024-02-14 23:15:43	0	\N	Service Charges Revenues	\N
2527	209	استحقاق مستثمرين	0	16	\N	11	2024-11-05 12:49:22	2024-11-05 12:49:22	\N	\N	Investors' Eligibility	\N
57	6060202	كهرباء	1	55	\N	1	2021-06-16 01:26:56	2022-10-18 22:42:48	85	\N	Electricity	\N
58	6060203	مصروفات ضيافه	1	55	\N	1	2021-06-16 01:41:37	2022-10-18 22:42:48	86	\N	Hosting Expenses	\N
70	10206	وسيط المخازن	0	22	\N	1	2021-07-16 12:00:41	2022-10-18 22:42:47	29	\N	Intermediate Warehouse Account	\N
71	1020601	وسيط المخازن	1	70	\N	1	2021-07-16 12:01:10	2022-10-18 22:42:47	30	\N	Intermediate Warehouse Account	\N
97	603	شركات الشحن	0	20	\N	1	2021-08-08 10:48:13	2022-10-18 22:42:48	70	\N	Freight Companies	\N
112	20202	بدون ضريبة	1	39	\N	1	2021-08-23 00:16:53	2022-10-18 22:42:47	37	\N	Without Taxes	\N
121	1020401	العهد	0	26	\N	1	2021-10-02 08:24:25	2022-10-18 22:42:47	18	\N	Custody	\N
122	10102	الأثاث المكتبي	0	21	\N	1	2021-10-02 08:25:42	2022-10-18 22:42:47	3	\N	Office Furniture	\N
136	303	الارباح و الخسائر	0	17	\N	1	2021-10-09 12:10:07	2022-10-18 22:42:47	47	\N	Profits and Losses	\N
139	30301	الارباح الحالية	0	136	\N	1	2021-10-13 17:36:17	2022-10-18 22:42:47	48	\N	Current Profits	\N
140	30302	الارباح الرأس مالية	0	136	\N	1	2021-10-13 17:36:41	2022-10-18 22:42:47	49	\N	Capital Profits	\N
141	30303	الارباح المرحلة	0	136	\N	1	2021-10-13 17:37:01	2022-10-18 22:42:47	50	\N	Retained Earnings	\N
147	103	اصول اخري	0	15	\N	1	2021-10-14 17:02:03	2022-10-18 22:42:47	31	\N	Other Assets	\N
148	207	خصوم طويلة الاجل	0	16	\N	1	2021-10-14 17:02:50	2022-10-18 22:42:47	42	\N	Long-Term Liabilities	\N
164	60601	عمولات الموظفين	0	824	\N	1	2021-10-28 09:42:04	2022-10-18 22:42:48	76	\N	Employee Commissions	\N
206	402	خصم مكتسب	1	18	\N	1	2022-02-16 22:01:22	2022-10-18 22:42:47	56	\N	Earned Discount	\N
15	1	الأصول	0	0	\N	1	\N	\N	0	\N	Assets	\N
2499	1020503	مخزن الطلبات	1	27	\N	11	2023-08-30 11:11:31	2023-08-30 11:11:31	\N	\N	Requests Store	\N
16	2	الخصوم	0	0	\N	1	2021-06-16 00:29:12	2022-10-18 22:42:47	32	\N	Liabilities	\N
17	3	حقوق الملكية	0	0	\N	1	2021-06-16 00:29:32	2022-10-18 22:42:47	43	\N	Shareholders equity	\N
18	4	الايرادات	0	0	\N	1	2021-06-16 00:29:56	2022-10-18 22:42:47	51	\N	Revenues	\N
19	5	تكلفة المبيعات	0	0	\N	1	2021-06-16 00:30:22	2022-10-18 22:42:48	58	\N	Cost Of Goods Sold (COGS)	\N
20	6	المصروفات	0	0	\N	1	2021-06-16 00:30:50	2022-10-18 22:42:48	60	\N	Expenses	\N
21	101	أصول ثابتة	0	15	\N	1	2021-06-16 00:31:46	2022-10-18 22:42:47	2	\N	Fixed Assets	\N
22	102	أصول متداولة	0	15	\N	1	2021-06-16 00:32:28	2022-10-18 22:42:47	4	\N	Current Assets	\N
23	10201	النقدية وما في حكمها	0	22	\N	1	2021-06-16 00:34:14	2022-10-18 22:42:47	5	\N	All kinds of cash	\N
24	10202	العملاء	0	22	\N	1	2021-06-16 00:34:53	2022-10-18 22:42:47	11	\N	Customers	\N
25	10203	أوراق قبض	0	22	\N	1	2021-06-16 00:36:12	2022-10-18 22:42:47	15	\N	Notes Receivable	\N
26	10204	مدينين	0	22	\N	1	2021-06-16 00:37:03	2022-10-18 22:42:47	17	\N	Debtors	\N
27	10205	المخزون	0	22	\N	1	2021-06-16 00:37:44	2022-10-18 22:42:47	26	\N	Inventory	\N
28	1020101	الخزينة	0	23	\N	1	2021-06-16 00:38:47	2022-10-18 22:42:47	6	\N	Cash Fund	\N
29	1020102	نقدية بالبنك	0	23	\N	1	2021-06-16 00:40:04	2022-10-18 22:42:47	8	\N	Bank cash	\N
35	1020301	أوراق قبض	1	25	\N	1	2021-06-16 00:46:08	2022-10-18 22:42:47	16	\N	Notes Receivable	\N
37	201	الموردين	0	16	\N	1	2021-06-16 01:12:06	2022-10-18 22:42:47	33	\N	Suppliers	\N
39	202	الضرائب	0	16	\N	1	2021-06-16 01:13:20	2022-10-18 22:42:47	35	\N	Taxes	\N
2525	20501	مجمع اهلاك الاثاث المكتبي	1	119	\N	11	2024-02-14 23:13:11	2024-02-14 23:13:11	0	\N	مجمع اهلاك الاثاث المكتبي	\N
41	203	أوراق دفع	0	16	\N	1	2021-06-16 01:14:38	2022-10-18 22:42:47	38	\N	Notes Payable	\N
42	20301	أوراق دفع	1	41	\N	1	2021-06-16 01:15:16	2022-10-18 22:42:47	39	\N	Notes Payable	\N
43	204	دائنين	0	16	\N	1	2021-06-16 01:15:57	2022-10-18 22:42:47	40	\N	Creditors	\N
44	301	رأس المال	0	17	\N	1	2021-06-16 01:16:55	2022-10-18 22:42:47	44	\N	Capital	\N
45	30101	رأس المال	1	44	\N	1	2021-06-16 01:17:44	2022-10-18 22:42:47	45	\N	Capital	\N
46	302	جاري الشركاء	0	17	\N	1	2021-06-16 01:18:34	2022-10-18 22:42:47	46	\N	Partners Current Account	\N
47	401	إيرادات المبيعات	0	18	\N	1	2021-06-16 01:19:32	2022-10-18 22:42:47	52	\N	Sales Revenue	\N
48	40101	المبيعات	1	47	\N	1	2021-06-16 01:20:15	2022-10-18 22:42:47	53	\N	Sales	\N
49	40102	مردودات المبيعات	1	47	\N	1	2021-06-16 01:20:45	2022-10-18 22:42:47	54	\N	Sales Return	\N
50	60401	خصم مسموح به	1	851	\N	1	2021-06-16 01:21:13	2022-10-18 22:42:48	72	\N	Allowed Discount	\N
51	40104	خدمة صالة	1	47	\N	1	2021-06-16 01:21:57	2022-10-18 22:42:47	55	\N	Lounge Service	\N
52	501	تكلفه بضاعه مباعه	1	19	\N	1	2021-06-16 01:23:13	2022-10-18 22:42:48	59	\N	Cost Of Goods Sold (COGS)	\N
53	601	المرتبات والأجور	0	20	\N	1	2021-06-16 01:24:33	2022-10-18 22:42:48	61	\N	Salaries and Wages	\N
54	60101	الموظفين	0	53	\N	1	2021-06-16 01:25:07	2022-10-18 22:42:48	62	\N	Employees	\N
55	60602	مصروفات التشغيل	0	824	\N	1	2021-06-16 01:25:48	2022-10-18 22:42:48	83	\N	Operating Expenses	\N
56	6060201	الإيجار	1	55	\N	1	2021-06-16 01:26:20	2022-10-18 22:42:48	84	\N	Rentals	\N
188	60501	مصروف اهلاك الاثاث المكتبي	1	120	\N	1	2021-12-29 11:16:16	2024-02-14 23:14:32	74	\N	New Depreciation	\N
2526	208	المستثمرين	0	16	\N	11	2024-11-05 12:49:01	2024-11-05 12:49:01	\N	\N	Investors	\N
2506	60110	مندوب مشتريات افتراضي	1	53	\N	11	2024-02-08 23:54:06	2024-02-08 23:55:02	\N	\N	Default Purchaser	\N
2522	1020205	عميل افتراضي	1	24	\N	11	2024-02-09 00:08:02	2024-02-09 00:08:02	\N	\N	Default Customer	\N
825	602	مصروفات عمومية وادارية	0	20	\N	1	2022-04-13 19:12:04	2022-10-18 22:42:48	69	\N	General and Administrative Expenses	\N
30	102010101	الخزينة الرئيسية	1	28	\N	1	2021-06-16 00:41:19	2024-02-09 00:18:47	7	\N	Main Safe	\N
830	1020402	حساب معايره	1	26	\N	11	2022-05-21 01:12:14	2022-10-18 22:42:47	25	\N	Calibrated Account	\N
2508	102040109	مندوب مشتريات افتراضي  عهده 	1	121	\N	11	2024-02-08 23:54:07	2024-02-08 23:55:02	\N	\N	Default Purchaser  Custody 	\N
851	604	خصم مسموح به	0	20	\N	1	\N	2022-10-18 22:42:48	71	\N	Allowed Discount	\N
2500	1020504	المخزن الرئيسي	1	27	\N	11	2024-02-08 23:43:55	2024-02-08 23:43:55	\N	\N	Main Store	\N
2501	1020204	المخزن الرئيسي   عميل مخزن 	1	24	\N	11	2024-02-08 23:43:55	2024-02-08 23:43:55	\N	\N	Main Store    Store Client 	\N
2507	6060108	مندوب مشتريات افتراضي  عموله 	1	164	\N	11	2024-02-08 23:54:07	2024-02-08 23:55:02	\N	\N	Default Purchaser  Commission 	\N
2509	20402	مندوب مشتريات افتراضي  استحقاق 	1	43	\N	11	2024-02-08 23:54:07	2024-02-08 23:55:02	\N	\N	Default Purchaser  Merit 	\N
2514	60112	مندوب توصيل افتراضي	1	53	\N	11	2024-02-08 23:57:46	2024-02-08 23:57:46	\N	\N	Default Delivery	\N
2515	6060110	مندوب توصيل افتراضي  عموله 	1	164	\N	11	2024-02-08 23:57:46	2024-02-08 23:57:46	\N	\N	Default Delivery  Commission 	\N
2516	102040111	مندوب توصيل افتراضي  عهده 	1	121	\N	11	2024-02-08 23:57:46	2024-02-08 23:57:46	\N	\N	Default Delivery  Custody 	\N
2517	20404	مندوب توصيل افتراضي  استحقاق 	1	43	\N	11	2024-02-08 23:57:46	2024-02-08 23:57:46	\N	\N	Default Delivery  Merit 	\N
32	102010201	البنك الاهلي	1	29	\N	1	2021-06-16 00:42:58	2024-02-09 00:20:06	9	\N	SNB	\N
2524	60301	زاجل	1	97	\N	11	2024-02-09 00:41:56	2024-02-09 00:41:56	\N	\N	Zagel	\N
40	20201	القيمة المضافة	1	39	\N	1	2021-06-16 01:13:49	2024-02-14 23:10:57	36	\N	VAT	\N
120	605	مصروفات الاهلاك	0	20	\N	1	2021-10-02 08:23:55	2024-02-14 23:13:50	73	\N	Depreciation	\N
2528	304	مصروفات ارباح مستثمرين	0	17	\N	11	2024-11-05 12:49:39	2024-11-13 08:56:22	0	\N	Investors' Dividend Expenses	\N
2529	609	مصاريف مشاريع	0	20	\N	11	2025-02-19 14:49:54	2025-02-19 14:49:54	\N	\N	مصاريف مشاريع	\N
2530	210	استحقاق المقاولين	0	16	\N	11	2025-03-09 13:19:33	2025-03-09 13:19:33	\N	\N	استحقاق المقاولين	\N
2531	610	تطبيقات التوصيل	0	20	\N	11	2025-04-25 13:48:29	2025-04-25 13:48:29	\N	\N	Delivery App	\N
2532	60603	مصاريف السيارات	0	824	\N	11	2025-08-21 06:50:32	2025-08-21 06:50:32	\N	\N	مصاريف السيارات	\N
2533	211	استحقاق سيارات الشحن	0	16	\N	11	2025-08-22 18:27:51	2025-08-22 18:27:51	\N	\N	استحقاق سيارات الشحن	\N
2534	6060206	مصاريف الشحنة	1	55	\N	11	2025-08-22 18:48:23	2025-08-22 18:48:23	\N	\N	مصاريف الشحنة	\N
2535	611	مقاولين النقل	0	20	\N	11	2025-12-19 16:52:08	2025-12-19 16:52:08	\N	\N	Transport Contractors	\N
2536	612	الإعتمادات المستندية	0	20	\N	11	2026-04-06 22:20:04	2026-04-06 22:20:04	\N	\N	Documentary Credits	\N
2537	613	مصاريف العقارات	0	20	\N	11	2026-04-20 11:22:46	2026-04-20 11:22:46	\N	\N	Real State Expenses	\N
2538	61301	ملاك العقارات	0	2537	\N	11	2026-04-20 11:23:11	2026-04-20 11:23:11	\N	\N	Real State Owners	\N
2539	61302	مصاريف الوحدات	0	2537	\N	11	2026-04-20 11:23:29	2026-04-20 11:23:29	\N	\N	Real State Units	\N
2540	20406	تأمينات العقارات	0	43	\N	11	2026-04-24 08:52:27	2026-04-24 08:52:27	\N	\N	تأمينات العقارات	\N
\.


--
-- Data for Name: accounts_default_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.accounts_default_data (id, "Draw", "Coin", created_at, updated_at, "Sure_Recipts", "Show_Group", "Account_Balance", "Salary", "Commission", "Coin_Show", "Cost_Show", "Draw_Show", "Collect_Show", "Sales_Bill_Show", "Hide_Edit_Delete", "Order_Number", "Tax_Show", "Cost_Center_Show", "Emp_Vouchers_Accounts") FROM stdin;
2	1	1	2021-08-13 16:44:14	2024-09-27 13:08:03	0	0	0	2	2	0	0	0	0	0	\N	\N	\N	\N	\N
\.


--
-- Data for Name: activites; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.activites (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
8	تجاري	Commercial	2022-04-13 02:50:04	2024-02-09 00:52:30
\.


--
-- Data for Name: add_translates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.add_translates (id, "Code", "Date", "Client", "Client_Type", "From_Lang", "To_Lang", "Company", "Num_Translted_Word", "ID_Name", "ID_Profession", "ID_Martial_Status", "Passport_Name", "Passport_Profession", "Passport_Martial_Status", "Extracted", "Extracted_Birthplace", "Extracted_Issuer", "CommercialRegistration", "Commercial_Name", "Commercial_Type", "Commercial_Start_Date", "Commercial_Number", "Commercial_Capital", "Commercial_Issuer", "Commercial_Address", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: additional_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.additional_products (id, "Additional_Product", "Product", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: addressses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.addressses (id, "Address_Name", "Street", "Special_Mark", "Buliding", "Floor", "Flat", "Details", "Location", "Governrate", "City", "Place", "Customer", created_at, updated_at, "Lat", "Lng") FROM stdin;
\.


--
-- Data for Name: admins; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.admins (id, email, name, password, image, phone, hidden, emp, ship, vend, status, remember_token, created_at, updated_at, cli, lat, long, account, safe, store, type, roles_name, code, token, price_sale, discount, price_1, price_2, price_3, pos_pay, executor, cost_price, price_level, guest, pos_stores, pos_hold, cost_price_purch, cost_price_sales, manu_order_precent, pos_product, "Cash", "Later", "Check", "Installment", "Cash_Visa", "Cash_Collection", "Delivery", "InstallmentCompanies", "Date", ticket_price, ticket_discount, "nameEn", package, job_order_price, "Visa_Network", bill_discount, pos_safes, expire, expire_type, attend_date, bank, "Apps") FROM stdin;
45	GuestO@test.com	Guest	$2y$10$0DrRyqpJGzxh8sY5lqK8g.u4XXo9VNUUx24bqWiGuFCGidiEF6EvO	AdminsImages/FCad1Zo5eARHkj6f1DwJ.png	23123	1	0	0	0	0	\N	2021-12-14 17:23:09	2024-12-04 22:09:46	0	\N	\N	0	\N	\N	Admin	Guest	\N	\N	0	0	\N	\N	\N	0	\N	0	1	1	0	0	0	0	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	1	1	0	\N	0	0	\N	0	\N	\N	\N
46	GuestTw@test.com	Guest T	$2y$10$PvmLA3AHV4DfzXMI2Y3HP.Is4Ulyd0NZU9dasKtR.J4kOOgYxO7EK	AdminsImages/ql9kcuPqE6pjB743YQBg.png	12313	1	0	0	0	0	\N	2021-12-14 17:24:12	2024-12-04 22:09:57	0	\N	\N	0	\N	\N	Admin	Guest	\N	\N	0	0	\N	\N	\N	0	\N	0	2	1	0	0	0	0	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	2	1	0	\N	0	0	\N	0	\N	\N	\N
47	GuestTh@test.com	GuestTh	$2y$10$AhaiV.Ao3D236mryP91C4uF.2C/7Ri33vHNN1nn6dF9M1/YCM8vn2	AdminsImages/C1WJh3cJRQs8sOwJarNc.png	31123	1	0	0	0	0	\N	2021-12-14 17:24:51	2024-12-04 22:10:07	0	\N	\N	0	\N	\N	Admin	Guest	\N	\N	0	0	\N	\N	\N	0	\N	0	3	1	0	0	0	0	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	3	1	0	\N	0	0	\N	0	\N	\N	\N
11	Klar@test.com	Admin	$2y$10$SzeJx7MvABY47p54spRPsulC8/JVVlYIJ7DDbOrs/Uu/Z8VBx7j3e	AdminsImages/zUmg7MdzbQVBLGEt0WE7.png	01062201060	1	0	0	0	0	\N	2021-08-08 10:29:23	2026-05-22 12:50:51	0	\N	\N	0	\N	\N	Admin	Owner	\N	\N	0	0	\N	\N	\N	0	\N	0	\N	\N	0	0	0	0	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	Admin	15	0	\N	0	0	\N	0	\N	\N	\N
1	admin@rabih.com	Admin	$2y$10$Du3oWudJWDmcAAOj0NvRR.7skrwMZvaOm2WiChLu68irl.aH5eRZu	AdminsImages/PDk0eltFIlYtSRmI0XwM.png	01062201060	1	0	0	0	0	\N	\N	2026-05-22 12:51:02	0	\N	\N	0	\N	\N	Admin	Owner	\N	\N	0	0	\N	\N	\N	0	\N	0	\N	\N	0	0	0	0	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	Admin	15	0	\N	0	0	\N	0	\N	\N	\N
59	support@rabih.com	Support	$2y$10$Y2vJbOa0hMsfXiKADFtHle5kC6.wpd2FHJvAeH2STw7yeiHoykNMK	\N	\N	1	0	0	0	0	\N	2025-05-12 09:11:50	2026-05-22 12:51:17	0	\N	\N	0	\N	\N	Admin	Owner	\N	\N	0	0	\N	\N	\N	0	\N	0	\N	\N	0	0	0	0	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	Support	15	0	\N	0	0	\N	0	\N	\N	\N
\.


--
-- Data for Name: all_groups; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.all_groups (id, "Group", created_at, updated_at, "Name") FROM stdin;
\.


--
-- Data for Name: allowences_emps; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.allowences_emps (id, "AmountAllow", "Allow", "Emp", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: apps_change_prices; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.apps_change_prices (id, "App", "Product", "Price_One", "Price_Two", "Price_Three", created_at, updated_at, "Barcode") FROM stdin;
\.


--
-- Data for Name: articles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.articles (id, "Image", "Sub_Image", "Date", "Arabic_Title", "English_Title", "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	ArticlesImages/Tc4BdtjP1euOSuW9OmoC.jpeg	ArticlesImages/8pWQWSpnZFPjdliv8uuk.jpeg	May 02, 2017	It's all about how you wear	It's all about how you wear	On sait depuis longtemps que travailler avec du texte lisible et contenant du sens est source de distractions, et empêche de se concentrer sur la mise en page elle-même. L'avantage du Lorem Ipsum sur un texte générique comme 'Du texte. Du texte. Du texte.' est qu'il possède une distribution de lettres plus ou moins normale, et en tout cas comparable avec celle du français standard. De nombreuses suites logicielles de.\r\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\nSample Text Listing\r\n\nDonec et lacus mattis ipsum feugiat interdum non id sapien.\r\n\nQuisque et mauris eget nisi vestibulum rhoncus molestie a ante.\r\n\nCurabitur pulvinar ex at tempus sodales.\r\n\nMauris efficitur magna quis lectus lobortis venenatis.\r\n\nNunc id enim eget augue molestie lobortis in a purus.\r\n\nDonec maximus quam at lectus bibendum, non suscipit nunc tristique.\r\n\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.	On sait depuis longtemps que travailler avec du texte lisible et contenant du sens est source de distractions, et empêche de se concentrer sur la mise en page elle-même. L'avantage du Lorem Ipsum sur un texte générique comme 'Du texte. Du texte. Du texte.' est qu'il possède une distribution de lettres plus ou moins normale, et en tout cas comparable avec celle du français standard. De nombreuses suites logicielles de.\r\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\nSample Text Listing\r\n\nDonec et lacus mattis ipsum feugiat interdum non id sapien.\r\n\nQuisque et mauris eget nisi vestibulum rhoncus molestie a ante.\r\n\nCurabitur pulvinar ex at tempus sodales.\r\n\nMauris efficitur magna quis lectus lobortis venenatis.\r\n\nNunc id enim eget augue molestie lobortis in a purus.\r\n\nDonec maximus quam at lectus bibendum, non suscipit nunc tristique.\r\n\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.	2022-06-04 15:34:21	2022-06-04 15:34:21
2	ArticlesImages/hFg38z7lhXhdL5p3YGS4.jpeg	ArticlesImages/0JIkTM2ovwsZJsVLPTag.jpeg	May 02, 2017	IT'S ALL ABOUT HOW YOU WEAR	IT'S ALL ABOUT HOW YOU WEAR	qweqweqwe	qweqeqweqwe	2022-06-06 20:02:53	2022-06-06 20:02:53
\.


--
-- Data for Name: assay_bill_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assay_bill_details (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "Qty", "Price", "Discount", "TDiscount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Store", "Product", "Exp_Date", "V1", "V2", "Unit", "Date", "Vendor", "SmallCode", "SmallQty", "Code", "Refernce_Number", "Safe", "Delegate", "Coin", "User", "Cost_Center", "Type", "Ship", "Payment_Method", "Total_Net", "ChassisNumber", "MotorNumber", created_at, updated_at, "Bill") FROM stdin;
\.


--
-- Data for Name: assay_bills; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assay_bills (id, "Code", "Date", "Draw", "Payment_Method", "Vendor_Bill_Date", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "DiscountBill", "TaxBill", "TaxCode", "Time", "Branch", "File", "Current_Credit", "Residual", "Total_Net", "Project", "Assay", "Done", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: assay_project_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assay_project_details (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "Qty", "Price", "Discount", "TDiscount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Store", "Product", "Exp_Date", "V1", "V2", "Unit", "Date", "Vendor", "SmallCode", "SmallQty", "Code", "Refernce_Number", "Safe", "Delegate", "Coin", "User", "Cost_Center", "Type", "Ship", "Payment_Method", "Total_Net", "ChassisNumber", "MotorNumber", "Asay", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: assay_projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assay_projects (id, "Code", "Date", "Draw", "Payment_Method", "Vendor_Bill_Date", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "DiscountBill", "TaxBill", "TaxCode", "Time", "Branch", "File", "Current_Credit", "Residual", "Total_Net", "Project", "Done", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: assembly_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assembly_products (id, "Qty", "Price", "Total", "P_Ar_Name", "P_En_Name", "P_Code", "Unit", "Product", p_id, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: assets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assets (id, "Code", "Name", "Asset_Type", "Depreciation_Method", "Purchases_Date", "Operation_Date", "Cost", "Previous_Depreciation", "Asset_Net", "Annual_Depreciation_Ratio", "Annual_Depreciation", "Life_Span", "Image", "Note", "Depreciation_Expenses", "Depreciation_Complex", "Main_Account", "Account", "User", created_at, updated_at, "Draw", "Coin", "Cost_Center", "Branch", "Sort_Asset", "Vendor", "Safe", "Ehlak", "Payment_Method", "M1", "M2", "M3", "M4", "M5", "M6", "M7", "M8", "M9", "M10", "M11", "M12", "NameEn", "Asset_Type_En", "Depreciation_Method_En", arr, "Delete", "Sale", "Amount", "Client", "CurrentAssetPrice", "Last_Depreciation_Month") FROM stdin;
\.


--
-- Data for Name: assets_expenses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.assets_expenses (id, "Code", "Date", "Name", "Draw", "Amount", "Asset", "Safe", "Coin", "Cost_Center", "User", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: attend_departure_import; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.attend_departure_import (id, "In_Time", "Out_Time", "Date", "Month", "Note", "Attend", "Emp", created_at, updated_at) FROM stdin;
1	7:30	16:30	01-01-2024	45292	\N	3	33	\N	\N
2	8:30	17:30	01-01-2024	45292	\N	3	34	\N	\N
\.


--
-- Data for Name: attendance_emps; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.attendance_emps (id, "In_Time", "Date", "Month", "Note", "Attend", "Emp", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: attendances; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.attendances (id, "Code", "Date", "Month", "Note", "User", created_at, updated_at, "Status", arr) FROM stdin;
\.


--
-- Data for Name: attendence_policy_emps; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.attendence_policy_emps (id, "Emp", created_at, updated_at, "From", "To", "Discount") FROM stdin;
\.


--
-- Data for Name: barcode_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.barcode_products (id, "Name", "Code", "Qty", "Price", "Product", "V1", "V2", "Unit", created_at, updated_at, "Group") FROM stdin;
\.


--
-- Data for Name: barcode_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.barcode_settings (id, "Code", "Name", "Type", "Direction", "Width", "Height", "Padding_L", "Padding_R", "Padding_T", "Padding_B", "Margin_L", "Margin_R", "Margin_T", "Margin_B", "Barcode_Width", "Barcode_Height", "Font_Size", "Line_Height", created_at, updated_at, "Height_Logo", "Width_Logo", "NameEn", arr) FROM stdin;
6	2	الطباعة الافتراضية	2	1	3.8	2.5	.5	.5	.5	.5	.5	.5	.5	.5	3	0.5	6	4	2022-03-09 09:57:35	2024-02-09 00:42:34	0	0	Default Print	\N
\.


--
-- Data for Name: barcode_shows; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.barcode_shows (id, "Company_Name", "Product_Name", "Product_Price", "Unit", "Coin", "Group", created_at, updated_at, "Code", "Logo") FROM stdin;
1	1	\N	\N	\N	\N	\N	2022-03-31 18:05:19	2022-03-31 18:05:19	\N	\N
2	1	1	\N	\N	\N	\N	2022-03-31 18:05:19	2022-03-31 18:05:19	\N	\N
3	1	1	1	\N	\N	\N	2022-03-31 18:05:19	2022-03-31 18:05:19	\N	\N
4	1	1	1	\N	\N	\N	2022-03-31 18:05:19	2022-03-31 18:05:19	1	\N
\.


--
-- Data for Name: befroe_footers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.befroe_footers (id, "Image", "Arabic_Title", "Arabic_Desc", "English_Title", "English_Desc", created_at, updated_at) FROM stdin;
2	<i class="icon anm anm-credit-card-front-r"></i>	SECURE PAYMENTS	All payment are Secured and trusted.	SECURE PAYMENTS	All payment are Secured and trusted.	\N	2022-06-04 19:54:42
3	<i class="icon anm anm-comments-l"></i>	ONLINE SUPPORT	We support online 24/7 on day	ONLINE SUPPORT	We support online 24/7 on day	\N	2022-06-04 19:55:04
4	<i class="icon anm anm-dollar-sign-r"></i>	MONEY GUARANTEE	30 days money back guarantee	MONEY GUARANTEE	30 days money back guarantee	\N	2022-06-04 19:55:16
5	<i class="icon anm anm-truck-l"></i>	FREE SHIPPING & RETURN	Free shipping on all US orders	FREE SHIPPING & RETURN	Free shipping on all US orders	\N	2022-06-04 19:55:29
\.


--
-- Data for Name: beneftis_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.beneftis_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: bones_sales_petrols; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.bones_sales_petrols (id, "Bone_Amount", "Bone", "SalesPetrol", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: bones_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.bones_types (id, "Name", "Account", created_at, updated_at, "NameEn") FROM stdin;
\.


--
-- Data for Name: borrowas; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.borrowas (id, "Code", "Date", "Month", "Amount", "Draw", "Note", "Safe", "Emp", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "Delete", "Refernce_Number") FROM stdin;
\.


--
-- Data for Name: branches; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.branches (id, "Arabic_Name", "English_Name", created_at, updated_at, "Letter", "Code", "Location", "Budget", "Lat", "Lang", "Branch") FROM stdin;
3	الفرع الرئيسي	main Branch	2022-10-18 22:34:33	2024-02-09 00:17:43	\N	\N	\N	\N	\N	\N	\N
\.


--
-- Data for Name: brands; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.brands (id, "Name", "Note", created_at, updated_at, "Image", "Sales_Show", "Store_Show", "NameEn", "Sales_Precet") FROM stdin;
17	الماركة الافتراضية	\N	2022-06-06 19:15:43	2024-02-09 00:27:02	BrandsImages/5hcSrdUnrIK1AmXf3s61.png	1	3	Default Brand	0
\.


--
-- Data for Name: campaigns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.campaigns (id, "Arabic_Name", "English_Name", "Platform", created_at, updated_at) FROM stdin;
7	حملة 2024	حملة 2024	8	2022-04-13 02:50:33	2024-02-09 00:51:37
\.


--
-- Data for Name: capital_increases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.capital_increases (id, "Date", "Month", "Value", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: capitals; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.capitals (id, "Authorized_Capital", "Source_Capital", "Shares_Number", "Nominal_Value_of_Shares", "Actual_Share_Value", "Actual_Capital", created_at, updated_at, "Working_Capital", "New_Shares_Number", "Capital_Increase", "New_Source_Capital", "Total_Investment") FROM stdin;
1	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
2	100000	150000	10	15000	15000	150000	2021-10-13 15:36:23	2021-10-13 15:36:23	\N	\N	\N	\N	\N
\.


--
-- Data for Name: car_shippings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.car_shippings (id, "Name", "Max_Load", "Delegate", "Driver", "Car_Number", "Color", "Lisence_Expire_Date", "GPS_Num", "Car_Type", "Car_Statue", "Insurance", "Ownership", created_at, updated_at, "Cost_Center", "Rent_Amount", "Deal_Type", "Deal_Amount", "Account", "AccountMerit", "Minimum") FROM stdin;
\.


--
-- Data for Name: cars_sales_petrols; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cars_sales_petrols (id, "Car_Amount", "Car", "SalesPetrol", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: cart_stores; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cart_stores (id, "Name", "NameEn", "V_Name", "VV_Name", "P_Code", "AvQty", "Qty", "Price", "Image", "Total", "User", created_at, updated_at, "Product") FROM stdin;
\.


--
-- Data for Name: catalog_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.catalog_requests (id, "Product", "Product_Code", "Name", "Phone", "Governrate", "Status", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: chat_issues; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.chat_issues (id, "Name", "Date", "Time", "Desc", "Image", "Issue", created_at, updated_at, "Type", "Appear") FROM stdin;
30	Admin	2024-02-04	09-37 PM	\N	AdminsImages/H1fQroGeALye9kfwlLOJ.png	9	2024-02-04 21:37:45	2024-02-04 21:37:45	1	\N
31	Admin	2024-02-04	09-41 PM	\N	AdminsImages/ZUWBoib7IOGJVz5bRYO7.png	9	2024-02-04 21:41:18	2024-02-04 21:41:18	1	\N
\.


--
-- Data for Name: checks_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.checks_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
4	مسطر	Underlined	2022-05-24 00:44:58	2024-02-09 00:22:37
\.


--
-- Data for Name: cities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cities (id, "Arabic_Name", "English_Name", "Gov", created_at, updated_at, "Ship_Price", "Shipping_Company", "SearchCode", "ShippingCode") FROM stdin;
9	الرياض	Riyadh	5	2024-02-09 00:56:49	2024-02-09 00:56:49	1	5	\N	\N
1	مدينة نصر	Nasr City	2	2021-07-25 23:46:59	2024-02-09 00:58:24	1	5	\N	\N
\.


--
-- Data for Name: clearances; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.clearances (id, "Code", "Date", "Contract_Num", "Client", "System", "Insurance", "Issue", "Amount", "Note", "Unit", created_at, updated_at, "Safe", "Coin", "Draw", "Recipt") FROM stdin;
\.


--
-- Data for Name: client_account_statement_column_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.client_account_statement_column_sechdules (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Client", created_at, updated_at, "ShiftCode", "Executor") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-16 21:55:01	1	1
\.


--
-- Data for Name: client_account_statement_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.client_account_statement_columns (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Client", created_at, updated_at, "ShiftCode", "Executor") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-16 21:43:33	1	1
\.


--
-- Data for Name: client_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.client_filters (id, "Product", "Code", "Name", "VName", "VVName", "V1", "V2", "Qty", "Price", "Total", created_at, updated_at, "Client") FROM stdin;
\.


--
-- Data for Name: client_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.client_requests (id, "Code", "Date", "Note", "Product_Numbers", "Total_Qty", "Client", "File", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: client_sales_petrols; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.client_sales_petrols (id, "Customer_Amount", "Customer", "SalesPetrol", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: client_statuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.client_statuses (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
5	عميل مهم	VIP	2022-03-08 01:33:27	2024-02-09 00:51:55
4	محتمل	Perhaps	2022-02-18 01:19:26	2024-02-09 00:52:13
\.


--
-- Data for Name: clients_statements_column_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.clients_statements_column_sechdules (id, "Account_Code", "Account_Name", "Debiator_Before", "Creditor_Before", "Total_Debitor", "Total_Creditor", "Debitor_Balance", "Creditor_Balance", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	\N	2022-10-17 13:26:19
\.


--
-- Data for Name: clients_statements_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.clients_statements_columns (id, "Account_Code", "Account_Name", "Debiator_Before", "Creditor_Before", "Total_Debitor", "Total_Creditor", "Debitor_Balance", "Creditor_Balance", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	\N	2022-10-17 13:08:16
\.


--
-- Data for Name: coins; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.coins (id, "Arabic_Name", "English_Name", created_at, updated_at, "Draw", "Symbol", "Code", "Image") FROM stdin;
1	جنيه مصري	Egyptian Pound	2021-06-14 15:44:02	2022-06-08 17:39:50	1	EGP	\N	\N
7	دولار	Dollar	2024-02-09 00:21:32	2024-02-09 00:21:32	3.75	$	$	\N
4	ريال سعودي	SAR	2021-06-16 01:47:03	2024-02-09 00:21:54	1	SAR	1	\N
\.


--
-- Data for Name: comments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.comments (id, "Comment", "Date", "Product", "User", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: comments_clients; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.comments_clients (id, "Comment", "Responsible", "Customer", created_at, updated_at, "CommentEn", "Code", "Date", "Rate", "Visit_Cost", "Note", "Time", "Type", lat, lng, "Voice", "Next_Meet") FROM stdin;
\.


--
-- Data for Name: company_cars; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.company_cars (id, "Name", "Number", "Account", created_at, updated_at, "NameEn") FROM stdin;
\.


--
-- Data for Name: company_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.company_data (id, "Name", "Phone1", "Phone2", "Address", "Commercial_Record", "Tax_File_Number", "Logo", "Icon", "Print_Text", created_at, updated_at, "Print_Text_Footer", "Seal", "Print_Text_Footer_Sales", "Name_Sales_Bill", "Name_Sales_Order_Bill", "Print_Text_Footer_Quote", "Name_Quote_Bill", "Print_Text_Footer_Secretariat", "Logo_Store", "Phone3", "Phone4", "Icon_Store", "View", "Tax_Registration_Number", "Tax_activity_code", work_nature, "Governrate", "City", "Place", "Nationality", "Buliding_Num", "Street", "Postal_Code", tax_magistrate, "Client_ID", "Serial_Client_ID", "Version_Type", "Computer_SN", "Invoice_Type", "Floor", "Room", "Landmark", "Add_Info", "Print_Text_Footer_Manufacturing", "POS_Version", "Path", "DB_Backup", "NameEn", "Print_Text_En", "Print_Text_Footer_En", "Print_Text_Footer_Manufacturing_En", "Print_Text_Footer_Sales_En", "Print_Text_Footer_Quote_En", "Print_Text_Footer_Secretariat_En", "Name_Sales_Bill_En", "Name_Sales_Order_Bill_En", "Name_Quote_Bill_En", "AddressEn", "HomeMainScreen", "PDF", "Email", "Location", "Bill_View", "Font_Type", "Welcome_Arabic_Word_App", "Welcome_English_Word_App", "Domain", "Serial_App", "Attend_Lat", "Attend_Lng", "Attend_Space", "Attend_Time_Before", "Attend_Time_After", "Departure_Time_Before", "Departure_Time_After", "Verfification_Time", "Organaziation_Common_Name", "Organaziation_Name", "Organaziation_Tax_ID", "Organaziation_Address", "Organaziation_Department", "Organaziation_Category", "ZATCA_Production", "OTP_Status", "Use_Zatca", "Backup_Time", "Purchases_Print_View", "Purchases_Order_Print_View", "Sales_Order_Print_View", "Quote_Print_View", zatca_environment, zatca_compliance_certificate, zatca_compliance_secret, zatca_compliance_request_id, zatca_production_certificate, zatca_production_secret, zatca_production_request_id, zatca_csr_path, zatca_private_key_path, zatca_last_icv, zatca_last_invoice_hash, zatca_onboarded_at, "Statement_Print_View") FROM stdin;
1	رابح	00201062201060	00201030086000	المملكة العربية السعودية	1234	1234	LogoImages/Ua0ztVdY9JG0mBswtvoL.png	IconImages/vjhq5ivjwe9QqcwBhSQ9.png	تشرفنا بزيارتكم	2021-08-13 16:30:58	2024-12-04 22:05:49	تشرفنا بزيارتكم	LogoImages/DrZ9IR5TvZPjwUv5GUWp.png	تشرفنا بزيارتكم	فاتورة مبيعات	امر بيع	تشرفنا بزيارتكم	عرض سعر	تشرفنا بزيارتكم	LogoImages/tplmBxjlaVcHdPLteBKi.png	\N	\N	LogoImages/7jZGVUuxAhLjBjGal0Jb.png	0	1	1	P	2	1	6	2	1	1	1	1	1	1	1.0	1	Experimental	1	1	1	1	تشرفنا بزيارتكم	1	1	1	RABIH	Welcome	Welcome	Welcome	Welcome	Welcome	Welcome	Sales Invoice	Sales Order	Quotation	Saudi Arabia	1	\N	info@rabiherp.com	<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d452.9142716996173!2d46.6578223!3d24.750415!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e2ee30fcda81b0f%3A0xd2fad773e3b6b328!2sRoyal%20Suits!5e0!3m2!1sen!2seg!4v1707426597227!5m2!1sen!2seg" width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>	1	8	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	\N
\.


--
-- Data for Name: compare_prices_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.compare_prices_columns (id, "Date", "Product_Code", "Product_Name", "Unit", "Type", "Bill_Num", "Incom", "Outcom", "Credit", "Group", "Brand", "Store", "User", "Safe", "Branch", "SalePrice", "ProductPrice", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-09 18:47:57
\.


--
-- Data for Name: compare_prices_columns_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.compare_prices_columns_sechdules (id, "Date", "Product_Code", "Product_Name", "Unit", "Type", "Bill_Num", "Incom", "Outcom", "Credit", "Group", "Brand", "Store", "User", "Safe", "Branch", "SalePrice", "ProductPrice", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-09 18:48:22
\.


--
-- Data for Name: compare_prices_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.compare_prices_filter_twos (id, "Date", "Type", "Bill_Num", "Incom", "Outcom", "Current", "P_Ar_Name", "P_En_Name", "P_Code", "Unit", "Group", "Store", "Product", "V1", "V2", "User", "CostIn", "CostOut", "CostCurrent", "CostOneIn", "CostOneOut", "CostOneCurrent", "QTY", "Brand", "Safe", "Branch", "SalePrice", "ProductPrice", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: compare_prices_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.compare_prices_filters (id, "Date", "Type", "Bill_Num", "Incom", "Outcom", "Current", "P_Ar_Name", "P_En_Name", "P_Code", "Unit", "Group", "Store", "Product", "V1", "V2", "User", "CostIn", "CostOut", "CostCurrent", "CostOneIn", "CostOneOut", "CostOneCurrent", "QTY", "Brand", "Safe", "Branch", "SalePrice", "ProductPrice", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: compares; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.compares (id, "Product", "User", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: competitors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.competitors (id, "Facebook", "Twitter", "Instagram", "Name", "Country", "Whatsapp", "Addtional_Link", "Phone", "Pinterest", created_at, updated_at, "NameEn", "Website") FROM stdin;
\.


--
-- Data for Name: consist_maintainces; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.consist_maintainces (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "AvQty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Maintaince", "TDiscount", "Group", "Brand", "Code", "Date", "Note", "Serial_Num", "Total_Price", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_Cost", "Total_Bf_Taxes", "Total_Taxes", "Draw", "Company", "Device_Type", "Device_Case", "Coin", "Cost_Center", "Account", "User", "Status", "Pattern_Image", "Time", "Payment_Method", "Password", "Pay", "Eng_Note", "Reason", "Report_Client", "Work", "StoreMain", "Eng", "Recipient", "Branch", "RefuseReason", "NoteRecived", "Returned", "CustomerGroup", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: consists; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.consists (id, "Code", "Date", "Darw", "Products_Number", "Total_Qty", "Total_Price", "Account", "Store", "Coin", "User", created_at, updated_at, "Time", "Branch", arr, "Delete") FROM stdin;
\.


--
-- Data for Name: contact_u_s; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.contact_u_s (id, "Map", "Arabic_Title", "English_Title", "Arabic_Desc", "English_Desc", "Opening_Hours", "Phone1", "Phone2", "Phone_Header", "Email", "Arabic_Address", "English_Address", created_at, updated_at) FROM stdin;
1	www.google.com/maps/embed?pb	DROP US A LINE	DROP US A LINE	Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500	Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500	Mon - Sat : 9am - 11pm	01062201060	0105206971	01062201060	info@klarapps.com	Cairo,Egypt	Cairo,Egypt	\N	2022-06-04 15:27:21
\.


--
-- Data for Name: contract_statuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.contract_statuses (id, "Arabic_Name", "English_Name", "Color", created_at, updated_at) FROM stdin;
1	Defaukt	Defaukt	#000000	2025-12-20 18:37:26	2025-12-20 18:37:26
\.


--
-- Data for Name: contractors_real_projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.contractors_real_projects (id, "Arabic_Name", "English_Name", "Expenses_Account", "Merit_Account", "Project", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: cost_centers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cost_centers (id, "Arabic_Name", "English_Name", created_at, updated_at, "Parent", "Type") FROM stdin;
4	مركز تكلفة	Cost Center	2022-02-18 01:22:58	2024-02-09 00:22:59	0	0
\.


--
-- Data for Name: counters_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.counters_types (id, "Name", "Current_Read", "Store", "Product", created_at, updated_at, "NameEn") FROM stdin;
\.


--
-- Data for Name: countris; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.countris (id, "Arabic_Name", "English_Name", "Flag", created_at, updated_at, "Safe", "Coin", "Store", "Code", "SearchCode") FROM stdin;
2	مصر	Egypt	CountriesImages/0YNgesTQQDPJblD7725Y.png	2022-06-04 19:37:49	2024-02-09 00:53:35	30	1	21	\N	\N
3	السعوديه	Saudi Arabia	CountriesImages/pgME9vgrOAqViEVToi4i.png	2022-06-04 19:39:05	2024-02-09 00:53:46	32	4	21	\N	\N
\.


--
-- Data for Name: coupon_codes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.coupon_codes (id, "Code", "Amount", "Status", "Num", "Used", "Expire", created_at, updated_at) FROM stdin;
1	224466	100	0	3	2	2022-06-30	2022-06-04 15:19:31	2022-06-10 02:33:22
\.


--
-- Data for Name: courses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.courses (id, "Code", "Arabic_Name", "English_Name", "Arabic_Desc", "English_Desc", "Category", "Lec_Num", "Hours", "Subject", created_at, updated_at, "Note") FROM stdin;
1	1	Course 1	Course 1	Course 1	Course 1	1	8	100	1	2024-01-21 00:37:23	2024-01-21 00:38:01	\N
\.


--
-- Data for Name: courses_categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.courses_categories (id, "Image", "Arabic_Name", "English_Name", "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	CoursesCategoryImages/5CCMF4VEBCKWsSvv9ej3.png	فئة ١	فئة ١	فئة ١	فئة ١	2024-01-19 10:58:18	2024-01-19 10:58:18
\.


--
-- Data for Name: courses_halls; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.courses_halls (id, "Arabic_Name", "English_Name", "Chairs_Num", "Wiifii", "Air_Condition", "Place", "Number", created_at, updated_at) FROM stdin;
1	قاعة ١	قاعة ١	\N	1	1	\N	1	2024-01-19 11:02:53	2024-01-19 11:02:53
\.


--
-- Data for Name: courses_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.courses_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
1	خاص	خاص	2024-01-19 11:00:19	2024-01-19 11:00:19
2	VIP	VIP	2024-01-19 11:00:30	2024-01-19 11:00:30
3	مجموعة	مجموعة	2024-01-19 11:00:42	2024-01-19 11:00:42
\.


--
-- Data for Name: crm_default_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.crm_default_data (id, "Price_Level", "Governrate", "City", "Responsible", "Activity", "Campagin", "ClientStatus", "Platforms", created_at, updated_at, "Client_Delegate", "Nationality", "ClientGroup") FROM stdin;
3	1	2	1	38	8	7	5	8	2022-04-13 02:52:58	2024-02-09 00:55:56	0	2	3
\.


--
-- Data for Name: custom_prints; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.custom_prints (id, "Sales_Print_Type", "Sales_Bill_Code", "Sales_Date", "Sales_Coin", "Sales_Draw", "Sales_Payment_Method", "Sales_Status", "Sales_Executor", "Sales_Refernce_Number", "Sales_Safe", "Sales_Client", "Sales_Delegate", "Sales_Store", "Sales_User", "Sales_Cost_Center", "Sales_Notes", "Sales_Pro_Code", "Sales_Pro_Name", "Sales_Pro_Unit", "Sales_Pro_Qty", "Sales_Pro_Price", "Sales_Pro_Discount", "Sales_Pro_Total_Bf_Tax", "Sales_Pro_Total_Tax", "Sales_Pro_Total", "Sales_Pro_Store", "Sales_Pro_Desc", "Sales_Pro_Exp_Date", "Sales_Pro_Weight", "Sales_Pro_Patch_Number", "Sales_Product_Numbers", "Sales_Total_Qty", "Sales_Total_Discount", "Sales_Total_Bf_Taxes", "Sales_Total_Taxes", "Sales_Total_Price", "Sales_Paid", "Sales_Residual", "Sales_Taknet", "Sales_Credit", "Sales_Barcode", "Sales_Text", "Sales_Seal", "Purch_Print_Type", "Purch_Bill_Code", "Purch_Date", "Purch_Vendor_Bill_Date", "Purch_Coin", "Purch_Draw", "Purch_Payment_Method", "Purch_Status", "Purch_Refernce_Number", "Purch_Safe", "Purch_Vendor", "Purch_Delegate", "Purch_Store", "Purch_User", "Purch_Cost_Center", "Purch_Notes", "Purch_Pro_Code", "Purch_Pro_Name", "Purch_Pro_Unit", "Purch_Pro_Qty", "Purch_Pro_Price", "Purch_Pro_Discount", "Purch_Pro_Total_Bf_Tax", "Purch_Pro_Total_Tax", "Purch_Pro_Total", "Purch_Pro_Store", "Purch_Pro_Exp_Date", "Purch_Product_Numbers", "Purch_Total_Qty", "Purch_Total_Discount", "Purch_Total_Bf_Taxes", "Purch_Total_Taxes", "Purch_Total_Price", "Purch_Paid", "Purch_Residual", "Purch_Taknet", "Purch_Credit", "Purch_Barcode", "Purch_Text", "Purch_Seal", created_at, updated_at, "Sales_Client_Phone", "Sales_Resdiual", "Sales_Total_Return", "Sales_Client_Address", "Sales_Pro_Total_Net", "Purch_Pro_Total_Net") FROM stdin;
1	2	1	1	0	0	0	0	0	0	0	1	1	0	0	0	1	1	1	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	2	1	1	0	0	0	0	0	0	0	1	1	0	0	0	1	1	1	0	1	1	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	1	1	1	0	2024-04-14 16:57:48	2024-09-27 13:09:04	0	0	0	0	0	0
\.


--
-- Data for Name: customer_comments_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.customer_comments_products (id, "Product", "Comment", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: customer_follow_ups; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.customer_follow_ups (id, "Code", "Date", "Client", "Subject", "Rate", "Emp", "Visit_Cost", "Note", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: customer_sizes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.customer_sizes (id, "Customers_ID", "SizeName", "L", "LB", "B", "S", "AH", "CH", chest_full, "BK", "HD", cuff, gusset_len, gusset_width_mm, front, neck_size, net_chest, front_shoulder_height, shoulder_height, back_neck_depth, back_down_shoulder, shoulder_opening, hand_cuff, arm_rotation, arm_length, arm_elbow_width, neck_height, front_neck_depth, "Pocket_chest_height", neck_height_qalap, hand_length_kabk, hand_rotation_kabk, created_at, updated_at, "Kabak_Width", neck_size_qalap, "B_Net", "BK_Net", "HD_Net", "IshtakTopWidth", "IshtakBottomWidth", "SideTopWidth", "SideBottomWidth") FROM stdin;
\.


--
-- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.customers (id, "Code", "Date", "Name", "Price_Level", "Phone", email, password, "ID_Number", "Address", "Qualifications", "Birthdate", "Social_Status", "Passport_Number", "Company_Name", "Commercial_Registration_No", "Tax_Card_No", "Bank_Account", "Image", "Next_Time", "Executions_Status", "Governrate", "City", "Responsible", "Activity", "Campagin", "ClientStatus", "Account", "User", created_at, updated_at, "Platform", "Contract_Start", "Contract_End", code, country, "Tax_Registration_Number", "Tax_activity_code", work_nature, "Buliding_Num", "Street", "Postal_Code", tax_magistrate, "Floor", "Room", "Landmark", "Add_Info", "Phone2", "Phone3", "Phone4", "Warranty", "Group", "Place", "Nationality", "Product", token, "NameEn", arr, "SearchCode", "Credit_Limit", "Respon_Person", "Respon_Person_Phone", "Operating_Date", "Activation_Serial", "Activation_Code", "Repayment_Period", "SecurityInquiry", "ReasonSecurityInquiry", "FieldInquiry", "ResonFieldInquiry", "Lat", "Lang", "Guarantor", "Branch", "Points") FROM stdin;
1	1	2024-02-09	عميل افتراضي	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	potential_client	\N	\N	38	8	7	5	2522	11	2024-02-09 00:08:02	2024-02-09 00:08:02	8	\N	\N	\N	\N	\N	\N	P	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	3	\N	2	\N	\N	Default Customer	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
\.


--
-- Data for Name: customers_files; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.customers_files (id, "File", "Customer", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: customers_groups; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.customers_groups (id, "Arabic_Name", "English_Name", created_at, updated_at, "Discount") FROM stdin;
3	مجموعة عامة	General Group	\N	\N	0
\.


--
-- Data for Name: customers_rate_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.customers_rate_types (id, "Arabic_Name", "English_Name", "Color", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: customers_tickets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.customers_tickets (id, "Code", "Problem", "Status", "Bill_Number", "Responsible", "Customer", "User", created_at, updated_at, "ProblemEn", arr, "TicketIssues", "Date", "Voice", lat, lng) FROM stdin;
\.


--
-- Data for Name: deducations_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.deducations_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: deductions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.deductions (id, "Code", "Date", "Month", "Amount", "Draw", "Note", "Emp", "Coin", "Type", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: default_data_show_hides; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.default_data_show_hides (id, "Status", "Shipping_Company", "Vendor_Date", "Expire_Date", "Total_BF_Taxes", "Total_Taxes", "Coin", "Draw", "Delegate_Sale", "Delegate_Purchase", "Note", "Refrence_Number", created_at, updated_at, "Cost_Center", "Branch", "Serial_Num", "Pass", "Pattern_Image", "Barcode_Print", "Unit_Print", "Total_BF_Print", "Discount_Print", "Tax_Print", "A5", "A4", "CM8", "Group_Brand", "Patch_Number", "Manufacturing_Model_Shortcomings", "Search_Typical", "Validity_Product", "Executor_Sale", "Totuch_Screen", "Tax_POS", "TotalDiscountPrint", "TotalTaxPrint", "ProductsNumber", "TotalQtyPrint", "Credit", "Barcode", "Taknet", "Address", "Phone1", "Phone2", "Phone3", "Phone4", "Text", "Seal", "Code_Report", "Unit", "Refrence_Number_Print", "Icon_Payment_Recipt", "SearchCode", "TaxOnTotal", "TotalBfTax", "AvQty", "Disc", "Tax", "Store", "TaxBill", "Change_Way_Stores_Transfer", "Note_POS", "Open_Drawer", client_delivery, "POS_RecivedDate", "POS_Barcode", "POS_Qty", "Show_File_InsurancePaper", "Show_File_Checks", "Show_File_Purchases", "Show_File_Sales", "Show_File_PaymentVoucher", "Show_File_ReciptVoucher", "Show_File_TransferStores", "Thickness_Print", "Height_Print", "Thickness", "Height", "Items_Guide_Store_Show", "Sales_Pro_Desc", "Show_Barcode", "Show_Net", "Show_Unit", "Show_Total", "ChassisNumber", "MotorNumber", "Shipping_Price", "OpenInputTransferSales") FROM stdin;
1	0	0	0	0	0	0	0	0	1	1	0	0	2021-12-07 14:08:32	2024-09-27 13:08:55	0	0	0	0	0	0	1	0	1	0	0	1	1	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	\N	\N	\N	0
\.


--
-- Data for Name: default_sewing_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.default_sewing_orders (id, "Draw", "Payment_Method", "Status", "DXF_Height_cm", "Branch", "RecivedBranch", "Safe", "Coin", "Cost_Center", "Delegate", "Client", "Product", "SewingType", "Store", created_at, updated_at, "Account", "TaxType") FROM stdin;
1	1	Cash	Normal	\N	3	3	30	1	4	38	2522	\N	\N	\N	2026-03-15 16:28:52	2026-03-15 16:29:57	\N	\N
\.


--
-- Data for Name: delivery_apps; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.delivery_apps (id, "Arabic_Name", "English_Name", "Type", "Account", "Status", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: depaarture_policy_emps; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.depaarture_policy_emps (id, "Emp", created_at, updated_at, "From", "To", "Discount") FROM stdin;
\.


--
-- Data for Name: departure_emps; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.departure_emps (id, "In_Time", "Out_Time", "Hours_Number", "Date", "Month", "Note", "Departure", "Emp", created_at, updated_at, "Disc_Late", "Disc_Early") FROM stdin;
\.


--
-- Data for Name: departures; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.departures (id, "Code", "Date", "Month", "Note", "Attend", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: desvice_cases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.desvice_cases (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
3	جديد	New	2022-02-18 01:21:48	2024-02-09 01:04:51
\.


--
-- Data for Name: device_descrips; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.device_descrips (id, "Arabic_Name", "English_Name", "Sort", created_at, updated_at) FROM stdin;
8	جديد	New	0	2022-04-13 02:50:50	2022-04-13 02:50:50
9	مستعمل	Used	1	2022-06-20 21:54:53	2022-06-20 21:54:53
\.


--
-- Data for Name: devices_typesies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.devices_typesies (id, "Arabic_Name", "English_Name", "Company", created_at, updated_at) FROM stdin;
6	Oppo	Oppo	14	2022-04-13 02:50:40	2022-04-13 02:50:40
\.


--
-- Data for Name: disclaimers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.disclaimers (id, "Date", "File", "Emp", "Note", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: discounts_emps; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.discounts_emps (id, "AmountDiscount", "Discount", "Emp", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: documentary__credits; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.documentary__credits (id, "Code", "Date", "Time", "Document_Number", "Foreign_Currency", "Shipping_Company", "Shipping_Method", "Payment_Method", "Customs_Certificate_Number", "Bill_Lading_Number", "Origin_Country", "Commercial_Invoice_Number", "Status", "Coin", "Draw", "Bank", "Vendor", "CommercialInvoiceFile", "OriginCertificateFile", "LadingBillFile", "PackingStatementFile", "WeightsStatementFile", "CustomsCertificateFile", "AnalysisCertificateFile", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: domains; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.domains (id, domain, tenant_id, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: dxf_heights; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.dxf_heights (id, "Name", "Num", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_covenants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_covenants (id, "Emp", "Date", "Name", "Price", "Reason", "Life_Expectancy", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_excs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_excs (id, "Name", "Account", "Emp_Type", "Salary", "Phone", "Job", "Department", "Store1", "Store2", "Store3", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_installment_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_installment_details (id, "Date", "Value", "Status", "Emp", "Install", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_installments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_installments (id, "Amount", "Years_Number", "First_Date", "Install", "Install_Numbers", "Status", "Emp", "Loan", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_mails; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_mails (id, "Message", "Emp", "Status", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_movements; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_movements (id, "Date", "Time", "Emp", "Status", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_p_o_s_stores; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_p_o_s_stores (id, "Emp", created_at, updated_at, "Store") FROM stdin;
19	38	2024-02-08 23:54:43	2024-02-08 23:54:43	21
20	39	2024-02-08 23:55:02	2024-02-08 23:55:02	21
21	40	2024-02-08 23:56:24	2024-02-08 23:56:24	21
22	41	2024-02-08 23:57:46	2024-02-08 23:57:46	21
23	42	2024-02-08 23:58:21	2024-02-08 23:58:21	21
\.


--
-- Data for Name: emp_payment_accounts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_payment_accounts (id, "Emp", "Account", "Account_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_ratios; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_ratios (id, "Salary", "Type", "Emp", created_at, updated_at, "Typee", "From", "To", "Rate") FROM stdin;
\.


--
-- Data for Name: emp_recipt_accounts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_recipt_accounts (id, "Emp", "Account", "Account_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emp_safes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emp_safes (id, "Safe", "Emp", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: empassies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.empassies (id, "Arabic_Name", "English_Name", "Arabic_Address", "English_Address", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: empassy_reserve_dates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.empassy_reserve_dates (id, "Code", "Date", "Client", "Purpose", "Empassy", "Booking_Date", "Cost", "Pay", "Residual", "Safe", "Draw", "Coin", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: employesses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.employesses (id, "Code", "Name", "Emp_Type", "Salary", "Attendence", "Departure", "Hours_Numbers", "Days_Numbers", "Day_Price", "Precentage_of_Sales", "Precentage_of_Profits", "Image", "Bank_Account", "Qualifications", "Address", "Social_Status", "ID_Number", "Contract_Start", "Contract_End", "Phone", "Phone2", "Email", "Password", "Job", "Department", "Account", "Account_Emp", "User", created_at, updated_at, "Note", "Precentage_of_Execution", "Covenant", "Commission", "Price_Level", "Bill_Num", "NumbersOfBill", "EmpSort", "CV", "ID_Image", "Criminal_status", "Contract", health_certificate, "Search_Card", "Recruitment_certificate", employee_profile, duration_criminal_investigation, "Birthdate", "Attitude_recruiting", "Job_Number", date_resignation, "Living", "Branch", "Level", "Religion", "Insurance_salary", "Insurance_companies", "Previous_experience", "Nationality", "MonthlyTarget", "QuarterTarget", "SemiTarget", "YearlyTarget", "IDExpireDate", "LicensExpireDate", "PassportExpireDate", "Merit", "Pro_Group", "NameEn", arr, "SearchCode", "Active", "Delete", "Attendence2", "Departure2", "ShippingCollectionType", "ShippingCollectionValue", "Other_Shift", "Points") FROM stdin;
38	5	مندوب مبيعات افتراضي	Saller	1	09:00:00	17:00:00	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	4	6	53	2502	11	2024-02-08 23:52:53	2024-02-08 23:54:43	\N	\N	2504	2503	1	0	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	1	1	1	\N	\N	\N	2505	\N	Default Sales	\N	\N	1	0	\N	\N	\N	\N	\N	\N
39	6	مندوب مشتريات افتراضي	Buyer	1	09:00:00	17:00:00	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	8	6	53	2506	11	2024-02-08 23:54:06	2024-02-08 23:55:02	\N	\N	2508	2507	1	0	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	1	1	1	\N	\N	\N	2509	\N	Default Purchaser	\N	\N	1	0	\N	\N	\N	\N	\N	\N
40	7	مهندس افتراضي	Engineer	1	09:00:00	17:00:00	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	7	26	53	2510	11	2024-02-08 23:56:24	2024-02-08 23:56:24	\N	\N	2512	2511	1	0	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	1	1	1	\N	\N	\N	2513	\N	Default Eng	\N	\N	1	0	\N	\N	\N	\N	\N	\N
41	8	مندوب توصيل افتراضي	Delivery	1	09:00:00	17:00:00	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	8	21	53	2514	11	2024-02-08 23:57:46	2024-02-08 23:57:46	\N	\N	2516	2515	1	0	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	1	1	1	\N	\N	\N	2517	\N	Default Delivery	\N	\N	1	0	\N	\N	\N	\N	\N	\N
42	9	نادل افتراضي	Waiter	1	09:00:00	17:00:00	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	8	21	53	2518	11	2024-02-08 23:58:21	2024-02-08 23:58:21	\N	\N	2520	2519	1	0	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	1	1	1	\N	\N	\N	2521	\N	Default Waiter	\N	\N	1	0	\N	\N	\N	\N	\N	\N
\.


--
-- Data for Name: employment_levels; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.employment_levels (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: emps_producation_points; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emps_producation_points (id, "Month", "Point", "Emp", created_at, updated_at, "Date") FROM stdin;
\.


--
-- Data for Name: emps_producation_quantities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emps_producation_quantities (id, "FromQ", "ToQ", "ValueQ", "Emp", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: entitlements; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.entitlements (id, "Code", "Date", "Month", "Amount", "Draw", "Note", "Emp", "Coin", "Type", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: events; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.events (id, "Start_Date", "End_Date", "Event_Ar_Name", "Event_En_Name", "Type", "Type_ID", "Type_Code", "Emp", "Client", "Product", "Customer", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: examinations_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.examinations_types (id, "Name", "Allow_From", "Allow_To", "Unit", created_at, updated_at, "NameEn") FROM stdin;
\.


--
-- Data for Name: exchange_commissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.exchange_commissions (id, "Code", "Date", "Month", "Note", "Return_Maintaince", "Draw", "Amount", "Commision", "Pre_Sales", "Pre_Execu", "Safe", "Coin", "Cost_Center", "Emp", "User", arr, created_at, updated_at, "Total_Exchange_Commision", "Collection", "Delete", "Ship") FROM stdin;
\.


--
-- Data for Name: execute_job_order_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.execute_job_order_models (id, "Model", "Qty", "Total_Cost", "Outcome", "Execute", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: execute_job_order_workmanships; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.execute_job_order_workmanships (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "Price", "Discount", "TDiscount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Store", "Product", "Unit", "Execute", created_at, updated_at, "Total_Net") FROM stdin;
\.


--
-- Data for Name: execute_job_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.execute_job_orders (id, "Code", "Date", "Note", "Client", "Executor", "Delegate", "RecivedDate", "Recipient", "Order", created_at, updated_at, "Transfer", "Edit", "Delete", "Edit_New_Code", "Current_Credit", "Model", "Status") FROM stdin;
\.


--
-- Data for Name: execute_sewing_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.execute_sewing_orders (id, "Code", "Date", "Time", "Draw", "Notes", "Product_Price", "Qty", "Safe", "Coin", "Client", "Product", "Store", "User", "SewingOrder", "MeasurementPort", "DataEntry", "ShearPort", "ShearOutletAssistant", "CutReferences", "CollarOutlet", "SidePort", "PocketPort", "ShoulderPort", "ComplaintPort", "ArmPort", "QuantumPort", "SeedFillingPort", "FrontPocketPort", "SnapPort", "IroningPort", "PackagingPort", "Delivery", "ProductionManager", "QualityController", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: executing_receiving_secretariats; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.executing_receiving_secretariats (id, "Code", "Date", "Qty", "Total", "Model", "User", "Time", "Branch", "StoreIn", "StoreOut", "Client", arr, created_at, updated_at, "Total_Workmanship_Price") FROM stdin;
\.


--
-- Data for Name: executing_receivings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.executing_receivings (id, "Code", "Date", "Qty", "Total", "Model", "User", created_at, updated_at, "Branch", "Time", "StoreIn", "StoreOut", "Sort", "Vendor", "Cost_Workmentship", "Total_Workmentship", arr, "Height", "Width", "Number", "CostCenter") FROM stdin;
\.


--
-- Data for Name: executor_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.executor_filters (id, "Product", "Code", "Name", "VName", "VVName", "V1", "V2", "Qty", "Price", "Total", "Emp", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: expenses_list_column_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.expenses_list_column_sechdules (id, "Date", "Code_Type", "Statement", "Debitor", "Cost_Center", "Coin", "User", "Account", "Branch", created_at, updated_at) FROM stdin;
1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2022-10-17 22:05:11
\.


--
-- Data for Name: expenses_list_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.expenses_list_columns (id, "Date", "Code_Type", "Statement", "Debitor", "Cost_Center", "Coin", "User", "Account", "Branch", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	\N	2022-10-17 21:37:09
\.


--
-- Data for Name: expenses_type_projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.expenses_type_projects (id, "Arabic_Name", "English_Name", "Project", "Account", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: expenses_type_templates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.expenses_type_templates (id, "Arabic_Name", "English_Name", "Unit", "Account", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: expire_date_qties; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.expire_date_qties (id, "Qty", "P_Ar_Name", "P_En_Name", "P_Code", "PP_Code", "PPP_Code", "PPPP_Code", "V_Name", "VV_Name", "Store", "Unit", "Product", "V1", "V2", "Low_Unit", "Exp_Date", "Group", "Brand", "Branch", created_at, updated_at, "Hold_Qty") FROM stdin;
\.


--
-- Data for Name: export_checks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.export_checks (id, "Code", "Date", "Draw", "Note", "Check_Num", "Due_Date", "Amount", "Status", "Reason", "Check_Type", "Coin", "Cost_Center", "Account", "Bank", "Pay_Account", "Bene_Account", "User", created_at, updated_at, "File", arr, "Image", "Signture_Name", "Bank_Branch", "Edit", "Edit_New_Code", "Delete", "BankSafe_Account", "Transfer") FROM stdin;
\.


--
-- Data for Name: f_a_q_s; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.f_a_q_s (id, "Arabic_Question", "English_Question", "Arabic_Answer", "English_Answer", created_at, updated_at) FROM stdin;
1	What is Lorem Ipsum?	What is Lorem Ipsum?	Nullam sed neque luctus, maximus diam sed, facilisis orci. Nunc ultricies neque a aliquam sollicitudin. Vivamus sit amet finibus sapien. Duis est dui, sodales nec pretium a, interdum in lacus. Sed et est vel velit vestibulum tincidunt non a felis. Phasellus convallis, diam eu facilisis tincidunt, ex nibh vulputate dolor, eu maximus massa libero vel eros. In vulputate metus lacus, eu vehicula dolor feugiat id. Nulla vitae nisl in ex consequat porttitor vel a lectus. Vestibulum viverra in velit ac consequat. Nullam porta nulla eu dignissim cursus.	Nullam sed neque luctus, maximus diam sed, facilisis orci. Nunc ultricies neque a aliquam sollicitudin. Vivamus sit amet finibus sapien. Duis est dui, sodales nec pretium a, interdum in lacus. Sed et est vel velit vestibulum tincidunt non a felis. Phasellus convallis, diam eu facilisis tincidunt, ex nibh vulputate dolor, eu maximus massa libero vel eros. In vulputate metus lacus, eu vehicula dolor feugiat id. Nulla vitae nisl in ex consequat porttitor vel a lectus. Vestibulum viverra in velit ac consequat. Nullam porta nulla eu dignissim cursus.	2022-06-04 19:39:45	2022-06-04 19:39:45
2	Why do we use it?	Why do we use it?	Cras non gravida urna. Ut venenatis nulla in tellus lobortis, vel mollis lectus condimentum. Duis elementum sapien purus, et sagittis nulla efficitur in. Phasellus vitae eros sed nisi fringilla auctor nec quis nunc. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque rutrum faucibus nibh vitae fermentum. Aliquam commodo sem sit amet malesuada consectetur. Ut sit amet vestibulum diam. Etiam quis dictum turpis, eget condimentum velit. Sed cursus odio dapibus, consectetur massa sit amet, fringilla purus.	Cras non gravida urna. Ut venenatis nulla in tellus lobortis, vel mollis lectus condimentum. Duis elementum sapien purus, et sagittis nulla efficitur in. Phasellus vitae eros sed nisi fringilla auctor nec quis nunc. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque rutrum faucibus nibh vitae fermentum. Aliquam commodo sem sit amet malesuada consectetur. Ut sit amet vestibulum diam. Etiam quis dictum turpis, eget condimentum velit. Sed cursus odio dapibus, consectetur massa sit amet, fringilla purus.	2022-06-04 19:40:14	2022-06-04 19:40:14
\.


--
-- Data for Name: failed_jobs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.failed_jobs (id, uuid, connection, queue, payload, exception, failed_at) FROM stdin;
\.


--
-- Data for Name: faults_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.faults_types (id, "Arabic_Name", "English_Name", "Note", "Amount", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: fifo_qties; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.fifo_qties (id, "Qty", "P_Ar_Name", "P_En_Name", "P_Code", "PP_Code", "PPP_Code", "PPPP_Code", "V_Name", "VV_Name", "Cost_Price", "Store", "Unit", "Product", "V1", "V2", "Low_Unit", "Exp_Date", "SearchCode1", "SearchCode2", "Group", "Brand", "Branch", "Purchases_Date", created_at, updated_at, "Original_Qty", "Hold_Qty") FROM stdin;
\.


--
-- Data for Name: firewall_ips; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.firewall_ips (id, ip, log_id, blocked, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: firewall_logs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.firewall_logs (id, ip, level, middleware, user_id, url, referrer, request, created_at, updated_at, deleted_at) FROM stdin;
1	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/Login	http://localhost:8888/laravel/ERP/public/AdminLogin	_token=Wh8VUBPPpctrwoHMRWnx1DvypLmxzN1uDIRM22YQ&valid_from=eyJpdiI6IktLMytNc0RnSDlXNC9GdDFndC81ckE9PSIsInZhbHVlIjoielhlUVNtU21YMGtzNE9NSEkrK3Q4dz09IiwibWFjIjoiMTJiMjY5MzIwMGM3YTY4YTEyOGMwOTIyOTM4ZDZkYWVhNzQwOGFmMzZiNDYxODNjMWZmODdlNGNjMWU0M2IzNSJ9&email=Admin@test.com&password=******	2022-02-08 09:54:21	2022-02-08 09:54:21	\N
2	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/Login	http://localhost:8888/laravel/ERP/public/AdminLogin	_token=mCKNd0b5SqhsbzCncHR1Zsg4pppOjFi3miWeyJTo&valid_from=eyJpdiI6IklFWlVxK2pZRCsyUHhZNHd2ZzBWUFE9PSIsInZhbHVlIjoibFQvN1dsb0lreTJFT2FSNHoydkRiQT09IiwibWFjIjoiMjNhODUxNWM3ZjUyZGRlZTAwNWUxMmQyZThjZTJjOWMyOGFhNDdiM2Q5MWI0MjI3ZWY4YTcwZThlODVjZDVlMSIsInRhZyI6IiJ9&email=Klar@test.com&password=******	2022-06-01 15:04:13	2022-06-01 15:04:13	\N
3	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/Login	http://localhost:8888/laravel/ERP/public/AdminLogin	_token=mCKNd0b5SqhsbzCncHR1Zsg4pppOjFi3miWeyJTo&valid_from=eyJpdiI6InJVNDBPK3J5QWRlcXJCdnc4cTNKc2c9PSIsInZhbHVlIjoiVnhMQUpZanRXdldjYVd1RTZVcDJCUT09IiwibWFjIjoiMTIyMjZmNWY3OTczZjVmMmUwNmViYjBiMTNiYzU0OTQzN2IwNzUyYjkxZGJhMTM1ZTE4OWYwNjJhNDI1MDAxYSIsInRhZyI6IiJ9&email=Klar@test.com&password=******	2022-06-01 15:04:26	2022-06-01 15:04:26	\N
4	::1	medium	rfi	11	http://localhost:8888/laravel/ERP/public/ContactUSUpdate/1	http://localhost:8888/laravel/ERP/public/ContactUS	_token=cMggGWc3GiRQ9RpsUo0yM0WTatiVJrHf9VyvpkkA&valid_from=eyJpdiI6IkgyZEx5V3BDUzBsa1pLcExjUjlhb0E9PSIsInZhbHVlIjoiTmF5UFh0a0lOYXhuS2ErY1h5Mzc4Zz09IiwibWFjIjoiMGQxYzYxMGEyMjlhMWM5NDJhODM2NmJmMDY2NTQ4ZDZjOTk4OTNhYzQyNmU1M2E1NTc0YmJmY2IxNzg3ZGViYyIsInRhZyI6IiJ9&Arabic_Title=DROP US A LINE&English_Title=DROP US A LINE&Arabic_Desc=Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500&English_Desc=Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500&Opening_Hours=Mon - Sat : 9am - 11pm&Phone1=440000000&Phone2=440000000&Phone_Header=440000000&Email=sales@yousite.com&Arabic_Address=55 Gallaxy Enque, 2568 steet, 23568 NY&English_Address=55 Gallaxy Enque, 2568 steet, 23568 NY&Map=<iframe src="https://www.google.com/maps/embed?pb=" height="350" allowfullscreen></iframe>	2022-06-04 15:25:25	2022-06-04 15:25:25	\N
5	::1	medium	rfi	11	http://localhost:8888/laravel/ERP/public/ContactUSUpdate/1	http://localhost:8888/laravel/ERP/public/ContactUS	_token=cMggGWc3GiRQ9RpsUo0yM0WTatiVJrHf9VyvpkkA&valid_from=eyJpdiI6IkFZZ280WjQ2anpsZ2ZrLy94R3BXYUE9PSIsInZhbHVlIjoiZnRtZjQwU0JWRGs4K2dndm5ZRlRpUT09IiwibWFjIjoiZjM3ZmFkMzUyNmZkYmRlNWVhOWUwZDdjNGM1ZDRmNjg4ZGZkYzQ4MzUyOGMzZTZjZDBjMjNiNjM4NjRmZTRiZSIsInRhZyI6IiJ9&Arabic_Title=DROP US A LINE&English_Title=DROP US A LINE&Arabic_Desc=Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500&English_Desc=Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500&Opening_Hours=Mon - Sat : 9am - 11pm&Phone1=440000000&Phone2=440000000&Phone_Header=440000000&Email=sales@yousite.com&Arabic_Address=55 Gallaxy Enque, 2568 steet, 23568 NY&English_Address=55 Gallaxy Enque, 2568 steet, 23568 NY&Map=<iframe src="https://www.google.com/maps/embed?pb=" height="350" allowfullscreen></iframe>	2022-06-04 15:25:53	2022-06-04 15:25:53	\N
6	::1	medium	rfi	11	http://localhost:8888/laravel/ERP/public/ContactUSUpdate/1	http://localhost:8888/laravel/ERP/public/ContactUS	_token=cMggGWc3GiRQ9RpsUo0yM0WTatiVJrHf9VyvpkkA&valid_from=eyJpdiI6IkFZZ280WjQ2anpsZ2ZrLy94R3BXYUE9PSIsInZhbHVlIjoiZnRtZjQwU0JWRGs4K2dndm5ZRlRpUT09IiwibWFjIjoiZjM3ZmFkMzUyNmZkYmRlNWVhOWUwZDdjNGM1ZDRmNjg4ZGZkYzQ4MzUyOGMzZTZjZDBjMjNiNjM4NjRmZTRiZSIsInRhZyI6IiJ9&Arabic_Title=DROP US A LINE&English_Title=DROP US A LINE&Arabic_Desc=Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500&English_Desc=Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500&Opening_Hours=Mon - Sat : 9am - 11pm&Phone1=440000000&Phone2=440000000&Phone_Header=440000000&Email=sales@yousite.com&Arabic_Address=55 Gallaxy Enque, 2568 steet, 23568 NY&English_Address=55 Gallaxy Enque, 2568 steet, 23568 NY&Map=https://www.google.com/maps/embed?pb=	2022-06-04 15:26:34	2022-06-04 15:26:34	\N
7	::1	medium	rfi	11	http://localhost:8888/laravel/ERP/public/ContactUSUpdate/1	http://localhost:8888/laravel/ERP/public/ContactUS	_token=cMggGWc3GiRQ9RpsUo0yM0WTatiVJrHf9VyvpkkA&valid_from=eyJpdiI6IkFZZ280WjQ2anpsZ2ZrLy94R3BXYUE9PSIsInZhbHVlIjoiZnRtZjQwU0JWRGs4K2dndm5ZRlRpUT09IiwibWFjIjoiZjM3ZmFkMzUyNmZkYmRlNWVhOWUwZDdjNGM1ZDRmNjg4ZGZkYzQ4MzUyOGMzZTZjZDBjMjNiNjM4NjRmZTRiZSIsInRhZyI6IiJ9&Arabic_Title=DROP US A LINE&English_Title=DROP US A LINE&Arabic_Desc=Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500&English_Desc=Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500&Opening_Hours=Mon - Sat : 9am - 11pm&Phone1=440000000&Phone2=440000000&Phone_Header=440000000&Email=sales@yousite.com&Arabic_Address=55 Gallaxy Enque, 2568 steet, 23568 NY&English_Address=55 Gallaxy Enque, 2568 steet, 23568 NY&Map=https://www.google.com/maps/embed?pb=	2022-06-04 15:26:55	2022-06-04 15:26:55	\N
8	::1	medium	xss	11	http://localhost:8888/laravel/ERP/public/AddArticles	http://localhost:8888/laravel/ERP/public/Articles	_token=doVeFV3XD2rH8l1cPooyMAao9nq89yqum3PtXs41&valid_from=eyJpdiI6IlB6U25kQnRaUkZOTHJhOTJwNDIreXc9PSIsInZhbHVlIjoiS2QzTVJwd3paNXNiMUx3UDFGbDAzQT09IiwibWFjIjoiMWQ5NmQ3MThhODI1NDk0NzEyNWZiNTQxYmFlMzQyMTdmMGE0MThmODhkZDE1YmFjNjBkMTUyODBkNGI0YThiOCIsInRhZyI6IiJ9&Date=May 02, 2017&Arabic_Title=IT'S ALL ABOUT HOW YOU WEAR&English_Title=IT'S ALL ABOUT HOW YOU WEAR&Arabic_Desc=<h4 class="modal-title" style="color: rgb(102, 102, 102); letter-spacing: 0.1px;">On sait depuis longtemps que travailler avec du texte lisible et contenant du sens est source de distractions, et empêche de se concentrer sur la mise en page elle-même. L'avantage du Lorem Ipsum sur un texte générique comme 'Du texte. Du texte. Du texte.' est qu'il possède une distribution de lettres plus ou moins normale, et en tout cas comparable avec celle du français standard. De nombreuses suites logicielles de. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Sample Text Listing Donec et lacus mattis ipsum feugiat interdum non id sapien. Quisque et mauris eget nisi vestibulum rhoncus molestie a ante. Curabitur pulvinar ex at tempus sodales. Mauris efficitur magna quis lectus lobortis venenatis. Nunc id enim eget augue molestie lobortis in a purus. Donec maximus quam at lectus bibendum, non suscipit nunc tristique. The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</h4><button type="button" class="close" data-dismiss="modal" aria-label="Close" style="margin: -1.25rem; padding: 1.25rem;"><span aria-hidden="true"><span class="fal fa-times"></span></span></button>&English_Desc=<h4 class="modal-title" style="color: rgb(102, 102, 102); letter-spacing: 0.1px;">On sait depuis longtemps que travailler avec du texte lisible et contenant du sens est source de distractions, et empêche de se concentrer sur la mise en page elle-même. L'avantage du Lorem Ipsum sur un texte générique comme 'Du texte. Du texte. Du texte.' est qu'il possède une distribution de lettres plus ou moins normale, et en tout cas comparable avec celle du français standard. De nombreuses suites logicielles de. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Sample Text Listing Donec et lacus mattis ipsum feugiat interdum non id sapien. Quisque et mauris eget nisi vestibulum rhoncus molestie a ante. Curabitur pulvinar ex at tempus sodales. Mauris efficitur magna quis lectus lobortis venenatis. Nunc id enim eget augue molestie lobortis in a purus. Donec maximus quam at lectus bibendum, non suscipit nunc tristique. The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</h4><button type="button" class="close" data-dismiss="modal" aria-label="Close" style="margin: -1.25rem; padding: 1.25rem;"><span aria-hidden="true"><span class="fal fa-times"></span></span></button>	2022-06-06 20:02:03	2022-06-06 20:02:03	\N
9	::1	medium	xss	11	http://localhost:8888/laravel/ERP/public/UpdatePolices/2	http://localhost:8888/laravel/ERP/public/Polices	_token=doVeFV3XD2rH8l1cPooyMAao9nq89yqum3PtXs41&valid_from=eyJpdiI6Ik9LaHdHOXluQzBFMlNSWG5qcThncUE9PSIsInZhbHVlIjoicGxudDdPNi9sbThzNTEwYi9URGZCZz09IiwibWFjIjoiMTRhOWMzNmM4MjFjOGZjOTQ4MjU0MzZmNjc4MzliNGFkMzcyZmVhNzk4OTQ0MTgyNzcyZjYxMzhiODhlMGI2MCIsInRhZyI6IiJ9&Arabic_Desc=<h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Returns Policy</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eros justo, accumsan non dui sit amet. Phasellus semper volutpat mi sed imperdiet. Ut odio lectus, vulputate non ex non, mattis sollicitudin purus. Mauris consequat justo a enim interdum, in consequat dolor accumsan. Nulla iaculis diam purus, ut vehicula leo efficitur at.</p><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Interdum et malesuada fames ac ante ipsum primis in faucibus. In blandit nunc enim, sit amet pharetra erat aliquet ac.</p><h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Shipping</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Pellentesque ultrices ut sem sit amet lacinia. Sed nisi dui, ultrices ut turpis pulvinar. Sed fringilla ex eget lorem consectetur, consectetur blandit lacus varius. Duis vel scelerisque elit, et vestibulum metus. Integer sit amet tincidunt tortor. Ut lacinia ullamcorper massa, a fermentum arcu vehicula ut. Ut efficitur faucibus dui Nullam tristique dolor eget turpis consequat varius. Quisque a interdum augue. Nam ut nibh mauris.</p>&English_Desc=<h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Returns Policy</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eros justo, accumsan non dui sit amet. Phasellus semper volutpat mi sed imperdiet. Ut odio lectus, vulputate non ex non, mattis sollicitudin purus. Mauris consequat justo a enim interdum, in consequat dolor accumsan. Nulla iaculis diam purus, ut vehicula leo efficitur at.</p><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Interdum et malesuada fames ac ante ipsum primis in faucibus. In blandit nunc enim, sit amet pharetra erat aliquet ac.</p><h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Shipping</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Pellentesque ultrices ut sem sit amet lacinia. Sed nisi dui, ultrices ut turpis pulvinar. Sed fringilla ex eget lorem consectetur, consectetur blandit lacus varius. Duis vel scelerisque elit, et vestibulum metus. Integer sit amet tincidunt tortor. Ut lacinia ullamcorper massa, a fermentum arcu vehicula ut. Ut efficitur faucibus dui Nullam tristique dolor eget turpis consequat varius. Quisque a interdum augue. Nam ut nibh mauris.</p>	2022-06-06 22:22:15	2022-06-06 22:22:15	\N
10	::1	medium	xss	11	http://localhost:8888/laravel/ERP/public/UpdatePolices/2	http://localhost:8888/laravel/ERP/public/Polices	_token=doVeFV3XD2rH8l1cPooyMAao9nq89yqum3PtXs41&valid_from=eyJpdiI6IkIvaUJZMFBOUStFbXNJZHY5Mmd4dmc9PSIsInZhbHVlIjoickNFdURkM0ZneVlyV3MyZEtSUDc1dz09IiwibWFjIjoiMmFiNjc4OTIyZjM3NjY2M2U3M2U5ZjI3M2RhNWQ3NTQ3ZDZiOTE2ZDU4YzlkNWVmMDM2ZGJhODM1YWExMTQ5MyIsInRhZyI6IiJ9&Arabic_Desc=<h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Returns Policy</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eros justo, accumsan non dui sit amet. Phasellus semper volutpat mi sed imperdiet. Ut odio lectus, vulputate non ex non, mattis sollicitudin purus. Mauris consequat justo a enim interdum, in consequat dolor accumsan. Nulla iaculis diam purus, ut vehicula leo efficitur at.</p><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Interdum et malesuada fames ac ante ipsum primis in faucibus. In blandit nunc enim, sit amet pharetra erat aliquet ac.</p><h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Shipping</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Pellentesque ultrices ut sem sit amet lacinia. Sed nisi dui, ultrices ut turpis pulvinar. Sed fringilla ex eget lorem consectetur, consectetur blandit lacus varius. Duis vel scelerisque elit, et vestibulum metus. Integer sit amet tincidunt tortor. Ut lacinia ullamcorper massa, a fermentum arcu vehicula ut. Ut efficitur faucibus dui Nullam tristique dolor eget turpis consequat varius. Quisque a interdum augue. Nam ut nibh mauris.</p>&English_Desc=<h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Returns Policy</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eros justo, accumsan non dui sit amet. Phasellus semper volutpat mi sed imperdiet. Ut odio lectus, vulputate non ex non, mattis sollicitudin purus. Mauris consequat justo a enim interdum, in consequat dolor accumsan. Nulla iaculis diam purus, ut vehicula leo efficitur at.</p><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Interdum et malesuada fames ac ante ipsum primis in faucibus. In blandit nunc enim, sit amet pharetra erat aliquet ac.</p><h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Shipping</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Pellentesque ultrices ut sem sit amet lacinia. Sed nisi dui, ultrices ut turpis pulvinar. Sed fringilla ex eget lorem consectetur, consectetur blandit lacus varius. Duis vel scelerisque elit, et vestibulum metus. Integer sit amet tincidunt tortor. Ut lacinia ullamcorper massa, a fermentum arcu vehicula ut. Ut efficitur faucibus dui Nullam tristique dolor eget turpis consequat varius. Quisque a interdum augue. Nam ut nibh mauris.</p>	2022-06-06 22:22:27	2022-06-06 22:22:27	\N
11	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/PostLoginSite	http://localhost:8888/laravel/ERP/public/LoginSite	_token=xBCZkelPEYieOfzSztHnCsRpprRAIrzVwqOEO7D9&Email=islamyousief353@gmail.com&Password=123456&password=******	2022-06-07 12:05:21	2022-06-07 12:05:21	\N
12	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/PostLoginSite	http://localhost:8888/laravel/ERP/public/LoginSite	_token=xBCZkelPEYieOfzSztHnCsRpprRAIrzVwqOEO7D9&Email=islamyousief353@gmail.com&Password=123456&password=******	2022-06-07 12:18:58	2022-06-07 12:18:58	\N
13	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/PostLoginSite	http://localhost:8888/laravel/ERP/public/LoginSite	_token=xBCZkelPEYieOfzSztHnCsRpprRAIrzVwqOEO7D9&Email=islamyousief353@gmail.com&Password=123456&password=******	2022-06-07 12:27:07	2022-06-07 12:27:07	\N
14	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/PostLoginSite	http://localhost:8888/laravel/ERP/public/LoginSite	_token=xBCZkelPEYieOfzSztHnCsRpprRAIrzVwqOEO7D9&Email=islamyousief353@gmail.com&Password=123456&password=******	2022-06-07 12:43:03	2022-06-07 12:43:03	\N
15	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/PostLoginSite	http://localhost:8888/laravel/ERP/public/LoginSite	_token=xBCZkelPEYieOfzSztHnCsRpprRAIrzVwqOEO7D9&Email=islamyousief353@gmail.com&Password=123456&password=******	2022-06-07 12:43:39	2022-06-07 12:43:39	\N
16	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/PostLoginSite	http://localhost:8888/laravel/ERP/public/LoginSite	_token=xBCZkelPEYieOfzSztHnCsRpprRAIrzVwqOEO7D9&Email=islamyousief353@gmail.com&Password=123456&password=******	2022-06-07 12:49:43	2022-06-07 12:49:43	\N
17	::1	medium	login	0	http://localhost:8888/laravel/ERP/public/Login	http://localhost:8888/laravel/ERP/public/AdminLogin	_token=ddC4WRKEWrRNwcu08j4Dm5icj0Hzo7eNz6RcmiAj&valid_from=eyJpdiI6IndSYXlaeVQ4b2wxQ2lZQ202a1dNUlE9PSIsInZhbHVlIjoiK0JkenBWTzJ1NUdVTHE3RndWYmtSUT09IiwibWFjIjoiZTJkNTc3OTU4ZWI1NTVlOTIzOGRlZjZjNDY0ZTY2ZjFjYzNmMDkzYWM2YjBmOWZhZTUwYzFhM2Y2N2I2MDZhYiIsInRhZyI6IiJ9&email=Alaa@test.com&password=******	2025-04-25 13:47:40	2025-04-25 13:47:40	\N
\.


--
-- Data for Name: follow_lists; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.follow_lists (id, "Emp", "Day", "Time", "Client", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: general_dailies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.general_dailies (id, "Code", "Date", "Type", "Debitor", "Creditor", "Statement", "Draw", "Debitor_Coin", "Creditor_Coin", "Account", "Coin", "Cost_Center", created_at, updated_at, userr, "Code_Type", "Branch", "TypeEn", arr) FROM stdin;
\.


--
-- Data for Name: goods_product_projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.goods_product_projects (id, "Goods", "Product", "P_Code", "P_Ar_Name", "P_En_Name", "Unit", "Qty", "AvQty", "Price", "Total", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: goods_projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.goods_projects (id, "Code", "Date", "Store", "Cost_Center", "Responsible", "Safe", "Coin", "Draw", "Note", "Project", "Product_Numbers", "Total_Qty", "Total_Price", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: governrates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.governrates (id, "Arabic_Name", "English_Name", created_at, updated_at, "Country", "SearchCode") FROM stdin;
5	الرياض	Riyadh	2022-06-06 16:39:56	2022-06-06 16:39:56	3	\N
2	القاهرة	Cairo	2021-07-25 23:45:24	2024-02-09 00:57:40	2	\N
\.


--
-- Data for Name: group_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.group_filters (id, "Product", "Code", "Name", "VName", "VVName", "V1", "V2", "Qty", "Price", "Total", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: holidays; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.holidays (id, "Code", "Date", "Month", "Num_of_Days", "Start_Date", "Discount", "Status", "Note", "Emp", "Type", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: holidays_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.holidays_types (id, "Arabic_Name", "English_Name", "Days", created_at, updated_at, "From_Date", "To_Date") FROM stdin;
\.


--
-- Data for Name: home_e_com_designs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_e_com_designs (id, "Slider_BG_Type", "Slider_BG_Image", "Slider_BG_Color", "Slider_Button_BG_Color", "Slider_Button_Txt_Color", "Slider_Button_Hover_BG_Color", "Slider_Button_Hover_Txt_Color", "Slider_Title_Txt_Color", "Slider_Desc_Txt_Color", "Ads_Top_Img_First_BG_Color", "Ads_Top_Img_First_Before_BG_Color", "Ads_Top_Img_Second_BG_Color", "Ads_Top_Img_Second_Before_BG_Color", "Ads_Top_Img_Button_BG_Color", "Ads_Top_Img_Button_Txt_Color", "Ads_Top_Img_Button_Hover_BG_Color", "Ads_Top_Img_Button_Hover_Txt_Color", "Support_Icons_BG_Color", "Support_Icons_Txt_Color", "Support_Icons_Color", "Ads_Bootom_Imgs_BG_Color", "Ads_Bootom_Imgs_Middle_BG_Color", "Ads_Bootom_Imgs_Button_BG_Color", "Ads_Bootom_Imgs_Button_Txt_Color", "Ads_Bootom_Imgs_Button_Hover_BG_Color", "Ads_Bootom_Imgs_Button_Hover_Txt_Color", "Partners_BG_Color", created_at, updated_at) FROM stdin;
1	1	\N	#a1bfdd	#113366	#ffffff	#ffffff	#113366	#000000	#000000	#dae4f1	#6e8eb8	#f0e9ea	#ddd0d3	#8a0e00	#ffffff	#113366	#ffffff	#ffffff	#000000	#cd1818	#e3efed	#d3e5e2	#113366	#ffffff	#ffffff	#113366	#cccccc	2023-09-01 14:07:13	2023-09-01 23:19:58
\.


--
-- Data for Name: home_product_e_com_designs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_product_e_com_designs (id, "Special_Offer_Title_BG_Color", "Special_Offer_Title_Txt_Color", "Special_Offer_Product_BG_Color", "Special_Offer_Product_Border_Color", "Special_Offer_Product_Txt_Color", "Special_Offer_Product_Price_Color", "Special_Offer_Product_Rate_Color", "Best_Sellers_Title_BG_Color", "Best_Sellers_Title_Txt_Color", "Best_Sellers_Category_Txt_Color", "Best_Sellers_Category_Active_Txt_Color", "Best_Sellers_Product_BG_Color", "Best_Sellers_Product_Group_BG_Color", "Best_Sellers_Product_Group_Txt_Color", "Best_Sellers_Product_Group_Hover_BG_Color", "Best_Sellers_Product_Group_Hover_Txt_Color", "Best_Sellers_Product_Icon_BG_Color", "Best_Sellers_Product_Icon_Txt_Color", "Best_Sellers_Product_Icon_Hover_BG_Color", "Best_Sellers_Product_Icon_Hover_Txt_Color", "Best_Sellers_Product_Txt_Color", "Best_Sellers_Product_Price_Color", "Best_Sellers_Product_Rate_Color", "New_Arrivals_Title_BG_Color", "New_Arrivals_Title_Txt_Color", "New_Arrivals_Product_BG_Color", "New_Arrivals_Product_Group_BG_Color", "New_Arrivals_Product_Group_Txt_Color", "New_Arrivals_Product_Group_Hover_BG_Color", "New_Arrivals_Product_Group_Hover_Txt_Color", "New_Arrivals_Product_Icon_BG_Color", "New_Arrivals_Product_Icon_Txt_Color", "New_Arrivals_Product_Icon_Hover_BG_Color", "New_Arrivals_Product_Icon_Hover_Txt_Color", "New_Arrivals_Product_Txt_Color", "New_Arrivals_Product_Price_Color", "New_Arrivals_Product_Hover_Price_Color", "New_Arrivals_Product_Rate_Color", created_at, updated_at, "Special_Offer_Product_Txt_Hover_Color") FROM stdin;
1	#ffffff	#113366	#ffffff	#000000	#000000	#a30000	#ffb607	#ffffff	#113366	#113366	#a30000	#ffffff	#113366	#ffffff	#ad0000	#ffffff	#ffffff	#113366	#113366	#ffffff	#000000	#000000	#ffb607	#ffffff	#113366	#ffffff	#113366	#ffffff	#b80000	#ffffff	#ffffff	#113366	#113366	#ffffff	#000000	#000000	#a30000	#ffb607	2023-09-01 18:44:18	2023-09-01 23:55:13	#b80000
\.


--
-- Data for Name: import_expenses_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.import_expenses_types (id, "Arabic_Name", "English_Name", created_at, updated_at, "Account") FROM stdin;
\.


--
-- Data for Name: import_new_prods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.import_new_prods (id, "Name", "Type", "Group", "Brand", "Unit", "Rate", "Barcode", "Price_1", "Price_2", "Price_3", "Def", "Num", created_at, updated_at, "Code_Type", "World_Code", "Weight", "Search_Code") FROM stdin;
\.


--
-- Data for Name: import_new_prods_starts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.import_new_prods_starts (id, "Name", "Type", "Group", "Brand", "Unit", "Rate", "Barcode", "Price_1", "Price_2", "Price_3", "Def", "Num", "Store", "Qty", "CostPrice", "Total", created_at, updated_at, "Code_Type", "World_Code", "Weight", "Search_Code") FROM stdin;
\.


--
-- Data for Name: in_out_logs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.in_out_logs (id, user_id, in_time, out_time, time_calc, date, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: incom_checks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.incom_checks (id, "Code", "Date", "Draw", "Note", "Check_Num", "Due_Date", "Amount", "Status", "Reason", "Check_Type", "Coin", "Cost_Center", "Account", "Bank", "Arrest_Account", "Bene_Account", "User", created_at, updated_at, "File", arr, "Image", "Signture_Name", "Bank_Branch", "Edit", "Edit_New_Code", "Delete", "BankSafe_Account", "Transfer") FROM stdin;
\.


--
-- Data for Name: incom_manufacturing_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.incom_manufacturing_models (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "Cost", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Depreciation", "Depreciation_Qty", "Store", "Product", "Unit", "Model", created_at, updated_at, "Precent") FROM stdin;
\.


--
-- Data for Name: incom_manufacturing_secretariat_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.incom_manufacturing_secretariat_models (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Precent", "Qty", "Cost", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Depreciation", "Depreciation_Qty", "Store", "Product", "Unit", "Model", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: install_companies_sales_bills_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.install_companies_sales_bills_columns (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "ShiftCode", "Executor", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Client", "InstallCompany", "ContractNumber", "PayFees", "ServiceFee", "CompanyPrecent", "Product_Code", "Product_Name", "Unit", "Av_Qty", "Qty", "Price", "Discount", "Total_BF_Tax", "Tax", "Total", "Group", "Brand", "Exp_Date", "Product_Store", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-11-10 09:15:55
\.


--
-- Data for Name: install_companies_sales_bills_columns_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.install_companies_sales_bills_columns_sechdules (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "ShiftCode", "Executor", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Client", "InstallCompany", "ContractNumber", "PayFees", "ServiceFee", "CompanyPrecent", "Product_Code", "Product_Name", "Unit", "Av_Qty", "Qty", "Price", "Discount", "Total_BF_Tax", "Tax", "Total", "Group", "Brand", "Exp_Date", "Product_Store", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-11-10 09:45:52
\.


--
-- Data for Name: installment_companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.installment_companies (id, "Arabic_Name", "English_Name", "Logo", created_at, updated_at, "Account", "NakdyaAccount") FROM stdin;
\.


--
-- Data for Name: installment_companies_ratios; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.installment_companies_ratios (id, "From", "To", "Service_Fee", "Company_Precent", "Company", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: installment_dates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.installment_dates (id, "Date", "Value", "Status", "Client", "Install", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: installments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.installments (id, presenter, annual_interest, monthly_installment, "Years_Number", total, "installment_Num", "Date_First_installment", "Residual", "Status", "Client", "Sales", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: insurance_companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.insurance_companies (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: insurance_papers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.insurance_papers (id, "Code", "Date", "Draw", "Note", "Due_Date", "Amount", "Status", "Coin", "Cost_Center", "Account", "Bank", arr, "User", created_at, updated_at, "From", "To", "File", "FromEn", "ToEn", "Delete") FROM stdin;
\.


--
-- Data for Name: interviews; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.interviews (id, "Code", "Date", "Time", "Status", "Rate", "Note", "Emp", "Client", "Type", "User", arr, created_at, updated_at, "StatusNote") FROM stdin;
\.


--
-- Data for Name: interviews_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.interviews_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
5	المكتب	Office	2022-03-08 01:34:46	2024-02-09 00:49:15
8	تحصيل	Collect	2022-03-08 01:36:36	2024-02-09 00:49:35
3	تليفونيا	Phone	2022-03-08 01:34:24	2024-02-09 00:49:48
7	عرض سعر	Quotation	2022-03-08 01:36:05	2024-02-09 00:50:01
6	لدي العميل	at Customer Place	2022-03-08 01:35:05	2024-02-09 00:50:32
4	واتس اب	Whatsapp	2022-03-08 01:34:32	2024-02-09 00:50:44
\.


--
-- Data for Name: intros; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.intros (id, "Arabic_About", "English_About", "Phone_1", "Phone_2", "Phone_3", "Phone_4", "Arabic_Terms", "English_Terms", created_at, updated_at, "Arabic_Privacy", "English_Privacy") FROM stdin;
1	تعتبر أنظمة تخطيط موارد المؤسسات من الأدوات الحديثة والفعّالة التي تهدف إلى تحسين إدارة العمليات اليومية داخل المؤسسات. يُعد رابح حلاً شاملاً يدمج مختلف الأقسام والوظائف داخل المؤسسة، بدءًا من التخطيط والمشتريات، وصولاً إلى الإنتاج والتوزيع، وحتى إدارة الموارد البشرية والمحاسبة.\r\nمميزات البرنامج:\r\n1.\tتكامل العمليات: يقدم البرنامج تكاملًا فعّالًا لكافة العمليات الداخلية، مما يسهم في تحسين تدفق المعلومات وتفعيل التعاون بين الأقسام المختلفة.\r\n2.\tزيادة الكفاءة: يساعد البرنامج في تحسين كفاءة العمل من خلال أتمتة العمليات المتكررة، مما يقلل من الأخطاء البشرية ويزيد من سرعة استجابة المؤسسة لتغييرات السوق.\r\n3.\tتحسينات في اتخاذ القرارات: يوفر البرنامج تقارير دقيقة ومحدثة، مما يسهم في تمكين القادة من اتخاذ قرارات مستنيرة بناءً على بيانات دقيقة وموثوقة.\r\n4.\tتوفير الوقت والتكاليف: بفضل أتمتة العمليات، يقلل البرنامج من الوقت اللازم لإتمام الأنشطة المختلفة ويقلل من التكاليف الإدارية.\r\n5.\tتعزيز تجربة العميل: يُسهم تكامل العمليات في تحسين تجربة العميل من خلال تحسين جودة الخدمة وتسريع تلبية احتياجاتهم.\r\nباختصار، يعتبر رابح  أداة حيوية لتحسين أداء المؤسسات وتعزيز تنافسيتها في السوق الحديثة.	Enterprise Resource Planning (ERP) systems are considered modern and effective tools aimed at enhancing the management of daily operations within organizations. ERP is a comprehensive solution that integrates various departments and functions within an enterprise, ranging from planning and procurement to production, distribution, human resources management, and accounting.\r\n\r\nFeatures of the program:\r\n\r\nProcess Integration: The program offers effective integration of all internal operations, contributing to the improvement of information flow and collaboration across different departments.\r\n\r\nIncreased Efficiency: The program helps improve work efficiency by automating repetitive processes, reducing human errors, and increasing the organization's responsiveness to market changes.\r\n\r\nDecision-Making Improvements: The program provides accurate and updated reports, empowering leaders to make informed decisions based on precise and reliable data.\r\n\r\nTime and Cost Savings: Through process automation, the program reduces the time required to complete various activities and minimizes administrative costs.\r\n\r\nEnhanced Customer Experience: The integration of processes contributes to improving the customer experience by enhancing service quality and accelerating the fulfillment of their needs.\r\n\r\nIn summary, ERP is a vital tool for improving the performance of organizations and enhancing their competitiveness in the modern market.	00201062201060	00201030086000	\N	\N	استخدام الموقع:\r\n1.1 يُشترط على جميع المستخدمين القراءة والموافقة على شروط وأحكام الاستخدام قبل التفاعل مع الموقع.\r\n1.2 يُمنع استخدام الموقع لأي أغراض غير قانونية أو مسيئة.\r\n\r\nالخصوصية:\r\n2.1 يُلتزم الموقع بحماية خصوصية معلومات المستخدمين وعدم مشاركتها مع أطراف ثالثة دون إذن.\r\n2.2 يُفضل قراءة سياسة الخصوصية لفهم كيفية جمع واستخدام المعلومات الشخصية.\r\n\r\nالمحتوى:\r\n3.1 يُمنع نسخ أو نقل المحتوى من الموقع دون إذن كتابي من الإدارة.\r\n3.2 يُحظر نشر أي محتوى يُعتبر مسيئًا أو ينتهك القوانين السارية.\r\n\r\nالمسؤولية:\r\n4.1 يتحمل المستخدمون المسؤولية الكاملة عن أي تفاعلات أو تبادلات تحدث عبر الموقع.\r\n4.2 يُحظر استخدام الموقع بطرق تعرّض للضرر أو تعطيل الخدمة.\r\n\r\nالتعديلات:\r\n5.1 يحتفظ الموقع بحق تعديل شروط الاستخدام في أي وقت، ويتوجب على المستخدمين مراجعة هذه الشروط بشكل دوري.	Website Usage:\r\n1.1 All users are required to read and agree to the terms and conditions of use before interacting with the website.\r\n1.2 The use of the website for any unlawful or abusive purposes is strictly prohibited.\r\n\r\nPrivacy:\r\n2.1 The website is committed to protecting the privacy of user information and will not share it with third parties without permission.\r\n2.2 It is recommended to read the privacy policy to understand how personal information is collected and used.\r\n\r\nContent:\r\n3.1 Copying or transferring content from the website without written permission from the administration is prohibited.\r\n3.2 Publishing any content deemed abusive or in violation of applicable laws is strictly prohibited.\r\n\r\nResponsibility:\r\n4.1 Users are fully responsible for any interactions or exchanges that occur through the website.\r\n4.2 The use of the website in ways that may cause harm or disrupt the service is prohibited.\r\n\r\nModifications:\r\n5.1 The website reserves the right to modify the terms of use at any time, and users are required to periodically review these terms.	2024-01-17 19:14:10	2024-12-04 22:08:01	\N	\N
\.


--
-- Data for Name: inventories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.inventories (id, "Code", "Date", "Draw", "Total_Dificit", "Total_Excess", "Total_Dificit_Price", "Total_Excess_Price", "Account_Excess", "Account_Dificit", "Store", "Coin", "User", arr, created_at, updated_at, "Note", "Settle", "Edit", "Delete", "Edit_New_Code") FROM stdin;
\.


--
-- Data for Name: investors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.investors (id, "Date", "Name", "Investment_Value", "Safe", "Draw", "Coin", "Profit_Precent", "Investment_Period", "Liquidation_Time", "Status", created_at, updated_at, "End_Date", "Account", "Due_Account", "Expenses_Account") FROM stdin;
\.


--
-- Data for Name: issues; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.issues (id, "Code", "Date", "Time", "Client", "Link", "Status", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: items_groups; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.items_groups (id, "Code", "Name", "Type", "Parent", "Note", "Image", created_at, updated_at, "Discount", "Store_Show", "Sales_Show", "NameEn", "Printer", "Arrange", "Sales_Precet") FROM stdin;
33	1	مجموعة عامة	0	0	\N	ItemsGroupsImages/2AcBw7sR23ZoWdqT1RTA.png	2022-04-13 02:47:07	2024-02-09 00:26:06	0	3	1	General Group	\N	1	0
\.


--
-- Data for Name: itineraries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.itineraries (id, "Emp", "Day", "Time", "Client", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: itinerary_visits; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.itinerary_visits (id, "Emp", "Date", "Day", "Time", "Status", "Note", "Client", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: job_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.job_orders (id, "Code", "Date", "Draw", "Payment_Method", "Status", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Safe", "ShipStatus", "Client", "Executor", "Delegate", "Store", "Coin", "Cost_Center", "User", "Later_Due", "Later_Collection", "TaxBill", "TaxCode", "ProfitPrecent", "TaxOnTotal", "TaxOnTotalType", "ProfitTax", "Time", "Branch", "CustomerGroup", "Total_Cost", "DiscountTax", "RecivedDate", "Recipient", "RecivedVoucherCode", "TransferOrder", "ExecuteOrder", created_at, updated_at, "Edit", "Delete", "Edit_New_Code", "Current_Credit", "Execute") FROM stdin;
\.


--
-- Data for Name: job_orders_executors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.job_orders_executors (id, "Product", "Executor", "Order", "Status", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: jobs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.jobs (id, queue, payload, attempts, reserved_at, available_at, created_at) FROM stdin;
\.


--
-- Data for Name: jobs_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.jobs_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
6	فني تركيبات	Technical	2022-03-10 22:37:00	2024-02-08 23:37:15
3	محاسب	Accountant	2022-02-18 01:16:52	2024-02-08 23:38:02
5	مدير الموارد البشرية	HR Manager	2022-03-10 22:36:50	2024-02-08 23:38:20
4	مسئول المبيعات	Head of Sales	2022-03-10 22:36:42	2024-02-08 23:38:40
7	مهندس التركيبات	Technical  Engineer	2022-03-10 22:37:19	2024-02-08 23:38:55
8	مدير	Manager	2024-02-08 23:39:12	2024-02-08 23:39:12
\.


--
-- Data for Name: jouns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.jouns (id, "Draw", "Coin", "Cost_Center", "Note", "Debitor", "Creditor", "Account", "Statement", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: journalizing_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.journalizing_details (id, "Debitor", "Creditor", "Account", "Joun_ID", created_at, updated_at, "Statement") FROM stdin;
\.


--
-- Data for Name: journalizings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.journalizings (id, "Code", "Date", "Draw", "Coin", "Cost_Center", created_at, updated_at, "Total_Debaitor", "Total_Creditor", "Note", "Type", "Code_Type", "Branch", "Status", "TypeEn", arr, "Edit", "Edit_New_Code", "Delete", "Transfer") FROM stdin;
\.


--
-- Data for Name: languages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.languages (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: loan_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.loan_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: loans; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.loans (id, "Code", "Date", "Month", "Amount", "Years_Number", "First_Date", "Install", "Install_Numbers", "Note", "Draw", "Safe", "Coin", "Cost_Center", "Emp", "Type", "User", arr, created_at, updated_at, "Delete", "Refernce_Number") FROM stdin;
\.


--
-- Data for Name: login_sliders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.login_sliders (id, "Image", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: main_e_com_designs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.main_e_com_designs (id, "Font_Type", "Pagination_BG_Color", "Pagination_Txt_Color", "Pagination_Active_BG_Color", "Pagination_Active_Txt_Color", "Body_BG_Type", "Body_BG_Image", "Body_BG_Color", "Sub_Page_BG_Color", "Breadcumb_BG_Color", "Breadcumb_Txt_Color", "Modal_BG_Color", "Modal_Txt_Color", "Modal_Button_BG_Color", "Modal_Button_Txt_Color", "Table_Header_BG_Color", "Table_Header_Txt_Color", "Table_Body_BG_Color", "Table_Body_Txt_Color", "Table_Button_BG_Color", "Table_Button_Txt_Color", "CopyRights_Txt_Color", "CopyRights_Klar_Txt_Color", "CopyRights_Klar_Hover_Txt_Color", "Preloader_BG_Color", "Preloader_Small_Circle_Color", "Preloader_Large_Circle_Color", "Footer_Title_Color", "Footer_Txt_Color", "Footer_Social_Color", "Footer_Social_Hover_BG_Color", "Footer_Social_Hover_Txt_Color", "Header_Top_BG_Color", "Header_Top_Txt_Color", "Header_Top_Txt_Hover_Color", "Header_Middle_BG_Color", "Header_Middle_Icon_Color", "Header_Middle_Icon_Hover_Color", "Header_SearchBar_BG_Color", "Header_SearchBar_Txt_Color", "Header_SearchBar_Icon_BG_Color", "Header_SearchBar_Icon_Txt_Color", "Header_SearchBar_Icon_Hover_BG_Color", "Header_SearchBar_Icon_Hover_Txt_Color", "Navbar_BG_Color", "Navbar_Txt_Color", "Navbar_Hover_BG_Color", "Navbar_Hover_Txt_Color", "Navbar_Category_BG_Color", "Navbar_Category_Txt_Color", "Navbar_Category_Box_BG_Color", "Navbar_Category_Box_Txt_Color", created_at, updated_at, "Footer_Social_BG_Color", "Footer_Txt_Hover_Color") FROM stdin;
1	3	#113366	#ffffff	#ffffff	#113366	1	LogoImages/f3zzbel3naI4SIJmhLUh.jpg	#ffffff	#ffffff	#dedede	#000000	#ffffff	#000000	#113366	#ffffff	#113366	#ffffff	#ffffff	#000000	#113366	#ffffff	#949494	#000000	#bd0000	#ffffff	#bd0000	#000000	#000000	#000000	#113366	#113366	#ffffff	#113366	#ffffff	#ad0000	#15407f	#ffffff	#b30000	#ffffff	#000000	#113366	#ffffff	#bd0000	#ffffff	#ffffff	#000000	#113366	#ffffff	#113366	#ffffff	#ffffff	#113366	2023-09-01 10:22:07	2023-09-01 22:21:44	#ffffff	#990000
\.


--
-- Data for Name: maintainc_bills; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.maintainc_bills (id, "Code", "Date", "Product_Numbers", "Total_Qty", "Total_Price", "Note", "Serial_Num", "Draw", "Company", "Device_Type", "Device_Case", "Coin", "Cost_Center", "Account", "User", arr, "Recipt", created_at, updated_at, "Store", "Total_Price_Errors", "Totaal", "Safe") FROM stdin;
\.


--
-- Data for Name: maintaince_colors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.maintaince_colors (id, "Refuse", "Reported_Client", "Refused_Client", "Edited", created_at, updated_at) FROM stdin;
3	\N	\N	\N	\N	\N	\N
4	#000000	#000000	#000000	#000000	2022-04-13 02:50:56	2022-04-13 02:50:56
\.


--
-- Data for Name: maintaince_default_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.maintaince_default_data (id, "Company", "Device_Type", "Device_Case", "Coin", "Cost_Center", "Draw", "Client", "Sure", "Eng", "Recipient", "Store", created_at, updated_at) FROM stdin;
4	14	6	3	1	4	1	2522	0	40	38	21	2024-02-08 23:25:20	2024-02-09 00:16:09
\.


--
-- Data for Name: manu_store_counts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manu_store_counts (id, "Store", "Total", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: manufacture_companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacture_companies (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
14	الشركة الافتراضية	Default Company	2022-04-13 02:50:26	2024-02-09 01:03:45
\.


--
-- Data for Name: manufacturing_default_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_default_data (id, "Coin", "Draw", "Hall", "Manu_Type", created_at, updated_at, "Executing_Qty", "Payment_Method", "Store", "Client") FROM stdin;
1	1	1	4	0	\N	2024-02-09 00:00:36	0	\N	\N	\N
\.


--
-- Data for Name: manufacturing_executions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_executions (id, "Code", "NewCode", "Date", "Manu_Order_Code", "Manu_Order_Date", "Recived_Date", "Manu_Request_Code", "Outcome_Name", "Outcome_Code", "Outcome_Qty", "Except_Qty", "Outcome_Unit", "Outcome_Store", "Patch_Number", "Manu_Order_ID", "Production_Manager", "Quality_Manager", "Model", "Note", "Status", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: manufacturing_halls; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_halls (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
4	صالة افتراضية	Hall Default	2022-04-26 20:37:50	2024-02-09 01:02:09
\.


--
-- Data for Name: manufacturing_model_assets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_model_assets (id, "Model", "Asset", "Time", "Cost", "Total_Cost", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: manufacturing_model_emps; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_model_emps (id, "Model", "Emp", "Time", "Cost", "Total_Cost", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: manufacturing_model_expenses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_model_expenses (id, "Model", "Account", "Time", "Cost", "Total_Cost", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: manufacturing_model_services; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_model_services (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Precent", "Qty", "Cost", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Depreciation", "Depreciation_Qty", "Store", "Product", "Unit", "Model", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: manufacturing_model_workers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_model_workers (id, "Model", "Worker", "Time", "Cost", "Total_Cost", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: manufacturing_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_models (id, "Code", "Date", "Name", "Time", "Draw", "Note", "Product_Numbers", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Hall", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "Type", "NameEn", "Incom_Store", "Outcom_Store", "Workmanship_Price", "Total_Cost_Workers", "Total_Cost_Emps", "Total_Cost_Assets", "Total_Cost_Services", "Total_Cost_Expenses", "Total_All_Cost") FROM stdin;
\.


--
-- Data for Name: manufacturing_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_orders (id, "Code", "Date", "Model", "Name_Outcome", "Except_Qty", "Total_Required_Qty", created_at, updated_at, "Status", "For_Client", "Client", "Client_Phone", "Client_Address", "Delegate", arr, "Delegate_Phone", "Recived_Date", "Manufacture_Request_Code", "NewCode", "Recipient") FROM stdin;
\.


--
-- Data for Name: manufacturing_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_requests (id, "Code", "Date", "Recived_Date", "Client_Phone", "Client_Address", "Client", "Delegate", "Delegate_Phone", "Payment_Method", "Later_Due", "Note", "Status", "User", arr, created_at, updated_at, "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Store") FROM stdin;
\.


--
-- Data for Name: manufacturing_secretariat_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.manufacturing_secretariat_models (id, "Code", "Date", "Name", "Time", "Draw", "Note", "Product_Numbers", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Hall", "Coin", "Cost_Center", "User", "Type", created_at, updated_at, "NameEn", arr, "Incom_Store", "Outcom_Store") FROM stdin;
\.


--
-- Data for Name: measuerments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.measuerments (id, "Name", "Note", created_at, updated_at, "Code", "NameEn") FROM stdin;
10	قطعة	\N	2022-04-13 02:46:58	2024-02-09 00:23:56	\N	Piece
11	كيلو جرام	\N	2022-05-22 10:12:03	2024-02-09 00:24:05	\N	KG
12	متر	\N	2024-02-09 00:24:43	2024-02-09 00:24:43	\N	Meter
\.


--
-- Data for Name: migrations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.migrations (id, migration, batch) FROM stdin;
24	2024_08_15_131439_add_new_purch_table	1
25	2024_08_15_131459_add_new_purch_ord_table	1
26	2024_08_15_131508_add_new_short_table	1
27	2024_08_15_131519_add_new_moves_table	1
28	2024_08_15_131526_add_new_pro_pruch_ord_table	1
29	2024_08_15_131541_add_new_pro_pruch_table	1
30	2024_08_21_202625_add_sales	2
31	2024_08_21_202636_add_sales_order	2
32	2024_08_21_202643_add_qoute	2
33	2024_08_21_202650_add_qoute_images	2
34	2024_08_21_202656_add__prosales_order	2
35	2024_08_21_202701_add__pro_quotes	2
36	2024_08_21_202706_add__pro_quotes_images	2
37	2024_09_05_151319_create_customers_rate_types_table	3
38	2024_09_25_151531_create_emp_safes_table	4
39	2024_09_27_072541_create_sales_gifts_table	5
40	2024_09_27_073522_create_product_sales_gifts_table	5
41	2024_10_04_185205_add_privacy_intro_table	6
42	2024_10_04_194307_create_emp_mails_table	7
43	2024_10_23_182646_create_emp_covenants_table	8
44	2024_10_23_191426_create_itineraries_table	9
45	2024_10_24_031019_create_itinerary_visits_table	10
46	2024_11_05_123832_create_investors_table	11
47	2024_11_05_133553_create_update_values_investors_table	12
48	2024_11_05_152520_create_pay_profit_investors_table	13
49	2024_11_14_040231_create_capital_increases_table	14
50	2024_12_13_164649_create_order_pays_table	15
51	2024_12_13_214903_create_follow_lists_table	16
52	2024_12_13_223426_create_my_follow_lists_table	17
53	2025_01_02_133837_create_testclients_table	18
54	2025_01_08_105408_create_cart_stores_table	18
55	2025_02_15_154452_create_project_statuses_table	19
56	2025_02_15_160028_create_contract_statuses_table	19
57	2025_02_15_164907_create_real_sate_projects_table	19
58	2025_02_15_164923_create_real_sate_projects_payments_table	19
59	2025_02_16_194456_create_expenses_type_projects_table	19
60	2025_02_17_184814_create_goods_projects_table	19
61	2025_02_17_184824_create_goods_product_projects_table	19
62	2025_02_18_150802_create_paymentss_real_projects_table	19
63	2025_02_18_150816_create_paymentss_products_real_projects_table	19
64	2025_02_24_220658_change_customer_column_type_in_comments_clients_table	20
65	2025_03_03_184435_create_resturant_carts_table	21
66	2025_03_09_133555_create_contractors_real_projects_table	21
67	2025_03_09_144137_create_abstracts_contractors_table	21
68	2025_04_25_145013_create_delivery_apps_table	22
69	2025_04_26_022832_create_apps_change_prices_table	23
70	2021_08_23_185057_create_zkteco_devices_table	24
71	2021_08_23_185624_create_in_out_logs_table	24
72	2025_07_12_234217_add_app_foreign_key_to_sales_table	24
73	2025_07_12_234904_add__newapp_foreign_key_to_sales_table	24
74	2025_07_16_025200_add__c_c_foreign_key_to_sales_table	25
75	2025_07_19_204007_add_new_data_table	26
76	2025_07_28_083803_create_new_shipping_types_table	27
77	2025_07_28_083900_create_new_shipping_categories_table	27
78	2025_07_28_083919_create_new_shipping_rqst_types_table	27
79	2025_07_29_100516_create_shipping_prices_table	28
80	2025_07_29_112753_create_vendor_products_table	29
81	2025_07_30_121329_create_shipments_table	30
82	2025_07_31_133616_create_shipment_moves_table	31
83	2025_08_06_161110_create_car_shippings_table	32
84	2025_08_07_124318_create_shipments_distributions_table	33
85	2025_08_07_125403_create_shipments_distribution_workers_table	33
86	2025_08_07_125431_create_shipments_distribution_goods_table	33
87	2025_08_09_142548_create_unloading_shipments_table	34
88	2025_08_09_143430_create_unloading_shipments_workers_table	34
89	2025_08_09_143439_create_unloading_shipments_goods_table	34
90	2025_08_09_160512_add_shipments_distribution_id_to_goods_table	35
91	2025_08_11_171244_create_emp_movements_table	36
92	2025_08_11_180837_add_new_company_data_table	37
93	2025_08_12_152658_create_recived_shipments_table	38
94	2025_08_12_152706_create_recived_shipment_goods_table	38
95	2025_08_12_190731_add_new_unloading_shipments_goods_table	39
96	2025_08_12_232658_create_shipment_requests_table	40
97	2025_08_15_135058_add_new_shipping_price_table	41
98	2025_08_19_061119_create_customer_comments_products_table	42
99	2025_08_19_065634_create_ticekt_issues_table	43
100	2025_08_22_223835_add_new_emp_ratios_table	44
101	2025_09_15_154242_add_newshipping_defaults_table	45
102	2025_09_19_020524_create_server_d_b_s_table	46
103	2025_09_23_160519_add_new_sales_default_data_table	47
104	2025_10_01_094211_create_real_state_default_data_table	48
105	2025_10_31_141158_create_client_requests_table	49
106	2025_10_31_141211_create_products_client_requests_table	49
107	2025_11_06_150335_add_newsales_default_data_table	50
108	2025_11_06_151441_add_newquotes_data_table	51
109	2025_11_29_070632_create_import_expenses_types_table	52
110	2025_11_29_113424_create_purchases_expenses_types_table	53
111	2025_11_29_113634_create_purchases_order_expenses_types_table	53
112	2025_12_03_140032_create_shippment_products_table	54
113	2025_12_19_163501_create_transport_contractors_table	55
114	2025_12_19_163518_create_transport_prices_table	55
115	2025_12_19_163533_create_transport_receivers_table	55
116	2025_12_20_034129_create_transports_table	56
117	2025_12_31_150259_create_rqst_transports_table	57
118	2025_12_31_155226_create_emp_recipt_accounts_table	58
119	2025_12_31_155238_create_emp_payment_accounts_table	58
120	2026_01_08_202801_create_transport_permits_table	59
121	2026_01_08_204351_create_transport_permit_details_table	59
122	2026_01_25_163015_create_jouns_table	60
123	2026_01_27_024957_add_new_xsales_default_data_table	61
124	2026_02_02_120411_create_assay_projects_table	62
125	2026_02_02_120600_create_assay_project_details_table	62
126	2026_02_03_134057_create_assay_bills_table	63
127	2026_02_03_134109_create_assay_bill_details_table	63
128	2026_03_08_120000_create_sewing_types_table	64
129	2026_03_08_121000_create_sewing_sleeves_table	64
130	2026_03_08_121001_create_sewing_cseed_sleeves_table	64
131	2026_03_08_121002_create_sewing_al_kabkat_table	64
132	2026_03_08_121003_create_sewing_al_taktak_table	64
133	2026_03_08_121004_create_sewing_side_pockets_table	64
134	2026_03_08_121005_create_sewing_cupcake_fillings_table	64
135	2026_03_08_121006_create_sewing_collars_table	64
136	2026_03_08_121007_create_sewing_collar_paddings_table	64
137	2026_03_08_121008_create_sewing_chest_pockets_table	64
138	2026_03_08_121009_create_sewing_chest_pocket_fillings_table	64
139	2026_03_08_121010_create_sewing_seeds_table	64
140	2026_03_08_121011_create_sewing_seed_fillings_table	64
141	2026_03_08_121012_create_sewing_embroideries_table	64
142	2026_03_08_121013_create_sewing_buttons_table	64
143	2026_03_08_122000_create_customer_sizes_table	64
144	2026_03_08_122500_create_dxf_heights_table	64
145	2026_03_08_150159_create_sewing_orders_table	64
146	2026_03_08_150211_create_sewing_order_modules_table	64
147	2026_03_11_120000_add_guest_and_delete_columns_to_sewing_modules_tables	65
148	2026_03_11_153048_create_execute_sewing_orders_table	66
149	2026_03_13_093217_add_newsewing_types_defaults_table	67
150	2026_03_13_180001_create_sewing_requests_table	67
151	2026_03_13_180002_create_sewing_request_details_table	67
152	2026_03_13_220001_add_outside_sewing_type_to_sewing_requests_table	67
153	2026_03_15_104352_create_default_sewing_orders_table	67
154	2026_03_18_130720_create_sewing_accessories_table	68
155	2026_03_18_131656_add_newdefault_sewing_orders_table	68
156	2026_03_20_120000_add_sort_order_to_sewing_modules_tables	69
157	2026_03_21_135054_add_new_default_sewing_table	70
158	2026_03_29_230806_add_company_data_x_x_table	71
159	2026_04_02_013920_create_product_thicknesses_table	71
160	2026_04_02_013935_create_product_sizes_table	71
161	2026_04_02_013943_create_product_colors_table	71
162	2026_04_02_022753_add_products_x_x_table	72
163	2026_04_04_170000_create_catalog_requests_table	73
164	2026_04_06_222625_add_import_expenses_types_table	74
165	2026_04_06_225229_create_documentary__credits_table	74
166	2026_04_16_015318_customer_sizes_x_x_table	75
167	2026_04_18_154852_add_return_sales_x_x_table	76
168	2026_04_18_155556_create_return_resons_table	76
169	2026_04_20_082626_add_modules_x_x_table	77
170	2026_04_20_101250_create_owners_reals_table	78
171	2026_04_20_101307_create_places_reals_table	78
172	2026_04_20_101317_create_services_reals_table	78
173	2026_04_20_101328_create_rent_period_reals_table	78
174	2026_04_20_114819_create_real_units_table	79
175	2026_04_20_122026_create_real_units_services_table	79
176	2026_04_22_071611_create_expenses_type_templates_table	79
177	2026_04_22_102048_create_sales_contracts_table	80
178	2026_04_22_102111_create_rent_contracts_table	80
179	2026_04_22_133206_create_clearances_table	80
180	2026_04_24_082617_add_clearances_x_x_table	80
181	2026_04_24_090734_add_clearances_y_y_table	81
182	2026_04_29_161421_add_rqst_transports_y_y_table	82
183	2026_05_11_203828_create_jobs_table	83
184	2026_05_22_065706_create_manufacturing_model_workers_table	83
185	2026_05_22_065723_create_manufacturing_model_emps_table	83
186	2026_05_22_065734_create_manufacturing_model_assets_table	83
187	2026_05_22_065747_create_manufacturing_model_services_table	83
188	2026_05_22_065756_create_manufacturing_model_expenses_table	83
189	2026_05_22_070002_add_manufacturing_models_y_y_table	83
190	2026_05_28_000001_add_statement_print_view_to_company_data_table	84
\.


--
-- Data for Name: missions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.missions (id, "Name", "Start_Date", "End_Date", "Duration", "Value", "Status", "File", "Desc", "Task_Owner", "Observer", "Project", "User", created_at, updated_at, "NameEn") FROM stdin;
\.


--
-- Data for Name: model_has_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.model_has_permissions (permission_id, model_type, model_id) FROM stdin;
\.


--
-- Data for Name: model_has_roles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.model_has_roles (role_id, model_type, model_id) FROM stdin;
17	App\\Models\\Admin	14
17	App\\Models\\Admin	35
17	App\\Models\\Admin	36
17	App\\Models\\Admin	37
17	App\\Models\\Admin	38
17	App\\Models\\Admin	39
17	App\\Models\\Admin	40
17	App\\Models\\Admin	41
17	App\\Models\\Admin	42
17	App\\Models\\Admin	43
17	App\\Models\\Admin	44
17	App\\Models\\Admin	48
17	App\\Models\\Admin	49
17	App\\Models\\Admin	54
17	App\\Models\\Admin	55
17	App\\Models\\Admin	56
17	App\\Models\\Admin	57
17	App\\Models\\Admin	58
18	App\\Models\\Admin	45
18	App\\Models\\Admin	46
18	App\\Models\\Admin	47
17	App\\Models\\Admin	11
17	App\\Models\\Admin	1
17	App\\Models\\Admin	59
\.


--
-- Data for Name: module_settings_nums; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.module_settings_nums (id, "Branch_Select", "Branch_Num", "Store_Select", "Store_Num", "Users_Select", "Users_Num", created_at, updated_at, "System", "Expire_Date", "Type", "Price", "Edit_System", "Delete_System", "Fingerprint", "Fingerprint_IP", "Fingerprint_Name", "Fingerprint_Attendence") FROM stdin;
2	1	1	1	2	1	5	2022-04-03 15:27:42	2024-12-04 21:11:27	0	\N	\N	\N	\N	\N	\N	\N	\N	\N
\.


--
-- Data for Name: modules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.modules (id, "Capital", "Accounts", "Stores", "CRM", "HR", "Manufacturing", "Maintenance", "Secretariat", created_at, updated_at, "Petrol", "ECommerce", "Shipping", "Bill_Electronic", "Hotels", "Resturant", "Traning_Center", "Translate", "Real_States", "Sewing", "Contracting") FROM stdin;
1	0	1	1	1	1	1	1	1	2022-02-16 05:45:05	2026-04-24 16:10:33	1	1	1	1	1	1	1	\N	1	1	1
\.


--
-- Data for Name: more_products_halls; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.more_products_halls (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "AvQty", "Qty", "Price", "CostPrice", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Store", "Product", "Exp_Date", "V1", "V2", "Unit", "SalesOrder", "Pro_Note", "KitchenEnd", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: most_sales_products_column_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.most_sales_products_column_sechdules (id, "Product_Code", "Product_Name", "Qty", "Price", "Discount", "Tax", "Total", "Store", "Date", "Unit", "Safe", "Branch", "Group", "Brand", created_at, updated_at) FROM stdin;
1	1	1	1	1	\N	\N	\N	1	\N	1	\N	1	1	1	\N	2022-10-14 19:20:19
\.


--
-- Data for Name: most_sales_products_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.most_sales_products_columns (id, "Product_Code", "Product_Name", "Qty", "Price", "Discount", "Tax", "Total", "Store", "Date", "Unit", "Safe", "Branch", "Group", "Brand", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-14 15:19:14
\.


--
-- Data for Name: msg_rqsts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.msg_rqsts (id, "Name", "Email", "Phone", "Subject", "Msg", created_at, updated_at) FROM stdin;
1	Eslam	sales@yousite.com	123123	sdfsdfsd	fsdfsdfsd	2022-06-06 22:08:06	2022-06-06 22:08:06
\.


--
-- Data for Name: my_follow_lists; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.my_follow_lists (id, "Date", "Emp", "Day", "Status", "Client", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: new_shipping_categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.new_shipping_categories (id, "Arabic_Name", "English_Name", "Code", created_at, updated_at) FROM stdin;
1	Default	Default	1	2026-01-14 12:22:21	2026-01-14 12:22:21
\.


--
-- Data for Name: new_shipping_rqst_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.new_shipping_rqst_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: new_shipping_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.new_shipping_types (id, "Arabic_Name", "English_Name", "Code", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.notifications (id, "Date", "Status", "Noti_Ar_Name", "Noti_En_Name", "Type", "Type_Code", "Emp", "Client", "Product", created_at, updated_at, "Store", "Safe", "TypeEn") FROM stdin;
\.


--
-- Data for Name: opening_entries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.opening_entries (id, "Code", "Date", "Draw", "Total_Debaitor", "Total_Creditor", "Note", "Capital", "Coin", "Cost_Center", arr, created_at, updated_at, "SecAccount", "Status", "Edit", "Edit_New_Code", "Delete") FROM stdin;
\.


--
-- Data for Name: opening_entries_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.opening_entries_details (id, "Debitor", "Creditor", "Statement", "Account", "OP_ID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: order_pays; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.order_pays (id, "Code", "Date", "Responsible", "Account", "Amount", "Note", "Status", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: outcom_manufacturing_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.outcom_manufacturing_models (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "Store", "Product", "Unit", "Model", created_at, updated_at, "Cost", "SmallQty", "SmallCode") FROM stdin;
\.


--
-- Data for Name: outcome_manufacturing_secretariat_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.outcome_manufacturing_secretariat_models (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "SmallQty", "SmallCode", "Store", "Product", "Unit", "Model", "Cost", "Workmanship_Price", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: over_times; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.over_times (id, "Arabic_Name", "English_Name", "Hour", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: owners_reals; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.owners_reals (id, "Arabic_Name", "English_Name", "Phone", "Email", "Accommodation", "Tax_Card", "CommercialRegister", "Licensing", created_at, updated_at, "Account") FROM stdin;
\.


--
-- Data for Name: pack_prems; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.pack_prems (id, package, premission, created_at, updated_at) FROM stdin;
109	7	14	2023-11-07 00:13:26	2023-11-07 00:13:26
110	7	15	2023-11-07 00:13:26	2023-11-07 00:13:26
111	7	16	2023-11-07 00:13:26	2023-11-07 00:13:26
112	7	17	2023-11-07 00:13:26	2023-11-07 00:13:26
113	7	18	2023-11-07 00:13:26	2023-11-07 00:13:26
114	7	19	2023-11-07 00:13:26	2023-11-07 00:13:26
115	7	21	2023-11-07 00:13:26	2023-11-07 00:13:26
116	7	22	2023-11-07 00:13:26	2023-11-07 00:13:26
117	7	20	2023-11-07 00:13:26	2023-11-07 00:13:26
118	7	23	2023-11-07 00:13:26	2023-11-07 00:13:26
119	7	24	2023-11-07 00:13:26	2023-11-07 00:13:26
120	7	448	2023-11-07 00:13:26	2023-11-07 00:13:26
121	7	441	2023-11-07 00:13:26	2023-11-07 00:13:26
122	7	546	2023-11-07 00:13:26	2023-11-07 00:13:26
123	7	584	2023-11-07 00:13:26	2023-11-07 00:13:26
124	7	614	2023-11-07 00:13:26	2023-11-07 00:13:26
125	7	442	2023-11-07 00:13:26	2023-11-07 00:13:26
126	7	615	2023-11-07 00:13:26	2023-11-07 00:13:26
127	7	224	2023-11-07 00:13:26	2023-11-07 00:13:26
128	7	225	2023-11-07 00:13:26	2023-11-07 00:13:26
129	7	226	2023-11-07 00:13:26	2023-11-07 00:13:26
130	7	227	2023-11-07 00:13:26	2023-11-07 00:13:26
131	7	228	2023-11-07 00:13:26	2023-11-07 00:13:26
132	7	230	2023-11-07 00:13:26	2023-11-07 00:13:26
133	7	232	2023-11-07 00:13:26	2023-11-07 00:13:26
134	7	233	2023-11-07 00:13:26	2023-11-07 00:13:26
135	7	229	2023-11-07 00:13:26	2023-11-07 00:13:26
136	7	359	2023-11-07 00:13:26	2023-11-07 00:13:26
137	7	234	2023-11-07 00:13:26	2023-11-07 00:13:26
138	7	235	2023-11-07 00:13:26	2023-11-07 00:13:26
139	7	236	2023-11-07 00:13:26	2023-11-07 00:13:26
140	7	238	2023-11-07 00:13:26	2023-11-07 00:13:26
141	7	239	2023-11-07 00:13:26	2023-11-07 00:13:26
142	7	240	2023-11-07 00:13:26	2023-11-07 00:13:26
143	7	242	2023-11-07 00:13:26	2023-11-07 00:13:26
144	7	243	2023-11-07 00:13:26	2023-11-07 00:13:26
145	7	244	2023-11-07 00:13:26	2023-11-07 00:13:26
146	7	246	2023-11-07 00:13:26	2023-11-07 00:13:26
147	7	247	2023-11-07 00:13:26	2023-11-07 00:13:26
148	7	248	2023-11-07 00:13:26	2023-11-07 00:13:26
149	7	249	2023-11-07 00:13:26	2023-11-07 00:13:26
150	7	250	2023-11-07 00:13:26	2023-11-07 00:13:26
151	7	251	2023-11-07 00:13:26	2023-11-07 00:13:26
152	7	252	2023-11-07 00:13:26	2023-11-07 00:13:26
153	7	253	2023-11-07 00:13:26	2023-11-07 00:13:26
154	7	254	2023-11-07 00:13:26	2023-11-07 00:13:26
155	7	255	2023-11-07 00:13:26	2023-11-07 00:13:26
156	7	256	2023-11-07 00:13:26	2023-11-07 00:13:26
157	7	257	2023-11-07 00:13:26	2023-11-07 00:13:26
158	7	241	2023-11-07 00:13:26	2023-11-07 00:13:26
159	7	245	2023-11-07 00:13:26	2023-11-07 00:13:26
160	7	258	2023-11-07 00:13:26	2023-11-07 00:13:26
161	7	259	2023-11-07 00:13:26	2023-11-07 00:13:26
162	7	260	2023-11-07 00:13:26	2023-11-07 00:13:26
163	7	261	2023-11-07 00:13:26	2023-11-07 00:13:26
164	7	262	2023-11-07 00:13:26	2023-11-07 00:13:26
165	7	263	2023-11-07 00:13:26	2023-11-07 00:13:26
166	7	264	2023-11-07 00:13:26	2023-11-07 00:13:26
167	7	265	2023-11-07 00:13:26	2023-11-07 00:13:26
168	7	266	2023-11-07 00:13:26	2023-11-07 00:13:26
169	7	267	2023-11-07 00:13:26	2023-11-07 00:13:26
170	7	268	2023-11-07 00:13:26	2023-11-07 00:13:26
171	7	269	2023-11-07 00:13:26	2023-11-07 00:13:26
172	7	270	2023-11-07 00:13:26	2023-11-07 00:13:26
173	7	271	2023-11-07 00:13:26	2023-11-07 00:13:26
174	7	272	2023-11-07 00:13:26	2023-11-07 00:13:26
175	7	273	2023-11-07 00:13:26	2023-11-07 00:13:26
176	7	274	2023-11-07 00:13:26	2023-11-07 00:13:26
177	7	275	2023-11-07 00:13:26	2023-11-07 00:13:26
178	7	276	2023-11-07 00:13:26	2023-11-07 00:13:26
179	7	277	2023-11-07 00:13:26	2023-11-07 00:13:26
180	7	278	2023-11-07 00:13:26	2023-11-07 00:13:26
181	7	279	2023-11-07 00:13:26	2023-11-07 00:13:26
182	7	280	2023-11-07 00:13:26	2023-11-07 00:13:26
183	7	281	2023-11-07 00:13:26	2023-11-07 00:13:26
184	7	282	2023-11-07 00:13:26	2023-11-07 00:13:26
185	7	283	2023-11-07 00:13:26	2023-11-07 00:13:26
186	7	284	2023-11-07 00:13:26	2023-11-07 00:13:26
187	7	285	2023-11-07 00:13:26	2023-11-07 00:13:26
188	7	286	2023-11-07 00:13:26	2023-11-07 00:13:26
189	7	287	2023-11-07 00:13:26	2023-11-07 00:13:26
190	7	288	2023-11-07 00:13:26	2023-11-07 00:13:26
191	7	289	2023-11-07 00:13:26	2023-11-07 00:13:26
192	7	294	2023-11-07 00:13:26	2023-11-07 00:13:26
193	7	295	2023-11-07 00:13:26	2023-11-07 00:13:26
194	7	296	2023-11-07 00:13:26	2023-11-07 00:13:26
195	7	297	2023-11-07 00:13:26	2023-11-07 00:13:26
196	7	500	2023-11-07 00:13:26	2023-11-07 00:13:26
197	7	501	2023-11-07 00:13:26	2023-11-07 00:13:26
198	7	502	2023-11-07 00:13:26	2023-11-07 00:13:26
199	7	509	2023-11-07 00:13:26	2023-11-07 00:13:26
200	7	510	2023-11-07 00:13:26	2023-11-07 00:13:26
201	7	511	2023-11-07 00:13:26	2023-11-07 00:13:26
202	7	512	2023-11-07 00:13:26	2023-11-07 00:13:26
203	7	567	2023-11-07 00:13:26	2023-11-07 00:13:26
204	7	594	2023-11-07 00:13:26	2023-11-07 00:13:26
205	7	231	2023-11-07 00:13:26	2023-11-07 00:13:26
206	7	360	2023-11-07 00:13:26	2023-11-07 00:13:26
207	7	237	2023-11-07 00:13:26	2023-11-07 00:13:26
208	7	298	2023-11-07 00:13:26	2023-11-07 00:13:26
209	7	299	2023-11-07 00:13:26	2023-11-07 00:13:26
210	7	300	2023-11-07 00:13:26	2023-11-07 00:13:26
211	7	310	2023-11-07 00:13:26	2023-11-07 00:13:26
212	7	311	2023-11-07 00:13:26	2023-11-07 00:13:26
213	7	312	2023-11-07 00:13:26	2023-11-07 00:13:26
214	7	313	2023-11-07 00:13:26	2023-11-07 00:13:26
215	7	314	2023-11-07 00:13:26	2023-11-07 00:13:26
216	7	315	2023-11-07 00:13:26	2023-11-07 00:13:26
217	7	316	2023-11-07 00:13:26	2023-11-07 00:13:26
218	7	317	2023-11-07 00:13:26	2023-11-07 00:13:26
219	7	318	2023-11-07 00:13:26	2023-11-07 00:13:26
220	7	358	2023-11-07 00:13:26	2023-11-07 00:13:26
221	7	365	2023-11-07 00:13:26	2023-11-07 00:13:26
222	7	350	2023-11-07 00:13:26	2023-11-07 00:13:26
223	7	351	2023-11-07 00:13:26	2023-11-07 00:13:26
224	7	352	2023-11-07 00:13:26	2023-11-07 00:13:26
225	7	353	2023-11-07 00:13:26	2023-11-07 00:13:26
226	7	354	2023-11-07 00:13:26	2023-11-07 00:13:26
227	7	355	2023-11-07 00:13:26	2023-11-07 00:13:26
228	7	356	2023-11-07 00:13:26	2023-11-07 00:13:26
229	7	357	2023-11-07 00:13:26	2023-11-07 00:13:26
230	7	392	2023-11-07 00:13:26	2023-11-07 00:13:26
231	7	396	2023-11-07 00:13:26	2023-11-07 00:13:26
232	7	301	2023-11-07 00:13:26	2023-11-07 00:13:26
233	7	302	2023-11-07 00:13:26	2023-11-07 00:13:26
234	7	303	2023-11-07 00:13:26	2023-11-07 00:13:26
235	7	304	2023-11-07 00:13:26	2023-11-07 00:13:26
236	7	305	2023-11-07 00:13:26	2023-11-07 00:13:26
237	7	306	2023-11-07 00:13:26	2023-11-07 00:13:26
238	7	307	2023-11-07 00:13:26	2023-11-07 00:13:26
239	7	308	2023-11-07 00:13:26	2023-11-07 00:13:26
240	7	309	2023-11-07 00:13:26	2023-11-07 00:13:26
241	7	319	2023-11-07 00:13:26	2023-11-07 00:13:26
242	7	320	2023-11-07 00:13:26	2023-11-07 00:13:26
243	7	322	2023-11-07 00:13:26	2023-11-07 00:13:26
244	7	323	2023-11-07 00:13:26	2023-11-07 00:13:26
245	7	324	2023-11-07 00:13:26	2023-11-07 00:13:26
246	7	326	2023-11-07 00:13:26	2023-11-07 00:13:26
247	7	327	2023-11-07 00:13:26	2023-11-07 00:13:26
248	7	328	2023-11-07 00:13:26	2023-11-07 00:13:26
249	7	321	2023-11-07 00:13:26	2023-11-07 00:13:26
250	7	325	2023-11-07 00:13:26	2023-11-07 00:13:26
251	7	399	2023-11-07 00:13:26	2023-11-07 00:13:26
252	7	400	2023-11-07 00:13:26	2023-11-07 00:13:26
253	7	401	2023-11-07 00:13:26	2023-11-07 00:13:26
254	7	402	2023-11-07 00:13:26	2023-11-07 00:13:26
255	7	403	2023-11-07 00:13:26	2023-11-07 00:13:26
256	7	404	2023-11-07 00:13:26	2023-11-07 00:13:26
257	7	405	2023-11-07 00:13:26	2023-11-07 00:13:26
258	7	406	2023-11-07 00:13:26	2023-11-07 00:13:26
259	7	407	2023-11-07 00:13:26	2023-11-07 00:13:26
260	7	408	2023-11-07 00:13:26	2023-11-07 00:13:26
261	7	409	2023-11-07 00:13:26	2023-11-07 00:13:26
262	7	410	2023-11-07 00:13:26	2023-11-07 00:13:26
263	7	411	2023-11-07 00:13:26	2023-11-07 00:13:26
264	7	412	2023-11-07 00:13:26	2023-11-07 00:13:26
265	7	413	2023-11-07 00:13:26	2023-11-07 00:13:26
266	7	414	2023-11-07 00:13:26	2023-11-07 00:13:26
267	7	415	2023-11-07 00:13:26	2023-11-07 00:13:26
268	7	416	2023-11-07 00:13:26	2023-11-07 00:13:26
269	7	417	2023-11-07 00:13:26	2023-11-07 00:13:26
270	7	418	2023-11-07 00:13:26	2023-11-07 00:13:26
271	7	419	2023-11-07 00:13:26	2023-11-07 00:13:26
272	7	420	2023-11-07 00:13:26	2023-11-07 00:13:26
273	7	421	2023-11-07 00:13:26	2023-11-07 00:13:26
274	7	422	2023-11-07 00:13:26	2023-11-07 00:13:26
275	7	423	2023-11-07 00:13:26	2023-11-07 00:13:26
276	7	339	2023-11-07 00:13:26	2023-11-07 00:13:26
277	7	340	2023-11-07 00:13:26	2023-11-07 00:13:26
278	7	344	2023-11-07 00:13:26	2023-11-07 00:13:26
279	7	345	2023-11-07 00:13:26	2023-11-07 00:13:26
280	7	385	2023-11-07 00:13:26	2023-11-07 00:13:26
281	7	386	2023-11-07 00:13:26	2023-11-07 00:13:26
282	7	387	2023-11-07 00:13:26	2023-11-07 00:13:26
283	7	388	2023-11-07 00:13:26	2023-11-07 00:13:26
284	7	389	2023-11-07 00:13:26	2023-11-07 00:13:26
285	7	390	2023-11-07 00:13:26	2023-11-07 00:13:26
286	7	391	2023-11-07 00:13:26	2023-11-07 00:13:26
287	7	555	2023-11-07 00:13:26	2023-11-07 00:13:26
288	7	556	2023-11-07 00:13:26	2023-11-07 00:13:26
289	7	557	2023-11-07 00:13:26	2023-11-07 00:13:26
290	7	455	2023-11-07 00:13:26	2023-11-07 00:13:26
291	7	456	2023-11-07 00:13:26	2023-11-07 00:13:26
292	7	458	2023-11-07 00:13:26	2023-11-07 00:13:26
293	7	459	2023-11-07 00:13:26	2023-11-07 00:13:26
294	7	460	2023-11-07 00:13:26	2023-11-07 00:13:26
295	7	462	2023-11-07 00:13:26	2023-11-07 00:13:26
296	7	463	2023-11-07 00:13:26	2023-11-07 00:13:26
297	7	457	2023-11-07 00:13:26	2023-11-07 00:13:26
298	7	461	2023-11-07 00:13:26	2023-11-07 00:13:26
299	7	465	2023-11-07 00:13:26	2023-11-07 00:13:26
300	7	466	2023-11-07 00:13:26	2023-11-07 00:13:26
301	7	467	2023-11-07 00:13:26	2023-11-07 00:13:26
302	7	468	2023-11-07 00:13:26	2023-11-07 00:13:26
303	7	469	2023-11-07 00:13:26	2023-11-07 00:13:26
304	7	470	2023-11-07 00:13:26	2023-11-07 00:13:26
305	7	471	2023-11-07 00:13:26	2023-11-07 00:13:26
306	7	472	2023-11-07 00:13:26	2023-11-07 00:13:26
307	7	473	2023-11-07 00:13:26	2023-11-07 00:13:26
308	7	474	2023-11-07 00:13:26	2023-11-07 00:13:26
309	7	476	2023-11-07 00:13:26	2023-11-07 00:13:26
310	7	478	2023-11-07 00:13:26	2023-11-07 00:13:26
311	7	479	2023-11-07 00:13:26	2023-11-07 00:13:26
312	7	475	2023-11-07 00:13:26	2023-11-07 00:13:26
313	7	480	2023-11-07 00:13:26	2023-11-07 00:13:26
314	7	481	2023-11-07 00:13:26	2023-11-07 00:13:26
315	7	483	2023-11-07 00:13:26	2023-11-07 00:13:26
316	7	484	2023-11-07 00:13:26	2023-11-07 00:13:26
317	7	485	2023-11-07 00:13:26	2023-11-07 00:13:26
318	7	482	2023-11-07 00:13:26	2023-11-07 00:13:26
319	7	486	2023-11-07 00:13:26	2023-11-07 00:13:26
320	7	576	2023-11-07 00:13:26	2023-11-07 00:13:26
321	7	577	2023-11-07 00:13:26	2023-11-07 00:13:26
322	7	578	2023-11-07 00:13:26	2023-11-07 00:13:26
323	7	579	2023-11-07 00:13:26	2023-11-07 00:13:26
324	7	580	2023-11-07 00:13:26	2023-11-07 00:13:26
325	7	581	2023-11-07 00:13:26	2023-11-07 00:13:26
326	7	582	2023-11-07 00:13:26	2023-11-07 00:13:26
327	7	583	2023-11-07 00:13:26	2023-11-07 00:13:26
328	7	25	2023-11-07 00:13:26	2023-11-07 00:13:26
329	7	487	2023-11-07 00:13:26	2023-11-07 00:13:26
330	7	488	2023-11-07 00:13:26	2023-11-07 00:13:26
331	7	489	2023-11-07 00:13:26	2023-11-07 00:13:26
332	7	490	2023-11-07 00:13:26	2023-11-07 00:13:26
333	7	491	2023-11-07 00:13:26	2023-11-07 00:13:26
334	7	551	2023-11-07 00:13:26	2023-11-07 00:13:26
335	7	552	2023-11-07 00:13:26	2023-11-07 00:13:26
336	7	568	2023-11-07 00:13:26	2023-11-07 00:13:26
337	7	569	2023-11-07 00:13:26	2023-11-07 00:13:26
338	7	570	2023-11-07 00:13:26	2023-11-07 00:13:26
339	7	492	2023-11-07 00:13:26	2023-11-07 00:13:26
340	7	493	2023-11-07 00:13:26	2023-11-07 00:13:26
341	7	494	2023-11-07 00:13:26	2023-11-07 00:13:26
342	7	495	2023-11-07 00:13:26	2023-11-07 00:13:26
343	7	497	2023-11-07 00:13:26	2023-11-07 00:13:26
344	7	496	2023-11-07 00:13:26	2023-11-07 00:13:26
345	7	572	2023-11-07 00:13:26	2023-11-07 00:13:26
346	7	573	2023-11-07 00:13:26	2023-11-07 00:13:26
347	7	574	2023-11-07 00:13:26	2023-11-07 00:13:26
348	7	575	2023-11-07 00:13:26	2023-11-07 00:13:26
349	7	595	2023-11-07 00:13:26	2023-11-07 00:13:26
350	7	596	2023-11-07 00:13:26	2023-11-07 00:13:26
351	7	597	2023-11-07 00:13:26	2023-11-07 00:13:26
352	7	598	2023-11-07 00:13:26	2023-11-07 00:13:26
353	7	599	2023-11-07 00:13:26	2023-11-07 00:13:26
354	7	600	2023-11-07 00:13:26	2023-11-07 00:13:26
355	7	601	2023-11-07 00:13:26	2023-11-07 00:13:26
356	7	602	2023-11-07 00:13:26	2023-11-07 00:13:26
357	7	603	2023-11-07 00:13:26	2023-11-07 00:13:26
358	7	604	2023-11-07 00:13:26	2023-11-07 00:13:26
359	7	605	2023-11-07 00:13:26	2023-11-07 00:13:26
360	7	606	2023-11-07 00:13:26	2023-11-07 00:13:26
361	7	607	2023-11-07 00:13:26	2023-11-07 00:13:26
362	7	608	2023-11-07 00:13:26	2023-11-07 00:13:26
363	7	609	2023-11-07 00:13:26	2023-11-07 00:13:26
364	7	610	2023-11-07 00:13:26	2023-11-07 00:13:26
365	7	612	2023-11-07 00:13:26	2023-11-07 00:13:26
366	7	611	2023-11-07 00:13:26	2023-11-07 00:13:26
367	7	613	2023-11-07 00:13:26	2023-11-07 00:13:26
368	7	26	2023-11-07 00:13:26	2023-11-07 00:13:26
369	7	27	2023-11-07 00:13:26	2023-11-07 00:13:26
370	7	28	2023-11-07 00:13:26	2023-11-07 00:13:26
371	7	29	2023-11-07 00:13:26	2023-11-07 00:13:26
372	7	30	2023-11-07 00:13:26	2023-11-07 00:13:26
373	7	31	2023-11-07 00:13:26	2023-11-07 00:13:26
374	7	32	2023-11-07 00:13:26	2023-11-07 00:13:26
375	7	33	2023-11-07 00:13:26	2023-11-07 00:13:26
376	7	367	2023-11-07 00:13:26	2023-11-07 00:13:26
377	7	368	2023-11-07 00:13:26	2023-11-07 00:13:26
378	7	369	2023-11-07 00:13:26	2023-11-07 00:13:26
379	7	370	2023-11-07 00:13:26	2023-11-07 00:13:26
380	7	371	2023-11-07 00:13:26	2023-11-07 00:13:26
381	7	372	2023-11-07 00:13:26	2023-11-07 00:13:26
382	7	373	2023-11-07 00:13:26	2023-11-07 00:13:26
383	7	378	2023-11-07 00:13:26	2023-11-07 00:13:26
384	7	395	2023-11-07 00:13:26	2023-11-07 00:13:26
385	7	379	2023-11-07 00:13:26	2023-11-07 00:13:26
386	7	380	2023-11-07 00:13:26	2023-11-07 00:13:26
387	7	34	2023-11-07 00:13:26	2023-11-07 00:13:26
388	7	35	2023-11-07 00:13:26	2023-11-07 00:13:26
389	7	36	2023-11-07 00:13:26	2023-11-07 00:13:26
390	7	37	2023-11-07 00:13:26	2023-11-07 00:13:26
391	7	38	2023-11-07 00:13:26	2023-11-07 00:13:26
392	7	39	2023-11-07 00:13:26	2023-11-07 00:13:26
393	7	424	2023-11-07 00:13:26	2023-11-07 00:13:26
394	7	425	2023-11-07 00:13:26	2023-11-07 00:13:26
395	7	427	2023-11-07 00:13:26	2023-11-07 00:13:26
396	7	443	2023-11-07 00:13:26	2023-11-07 00:13:26
397	7	449	2023-11-07 00:13:26	2023-11-07 00:13:26
398	7	452	2023-11-07 00:13:26	2023-11-07 00:13:26
399	7	453	2023-11-07 00:13:26	2023-11-07 00:13:26
400	7	454	2023-11-07 00:13:26	2023-11-07 00:13:26
401	7	464	2023-11-07 00:13:26	2023-11-07 00:13:26
402	7	450	2023-11-07 00:13:26	2023-11-07 00:13:26
403	7	498	2023-11-07 00:13:26	2023-11-07 00:13:26
404	7	499	2023-11-07 00:13:26	2023-11-07 00:13:26
405	7	513	2023-11-07 00:13:26	2023-11-07 00:13:26
406	7	514	2023-11-07 00:13:26	2023-11-07 00:13:26
407	7	515	2023-11-07 00:13:26	2023-11-07 00:13:26
408	7	516	2023-11-07 00:13:26	2023-11-07 00:13:26
409	7	517	2023-11-07 00:13:26	2023-11-07 00:13:26
410	7	518	2023-11-07 00:13:26	2023-11-07 00:13:26
411	7	519	2023-11-07 00:13:26	2023-11-07 00:13:26
412	7	520	2023-11-07 00:13:26	2023-11-07 00:13:26
413	7	521	2023-11-07 00:13:26	2023-11-07 00:13:26
414	7	522	2023-11-07 00:13:26	2023-11-07 00:13:26
415	7	523	2023-11-07 00:13:26	2023-11-07 00:13:26
416	7	524	2023-11-07 00:13:26	2023-11-07 00:13:26
417	7	525	2023-11-07 00:13:26	2023-11-07 00:13:26
418	7	526	2023-11-07 00:13:26	2023-11-07 00:13:26
419	7	527	2023-11-07 00:13:26	2023-11-07 00:13:26
420	7	528	2023-11-07 00:13:26	2023-11-07 00:13:26
421	7	529	2023-11-07 00:13:26	2023-11-07 00:13:26
422	7	530	2023-11-07 00:13:26	2023-11-07 00:13:26
423	7	531	2023-11-07 00:13:26	2023-11-07 00:13:26
424	7	547	2023-11-07 00:13:26	2023-11-07 00:13:26
425	7	548	2023-11-07 00:13:26	2023-11-07 00:13:26
426	7	549	2023-11-07 00:13:26	2023-11-07 00:13:26
427	7	550	2023-11-07 00:13:26	2023-11-07 00:13:26
428	7	553	2023-11-07 00:13:26	2023-11-07 00:13:26
429	7	554	2023-11-07 00:13:26	2023-11-07 00:13:26
430	7	586	2023-11-07 00:13:26	2023-11-07 00:13:26
431	7	588	2023-11-07 00:13:26	2023-11-07 00:13:26
432	7	589	2023-11-07 00:13:26	2023-11-07 00:13:26
433	7	590	2023-11-07 00:13:26	2023-11-07 00:13:26
434	7	591	2023-11-07 00:13:26	2023-11-07 00:13:26
435	7	593	2023-11-07 00:13:26	2023-11-07 00:13:26
436	7	616	2023-11-07 00:13:26	2023-11-07 00:13:26
437	7	40	2023-11-07 00:13:26	2023-11-07 00:13:26
438	7	44	2023-11-07 00:13:26	2023-11-07 00:13:26
439	7	45	2023-11-07 00:13:26	2023-11-07 00:13:26
440	7	46	2023-11-07 00:13:26	2023-11-07 00:13:26
441	7	47	2023-11-07 00:13:26	2023-11-07 00:13:26
442	7	48	2023-11-07 00:13:26	2023-11-07 00:13:26
443	7	49	2023-11-07 00:13:26	2023-11-07 00:13:26
444	7	50	2023-11-07 00:13:26	2023-11-07 00:13:26
445	7	51	2023-11-07 00:13:26	2023-11-07 00:13:26
446	7	52	2023-11-07 00:13:26	2023-11-07 00:13:26
447	7	384	2023-11-07 00:13:26	2023-11-07 00:13:26
448	7	41	2023-11-07 00:13:26	2023-11-07 00:13:26
449	7	42	2023-11-07 00:13:26	2023-11-07 00:13:26
450	7	43	2023-11-07 00:13:26	2023-11-07 00:13:26
451	7	587	2023-11-07 00:13:26	2023-11-07 00:13:26
452	7	592	2023-11-07 00:13:26	2023-11-07 00:13:26
453	7	53	2023-11-07 00:13:26	2023-11-07 00:13:26
454	7	54	2023-11-07 00:13:26	2023-11-07 00:13:26
455	7	55	2023-11-07 00:13:26	2023-11-07 00:13:26
456	7	56	2023-11-07 00:13:26	2023-11-07 00:13:26
457	7	57	2023-11-07 00:13:26	2023-11-07 00:13:26
458	7	58	2023-11-07 00:13:26	2023-11-07 00:13:26
459	7	59	2023-11-07 00:13:26	2023-11-07 00:13:26
460	7	60	2023-11-07 00:13:26	2023-11-07 00:13:26
461	7	61	2023-11-07 00:13:26	2023-11-07 00:13:26
462	7	62	2023-11-07 00:13:26	2023-11-07 00:13:26
463	7	63	2023-11-07 00:13:26	2023-11-07 00:13:26
464	7	64	2023-11-07 00:13:26	2023-11-07 00:13:26
465	7	65	2023-11-07 00:13:26	2023-11-07 00:13:26
466	7	66	2023-11-07 00:13:26	2023-11-07 00:13:26
467	7	67	2023-11-07 00:13:26	2023-11-07 00:13:26
468	7	68	2023-11-07 00:13:26	2023-11-07 00:13:26
469	7	69	2023-11-07 00:13:26	2023-11-07 00:13:26
470	7	70	2023-11-07 00:13:26	2023-11-07 00:13:26
471	7	71	2023-11-07 00:13:26	2023-11-07 00:13:26
472	7	72	2023-11-07 00:13:26	2023-11-07 00:13:26
473	7	73	2023-11-07 00:13:26	2023-11-07 00:13:26
474	7	74	2023-11-07 00:13:26	2023-11-07 00:13:26
475	7	75	2023-11-07 00:13:26	2023-11-07 00:13:26
476	7	76	2023-11-07 00:13:26	2023-11-07 00:13:26
477	7	77	2023-11-07 00:13:26	2023-11-07 00:13:26
478	7	432	2023-11-07 00:13:26	2023-11-07 00:13:26
479	7	433	2023-11-07 00:13:26	2023-11-07 00:13:26
480	7	434	2023-11-07 00:13:26	2023-11-07 00:13:26
481	7	435	2023-11-07 00:13:26	2023-11-07 00:13:26
482	7	436	2023-11-07 00:13:26	2023-11-07 00:13:26
483	7	437	2023-11-07 00:13:26	2023-11-07 00:13:26
484	7	438	2023-11-07 00:13:26	2023-11-07 00:13:26
485	7	439	2023-11-07 00:13:26	2023-11-07 00:13:26
486	7	440	2023-11-07 00:13:26	2023-11-07 00:13:26
487	7	451	2023-11-07 00:13:26	2023-11-07 00:13:26
488	7	477	2023-11-07 00:13:26	2023-11-07 00:13:26
489	7	585	2023-11-07 00:13:26	2023-11-07 00:13:26
490	7	78	2023-11-07 00:13:26	2023-11-07 00:13:26
491	7	79	2023-11-07 00:13:26	2023-11-07 00:13:26
492	7	80	2023-11-07 00:13:26	2023-11-07 00:13:26
493	7	81	2023-11-07 00:13:26	2023-11-07 00:13:26
494	7	82	2023-11-07 00:13:26	2023-11-07 00:13:26
495	7	83	2023-11-07 00:13:26	2023-11-07 00:13:26
496	7	84	2023-11-07 00:13:26	2023-11-07 00:13:26
497	7	85	2023-11-07 00:13:26	2023-11-07 00:13:26
498	7	86	2023-11-07 00:13:26	2023-11-07 00:13:26
499	7	87	2023-11-07 00:13:26	2023-11-07 00:13:26
500	7	88	2023-11-07 00:13:26	2023-11-07 00:13:26
501	7	89	2023-11-07 00:13:26	2023-11-07 00:13:26
502	7	90	2023-11-07 00:13:26	2023-11-07 00:13:26
503	7	91	2023-11-07 00:13:26	2023-11-07 00:13:26
504	7	92	2023-11-07 00:13:26	2023-11-07 00:13:26
505	7	93	2023-11-07 00:13:26	2023-11-07 00:13:26
506	7	94	2023-11-07 00:13:26	2023-11-07 00:13:26
507	7	374	2023-11-07 00:13:26	2023-11-07 00:13:26
508	7	375	2023-11-07 00:13:26	2023-11-07 00:13:26
509	7	393	2023-11-07 00:13:26	2023-11-07 00:13:26
510	7	394	2023-11-07 00:13:26	2023-11-07 00:13:26
511	7	397	2023-11-07 00:13:26	2023-11-07 00:13:26
512	7	398	2023-11-07 00:13:26	2023-11-07 00:13:26
513	7	541	2023-11-07 00:13:26	2023-11-07 00:13:26
514	7	543	2023-11-07 00:13:26	2023-11-07 00:13:26
515	7	545	2023-11-07 00:13:26	2023-11-07 00:13:26
516	7	571	2023-11-07 00:13:26	2023-11-07 00:13:26
517	7	95	2023-11-07 00:13:26	2023-11-07 00:13:26
518	7	96	2023-11-07 00:13:26	2023-11-07 00:13:26
519	7	97	2023-11-07 00:13:26	2023-11-07 00:13:26
520	7	98	2023-11-07 00:13:26	2023-11-07 00:13:26
521	7	99	2023-11-07 00:13:26	2023-11-07 00:13:26
522	7	100	2023-11-07 00:13:26	2023-11-07 00:13:26
523	7	101	2023-11-07 00:13:26	2023-11-07 00:13:26
524	7	102	2023-11-07 00:13:26	2023-11-07 00:13:26
525	7	103	2023-11-07 00:13:26	2023-11-07 00:13:26
526	7	104	2023-11-07 00:13:26	2023-11-07 00:13:26
527	7	361	2023-11-07 00:13:26	2023-11-07 00:13:26
528	7	362	2023-11-07 00:13:26	2023-11-07 00:13:26
529	7	363	2023-11-07 00:13:26	2023-11-07 00:13:26
530	7	364	2023-11-07 00:13:26	2023-11-07 00:13:26
531	7	366	2023-11-07 00:13:26	2023-11-07 00:13:26
532	7	376	2023-11-07 00:13:26	2023-11-07 00:13:26
533	7	377	2023-11-07 00:13:26	2023-11-07 00:13:26
534	7	105	2023-11-07 00:13:26	2023-11-07 00:13:26
535	7	106	2023-11-07 00:13:26	2023-11-07 00:13:26
536	7	107	2023-11-07 00:13:26	2023-11-07 00:13:26
537	7	108	2023-11-07 00:13:26	2023-11-07 00:13:26
538	7	109	2023-11-07 00:13:26	2023-11-07 00:13:26
539	7	110	2023-11-07 00:13:26	2023-11-07 00:13:26
540	7	111	2023-11-07 00:13:26	2023-11-07 00:13:26
541	7	112	2023-11-07 00:13:26	2023-11-07 00:13:26
542	7	113	2023-11-07 00:13:26	2023-11-07 00:13:26
543	7	114	2023-11-07 00:13:26	2023-11-07 00:13:26
544	7	115	2023-11-07 00:13:26	2023-11-07 00:13:26
545	7	116	2023-11-07 00:13:26	2023-11-07 00:13:26
546	7	117	2023-11-07 00:13:26	2023-11-07 00:13:26
547	7	428	2023-11-07 00:13:26	2023-11-07 00:13:26
548	7	429	2023-11-07 00:13:26	2023-11-07 00:13:26
549	7	430	2023-11-07 00:13:26	2023-11-07 00:13:26
550	7	431	2023-11-07 00:13:26	2023-11-07 00:13:26
551	7	444	2023-11-07 00:13:26	2023-11-07 00:13:26
552	7	445	2023-11-07 00:13:26	2023-11-07 00:13:26
553	7	446	2023-11-07 00:13:26	2023-11-07 00:13:26
554	7	447	2023-11-07 00:13:26	2023-11-07 00:13:26
555	7	507	2023-11-07 00:13:26	2023-11-07 00:13:26
556	7	508	2023-11-07 00:13:26	2023-11-07 00:13:26
557	7	532	2023-11-07 00:13:26	2023-11-07 00:13:26
558	7	540	2023-11-07 00:13:26	2023-11-07 00:13:26
559	7	542	2023-11-07 00:13:26	2023-11-07 00:13:26
560	7	544	2023-11-07 00:13:26	2023-11-07 00:13:26
561	7	564	2023-11-07 00:13:26	2023-11-07 00:13:26
562	7	565	2023-11-07 00:13:26	2023-11-07 00:13:26
563	7	566	2023-11-07 00:13:26	2023-11-07 00:13:26
564	7	118	2023-11-07 00:13:26	2023-11-07 00:13:26
565	7	119	2023-11-07 00:13:26	2023-11-07 00:13:26
566	7	120	2023-11-07 00:13:26	2023-11-07 00:13:26
567	7	121	2023-11-07 00:13:26	2023-11-07 00:13:26
568	7	122	2023-11-07 00:13:26	2023-11-07 00:13:26
569	7	123	2023-11-07 00:13:26	2023-11-07 00:13:26
570	7	124	2023-11-07 00:13:26	2023-11-07 00:13:26
571	7	125	2023-11-07 00:13:26	2023-11-07 00:13:26
572	7	126	2023-11-07 00:13:26	2023-11-07 00:13:26
573	7	127	2023-11-07 00:13:26	2023-11-07 00:13:26
574	7	128	2023-11-07 00:13:26	2023-11-07 00:13:26
575	7	129	2023-11-07 00:13:26	2023-11-07 00:13:26
576	7	130	2023-11-07 00:13:26	2023-11-07 00:13:26
577	7	329	2023-11-07 00:13:26	2023-11-07 00:13:26
578	7	330	2023-11-07 00:13:26	2023-11-07 00:13:26
579	7	331	2023-11-07 00:13:26	2023-11-07 00:13:26
580	7	332	2023-11-07 00:13:26	2023-11-07 00:13:26
581	7	333	2023-11-07 00:13:26	2023-11-07 00:13:26
582	7	334	2023-11-07 00:13:26	2023-11-07 00:13:26
583	7	131	2023-11-07 00:13:26	2023-11-07 00:13:26
584	7	132	2023-11-07 00:13:26	2023-11-07 00:13:26
585	7	133	2023-11-07 00:13:26	2023-11-07 00:13:26
586	7	134	2023-11-07 00:13:26	2023-11-07 00:13:26
587	7	135	2023-11-07 00:13:26	2023-11-07 00:13:26
588	7	136	2023-11-07 00:13:26	2023-11-07 00:13:26
589	7	137	2023-11-07 00:13:26	2023-11-07 00:13:26
590	7	138	2023-11-07 00:13:26	2023-11-07 00:13:26
591	7	139	2023-11-07 00:13:26	2023-11-07 00:13:26
592	7	140	2023-11-07 00:13:26	2023-11-07 00:13:26
593	7	141	2023-11-07 00:13:26	2023-11-07 00:13:26
594	7	142	2023-11-07 00:13:26	2023-11-07 00:13:26
595	7	143	2023-11-07 00:13:26	2023-11-07 00:13:26
596	7	144	2023-11-07 00:13:26	2023-11-07 00:13:26
597	7	145	2023-11-07 00:13:26	2023-11-07 00:13:26
598	7	146	2023-11-07 00:13:26	2023-11-07 00:13:26
599	7	147	2023-11-07 00:13:26	2023-11-07 00:13:26
600	7	148	2023-11-07 00:13:26	2023-11-07 00:13:26
601	7	149	2023-11-07 00:13:26	2023-11-07 00:13:26
602	7	150	2023-11-07 00:13:26	2023-11-07 00:13:26
603	7	151	2023-11-07 00:13:26	2023-11-07 00:13:26
604	7	152	2023-11-07 00:13:26	2023-11-07 00:13:26
605	7	153	2023-11-07 00:13:26	2023-11-07 00:13:26
606	7	154	2023-11-07 00:13:26	2023-11-07 00:13:26
607	7	155	2023-11-07 00:13:26	2023-11-07 00:13:26
608	7	156	2023-11-07 00:13:26	2023-11-07 00:13:26
609	7	157	2023-11-07 00:13:26	2023-11-07 00:13:26
610	7	158	2023-11-07 00:13:26	2023-11-07 00:13:26
611	7	159	2023-11-07 00:13:26	2023-11-07 00:13:26
612	7	160	2023-11-07 00:13:26	2023-11-07 00:13:26
613	7	161	2023-11-07 00:13:26	2023-11-07 00:13:26
614	7	162	2023-11-07 00:13:26	2023-11-07 00:13:26
615	7	163	2023-11-07 00:13:26	2023-11-07 00:13:26
616	7	164	2023-11-07 00:13:26	2023-11-07 00:13:26
617	7	165	2023-11-07 00:13:26	2023-11-07 00:13:26
618	7	166	2023-11-07 00:13:26	2023-11-07 00:13:26
619	7	167	2023-11-07 00:13:26	2023-11-07 00:13:26
620	7	168	2023-11-07 00:13:26	2023-11-07 00:13:26
621	7	169	2023-11-07 00:13:26	2023-11-07 00:13:26
622	7	170	2023-11-07 00:13:26	2023-11-07 00:13:26
623	7	171	2023-11-07 00:13:26	2023-11-07 00:13:26
624	7	172	2023-11-07 00:13:26	2023-11-07 00:13:26
625	7	173	2023-11-07 00:13:26	2023-11-07 00:13:26
626	7	426	2023-11-07 00:13:26	2023-11-07 00:13:26
627	7	341	2023-11-07 00:13:26	2023-11-07 00:13:26
628	7	342	2023-11-07 00:13:26	2023-11-07 00:13:26
629	7	343	2023-11-07 00:13:26	2023-11-07 00:13:26
630	7	346	2023-11-07 00:13:26	2023-11-07 00:13:26
631	7	347	2023-11-07 00:13:26	2023-11-07 00:13:26
632	7	348	2023-11-07 00:13:26	2023-11-07 00:13:26
633	7	349	2023-11-07 00:13:26	2023-11-07 00:13:26
634	7	536	2023-11-07 00:13:26	2023-11-07 00:13:26
635	7	537	2023-11-07 00:13:26	2023-11-07 00:13:26
636	7	538	2023-11-07 00:13:26	2023-11-07 00:13:26
637	7	560	2023-11-07 00:13:26	2023-11-07 00:13:26
638	7	561	2023-11-07 00:13:26	2023-11-07 00:13:26
639	7	562	2023-11-07 00:13:26	2023-11-07 00:13:26
640	7	563	2023-11-07 00:13:26	2023-11-07 00:13:26
641	7	174	2023-11-07 00:13:26	2023-11-07 00:13:26
642	7	176	2023-11-07 00:13:26	2023-11-07 00:13:26
643	7	178	2023-11-07 00:13:26	2023-11-07 00:13:26
644	7	179	2023-11-07 00:13:26	2023-11-07 00:13:26
645	7	180	2023-11-07 00:13:26	2023-11-07 00:13:26
646	7	182	2023-11-07 00:13:26	2023-11-07 00:13:26
647	7	183	2023-11-07 00:13:26	2023-11-07 00:13:26
648	7	184	2023-11-07 00:13:26	2023-11-07 00:13:26
649	7	186	2023-11-07 00:13:26	2023-11-07 00:13:26
650	7	187	2023-11-07 00:13:26	2023-11-07 00:13:26
651	7	188	2023-11-07 00:13:26	2023-11-07 00:13:26
652	7	190	2023-11-07 00:13:26	2023-11-07 00:13:26
653	7	191	2023-11-07 00:13:26	2023-11-07 00:13:26
654	7	192	2023-11-07 00:13:26	2023-11-07 00:13:26
655	7	194	2023-11-07 00:13:26	2023-11-07 00:13:26
656	7	177	2023-11-07 00:13:26	2023-11-07 00:13:26
657	7	181	2023-11-07 00:13:26	2023-11-07 00:13:26
658	7	185	2023-11-07 00:13:26	2023-11-07 00:13:26
659	7	189	2023-11-07 00:13:26	2023-11-07 00:13:26
660	7	195	2023-11-07 00:13:26	2023-11-07 00:13:26
661	7	196	2023-11-07 00:13:26	2023-11-07 00:13:26
662	7	197	2023-11-07 00:13:26	2023-11-07 00:13:26
663	7	198	2023-11-07 00:13:26	2023-11-07 00:13:26
664	7	199	2023-11-07 00:13:26	2023-11-07 00:13:26
665	7	200	2023-11-07 00:13:26	2023-11-07 00:13:26
666	7	201	2023-11-07 00:13:26	2023-11-07 00:13:26
667	7	202	2023-11-07 00:13:26	2023-11-07 00:13:26
668	7	203	2023-11-07 00:13:26	2023-11-07 00:13:26
669	7	204	2023-11-07 00:13:26	2023-11-07 00:13:26
670	7	205	2023-11-07 00:13:26	2023-11-07 00:13:26
671	7	206	2023-11-07 00:13:26	2023-11-07 00:13:26
672	7	207	2023-11-07 00:13:26	2023-11-07 00:13:26
673	7	208	2023-11-07 00:13:26	2023-11-07 00:13:26
674	7	209	2023-11-07 00:13:26	2023-11-07 00:13:26
675	7	210	2023-11-07 00:13:26	2023-11-07 00:13:26
676	7	211	2023-11-07 00:13:26	2023-11-07 00:13:26
677	7	212	2023-11-07 00:13:26	2023-11-07 00:13:26
678	7	213	2023-11-07 00:13:26	2023-11-07 00:13:26
679	7	215	2023-11-07 00:13:26	2023-11-07 00:13:26
680	7	335	2023-11-07 00:13:26	2023-11-07 00:13:26
681	7	336	2023-11-07 00:13:26	2023-11-07 00:13:26
682	7	337	2023-11-07 00:13:26	2023-11-07 00:13:26
683	7	338	2023-11-07 00:13:26	2023-11-07 00:13:26
684	7	381	2023-11-07 00:13:26	2023-11-07 00:13:26
685	7	382	2023-11-07 00:13:26	2023-11-07 00:13:26
686	7	383	2023-11-07 00:13:26	2023-11-07 00:13:26
687	7	175	2023-11-07 00:13:26	2023-11-07 00:13:26
688	7	214	2023-11-07 00:13:26	2023-11-07 00:13:26
689	7	216	2023-11-07 00:13:26	2023-11-07 00:13:26
690	7	217	2023-11-07 00:13:26	2023-11-07 00:13:26
691	7	218	2023-11-07 00:13:26	2023-11-07 00:13:26
692	7	219	2023-11-07 00:13:26	2023-11-07 00:13:26
693	7	220	2023-11-07 00:13:26	2023-11-07 00:13:26
694	7	221	2023-11-07 00:13:26	2023-11-07 00:13:26
695	7	222	2023-11-07 00:13:26	2023-11-07 00:13:26
696	7	223	2023-11-07 00:13:26	2023-11-07 00:13:26
697	7	533	2023-11-07 00:13:26	2023-11-07 00:13:26
698	7	534	2023-11-07 00:13:26	2023-11-07 00:13:26
699	7	539	2023-11-07 00:13:26	2023-11-07 00:13:26
700	7	535	2023-11-07 00:13:26	2023-11-07 00:13:26
701	7	558	2023-11-07 00:13:26	2023-11-07 00:13:26
702	7	559	2023-11-07 00:13:26	2023-11-07 00:13:26
703	7	193	2023-11-07 00:13:26	2023-11-07 00:13:26
704	8	78	2023-11-07 00:23:40	2023-11-07 00:23:40
705	8	79	2023-11-07 00:23:40	2023-11-07 00:23:40
706	8	80	2023-11-07 00:23:40	2023-11-07 00:23:40
707	8	81	2023-11-07 00:23:40	2023-11-07 00:23:40
708	8	82	2023-11-07 00:23:40	2023-11-07 00:23:40
709	8	83	2023-11-07 00:23:40	2023-11-07 00:23:40
710	8	84	2023-11-07 00:23:40	2023-11-07 00:23:40
711	8	85	2023-11-07 00:23:40	2023-11-07 00:23:40
712	8	86	2023-11-07 00:23:40	2023-11-07 00:23:40
713	8	87	2023-11-07 00:23:40	2023-11-07 00:23:40
714	8	88	2023-11-07 00:23:40	2023-11-07 00:23:40
715	8	89	2023-11-07 00:23:40	2023-11-07 00:23:40
716	8	90	2023-11-07 00:23:40	2023-11-07 00:23:40
717	8	91	2023-11-07 00:23:40	2023-11-07 00:23:40
718	8	92	2023-11-07 00:23:40	2023-11-07 00:23:40
719	8	93	2023-11-07 00:23:40	2023-11-07 00:23:40
720	8	94	2023-11-07 00:23:40	2023-11-07 00:23:40
721	8	374	2023-11-07 00:23:40	2023-11-07 00:23:40
722	8	375	2023-11-07 00:23:40	2023-11-07 00:23:40
723	8	393	2023-11-07 00:23:40	2023-11-07 00:23:40
724	8	394	2023-11-07 00:23:40	2023-11-07 00:23:40
725	8	397	2023-11-07 00:23:40	2023-11-07 00:23:40
726	8	398	2023-11-07 00:23:40	2023-11-07 00:23:40
727	8	541	2023-11-07 00:23:40	2023-11-07 00:23:40
728	8	543	2023-11-07 00:23:40	2023-11-07 00:23:40
729	8	545	2023-11-07 00:23:40	2023-11-07 00:23:40
730	8	571	2023-11-07 00:23:40	2023-11-07 00:23:40
731	8	95	2023-11-07 00:23:40	2023-11-07 00:23:40
732	8	96	2023-11-07 00:23:40	2023-11-07 00:23:40
733	8	97	2023-11-07 00:23:40	2023-11-07 00:23:40
734	8	98	2023-11-07 00:23:40	2023-11-07 00:23:40
735	8	99	2023-11-07 00:23:40	2023-11-07 00:23:40
736	8	100	2023-11-07 00:23:40	2023-11-07 00:23:40
737	8	101	2023-11-07 00:23:40	2023-11-07 00:23:40
738	8	102	2023-11-07 00:23:40	2023-11-07 00:23:40
739	8	103	2023-11-07 00:23:40	2023-11-07 00:23:40
740	8	104	2023-11-07 00:23:40	2023-11-07 00:23:40
741	8	361	2023-11-07 00:23:40	2023-11-07 00:23:40
742	8	362	2023-11-07 00:23:40	2023-11-07 00:23:40
743	8	363	2023-11-07 00:23:40	2023-11-07 00:23:40
744	8	364	2023-11-07 00:23:40	2023-11-07 00:23:40
745	8	366	2023-11-07 00:23:40	2023-11-07 00:23:40
746	8	376	2023-11-07 00:23:40	2023-11-07 00:23:40
747	8	377	2023-11-07 00:23:40	2023-11-07 00:23:40
748	8	105	2023-11-07 00:23:40	2023-11-07 00:23:40
749	8	106	2023-11-07 00:23:40	2023-11-07 00:23:40
750	8	107	2023-11-07 00:23:40	2023-11-07 00:23:40
751	8	108	2023-11-07 00:23:40	2023-11-07 00:23:40
752	8	109	2023-11-07 00:23:40	2023-11-07 00:23:40
753	8	110	2023-11-07 00:23:40	2023-11-07 00:23:40
754	8	111	2023-11-07 00:23:40	2023-11-07 00:23:40
755	8	112	2023-11-07 00:23:40	2023-11-07 00:23:40
756	8	113	2023-11-07 00:23:40	2023-11-07 00:23:40
757	8	114	2023-11-07 00:23:40	2023-11-07 00:23:40
758	8	115	2023-11-07 00:23:40	2023-11-07 00:23:40
759	8	116	2023-11-07 00:23:40	2023-11-07 00:23:40
760	8	117	2023-11-07 00:23:40	2023-11-07 00:23:40
761	8	428	2023-11-07 00:23:40	2023-11-07 00:23:40
762	8	429	2023-11-07 00:23:40	2023-11-07 00:23:40
763	8	430	2023-11-07 00:23:40	2023-11-07 00:23:40
764	8	431	2023-11-07 00:23:40	2023-11-07 00:23:40
765	8	444	2023-11-07 00:23:40	2023-11-07 00:23:40
766	8	445	2023-11-07 00:23:40	2023-11-07 00:23:40
767	8	446	2023-11-07 00:23:40	2023-11-07 00:23:40
768	8	447	2023-11-07 00:23:40	2023-11-07 00:23:40
769	8	507	2023-11-07 00:23:40	2023-11-07 00:23:40
770	8	508	2023-11-07 00:23:40	2023-11-07 00:23:40
771	8	532	2023-11-07 00:23:40	2023-11-07 00:23:40
772	8	540	2023-11-07 00:23:40	2023-11-07 00:23:40
773	8	542	2023-11-07 00:23:40	2023-11-07 00:23:40
774	8	544	2023-11-07 00:23:40	2023-11-07 00:23:40
775	8	564	2023-11-07 00:23:40	2023-11-07 00:23:40
776	8	565	2023-11-07 00:23:40	2023-11-07 00:23:40
777	8	566	2023-11-07 00:23:40	2023-11-07 00:23:40
778	1	14	2023-11-23 15:36:12	2023-11-23 15:36:12
779	1	15	2023-11-23 15:36:12	2023-11-23 15:36:12
780	1	16	2023-11-23 15:36:12	2023-11-23 15:36:12
781	1	17	2023-11-23 15:36:12	2023-11-23 15:36:12
782	1	18	2023-11-23 15:36:12	2023-11-23 15:36:12
783	1	19	2023-11-23 15:36:12	2023-11-23 15:36:12
784	1	20	2023-11-23 15:36:12	2023-11-23 15:36:12
785	1	21	2023-11-23 15:36:12	2023-11-23 15:36:12
786	1	22	2023-11-23 15:36:12	2023-11-23 15:36:12
787	1	23	2023-11-23 15:36:12	2023-11-23 15:36:12
788	1	24	2023-11-23 15:36:12	2023-11-23 15:36:12
789	1	448	2023-11-23 15:36:12	2023-11-23 15:36:12
790	1	441	2023-11-23 15:36:12	2023-11-23 15:36:12
791	1	442	2023-11-23 15:36:12	2023-11-23 15:36:12
792	1	546	2023-11-23 15:36:12	2023-11-23 15:36:12
793	1	584	2023-11-23 15:36:12	2023-11-23 15:36:12
794	1	614	2023-11-23 15:36:12	2023-11-23 15:36:12
795	1	615	2023-11-23 15:36:12	2023-11-23 15:36:12
796	1	617	2023-11-23 15:36:12	2023-11-23 15:36:12
797	1	618	2023-11-23 15:36:12	2023-11-23 15:36:12
798	1	224	2023-11-23 15:36:12	2023-11-23 15:36:12
799	1	261	2023-11-23 15:36:12	2023-11-23 15:36:12
800	1	225	2023-11-23 15:36:12	2023-11-23 15:36:12
801	1	226	2023-11-23 15:36:12	2023-11-23 15:36:12
802	1	227	2023-11-23 15:36:12	2023-11-23 15:36:12
803	1	228	2023-11-23 15:36:12	2023-11-23 15:36:12
804	1	229	2023-11-23 15:36:12	2023-11-23 15:36:12
805	1	230	2023-11-23 15:36:12	2023-11-23 15:36:12
806	1	231	2023-11-23 15:36:12	2023-11-23 15:36:12
807	1	232	2023-11-23 15:36:12	2023-11-23 15:36:12
808	1	233	2023-11-23 15:36:12	2023-11-23 15:36:12
809	1	359	2023-11-23 15:36:12	2023-11-23 15:36:12
810	1	360	2023-11-23 15:36:12	2023-11-23 15:36:12
811	1	234	2023-11-23 15:36:12	2023-11-23 15:36:12
812	1	235	2023-11-23 15:36:12	2023-11-23 15:36:12
813	1	236	2023-11-23 15:36:12	2023-11-23 15:36:12
814	1	237	2023-11-23 15:36:12	2023-11-23 15:36:12
815	1	238	2023-11-23 15:36:12	2023-11-23 15:36:12
816	1	239	2023-11-23 15:36:12	2023-11-23 15:36:12
817	1	240	2023-11-23 15:36:12	2023-11-23 15:36:12
818	1	241	2023-11-23 15:36:12	2023-11-23 15:36:12
819	1	242	2023-11-23 15:36:12	2023-11-23 15:36:12
820	1	243	2023-11-23 15:36:13	2023-11-23 15:36:13
821	1	244	2023-11-23 15:36:13	2023-11-23 15:36:13
822	1	245	2023-11-23 15:36:13	2023-11-23 15:36:13
823	1	246	2023-11-23 15:36:13	2023-11-23 15:36:13
824	1	247	2023-11-23 15:36:13	2023-11-23 15:36:13
825	1	248	2023-11-23 15:36:13	2023-11-23 15:36:13
826	1	249	2023-11-23 15:36:13	2023-11-23 15:36:13
827	1	250	2023-11-23 15:36:13	2023-11-23 15:36:13
828	1	251	2023-11-23 15:36:13	2023-11-23 15:36:13
829	1	252	2023-11-23 15:36:13	2023-11-23 15:36:13
830	1	253	2023-11-23 15:36:13	2023-11-23 15:36:13
831	1	254	2023-11-23 15:36:13	2023-11-23 15:36:13
832	1	255	2023-11-23 15:36:13	2023-11-23 15:36:13
833	1	256	2023-11-23 15:36:13	2023-11-23 15:36:13
834	1	257	2023-11-23 15:36:13	2023-11-23 15:36:13
835	1	258	2023-11-23 15:36:13	2023-11-23 15:36:13
836	1	259	2023-11-23 15:36:13	2023-11-23 15:36:13
837	1	260	2023-11-23 15:36:13	2023-11-23 15:36:13
838	1	262	2023-11-23 15:36:13	2023-11-23 15:36:13
839	1	263	2023-11-23 15:36:13	2023-11-23 15:36:13
840	1	264	2023-11-23 15:36:13	2023-11-23 15:36:13
841	1	509	2023-11-23 15:36:13	2023-11-23 15:36:13
842	1	265	2023-11-23 15:36:13	2023-11-23 15:36:13
843	1	266	2023-11-23 15:36:13	2023-11-23 15:36:13
844	1	267	2023-11-23 15:36:13	2023-11-23 15:36:13
845	1	268	2023-11-23 15:36:13	2023-11-23 15:36:13
846	1	269	2023-11-23 15:36:13	2023-11-23 15:36:13
847	1	270	2023-11-23 15:36:13	2023-11-23 15:36:13
848	1	271	2023-11-23 15:36:13	2023-11-23 15:36:13
849	1	272	2023-11-23 15:36:13	2023-11-23 15:36:13
850	1	273	2023-11-23 15:36:13	2023-11-23 15:36:13
851	1	274	2023-11-23 15:36:13	2023-11-23 15:36:13
852	1	275	2023-11-23 15:36:13	2023-11-23 15:36:13
853	1	276	2023-11-23 15:36:13	2023-11-23 15:36:13
854	1	277	2023-11-23 15:36:13	2023-11-23 15:36:13
855	1	278	2023-11-23 15:36:13	2023-11-23 15:36:13
856	1	279	2023-11-23 15:36:13	2023-11-23 15:36:13
857	1	280	2023-11-23 15:36:13	2023-11-23 15:36:13
858	1	281	2023-11-23 15:36:13	2023-11-23 15:36:13
859	1	282	2023-11-23 15:36:13	2023-11-23 15:36:13
860	1	283	2023-11-23 15:36:13	2023-11-23 15:36:13
861	1	284	2023-11-23 15:36:13	2023-11-23 15:36:13
862	1	285	2023-11-23 15:36:13	2023-11-23 15:36:13
863	1	286	2023-11-23 15:36:13	2023-11-23 15:36:13
864	1	287	2023-11-23 15:36:13	2023-11-23 15:36:13
865	1	288	2023-11-23 15:36:13	2023-11-23 15:36:13
866	1	289	2023-11-23 15:36:13	2023-11-23 15:36:13
867	1	294	2023-11-23 15:36:13	2023-11-23 15:36:13
868	1	295	2023-11-23 15:36:13	2023-11-23 15:36:13
869	1	296	2023-11-23 15:36:13	2023-11-23 15:36:13
870	1	297	2023-11-23 15:36:13	2023-11-23 15:36:13
871	1	500	2023-11-23 15:36:13	2023-11-23 15:36:13
872	1	501	2023-11-23 15:36:13	2023-11-23 15:36:13
873	1	502	2023-11-23 15:36:13	2023-11-23 15:36:13
874	1	510	2023-11-23 15:36:13	2023-11-23 15:36:13
875	1	511	2023-11-23 15:36:13	2023-11-23 15:36:13
876	1	512	2023-11-23 15:36:13	2023-11-23 15:36:13
877	1	567	2023-11-23 15:36:13	2023-11-23 15:36:13
878	1	594	2023-11-23 15:36:13	2023-11-23 15:36:13
879	1	298	2023-11-23 15:36:13	2023-11-23 15:36:13
880	1	299	2023-11-23 15:36:13	2023-11-23 15:36:13
881	1	300	2023-11-23 15:36:13	2023-11-23 15:36:13
882	1	310	2023-11-23 15:36:13	2023-11-23 15:36:13
883	1	311	2023-11-23 15:36:13	2023-11-23 15:36:13
884	1	312	2023-11-23 15:36:13	2023-11-23 15:36:13
885	1	313	2023-11-23 15:36:13	2023-11-23 15:36:13
886	1	314	2023-11-23 15:36:13	2023-11-23 15:36:13
887	1	315	2023-11-23 15:36:13	2023-11-23 15:36:13
888	1	316	2023-11-23 15:36:13	2023-11-23 15:36:13
889	1	317	2023-11-23 15:36:13	2023-11-23 15:36:13
890	1	318	2023-11-23 15:36:13	2023-11-23 15:36:13
891	1	358	2023-11-23 15:36:14	2023-11-23 15:36:14
892	1	365	2023-11-23 15:36:14	2023-11-23 15:36:14
893	1	350	2023-11-23 15:36:14	2023-11-23 15:36:14
894	1	351	2023-11-23 15:36:14	2023-11-23 15:36:14
895	1	352	2023-11-23 15:36:14	2023-11-23 15:36:14
896	1	353	2023-11-23 15:36:14	2023-11-23 15:36:14
897	1	354	2023-11-23 15:36:14	2023-11-23 15:36:14
898	1	355	2023-11-23 15:36:14	2023-11-23 15:36:14
899	1	356	2023-11-23 15:36:14	2023-11-23 15:36:14
900	1	357	2023-11-23 15:36:14	2023-11-23 15:36:14
901	1	392	2023-11-23 15:36:14	2023-11-23 15:36:14
902	1	396	2023-11-23 15:36:14	2023-11-23 15:36:14
903	1	301	2023-11-23 15:36:14	2023-11-23 15:36:14
904	1	302	2023-11-23 15:36:14	2023-11-23 15:36:14
905	1	303	2023-11-23 15:36:14	2023-11-23 15:36:14
906	1	304	2023-11-23 15:36:14	2023-11-23 15:36:14
907	1	305	2023-11-23 15:36:14	2023-11-23 15:36:14
908	1	306	2023-11-23 15:36:14	2023-11-23 15:36:14
909	1	307	2023-11-23 15:36:14	2023-11-23 15:36:14
910	1	308	2023-11-23 15:36:14	2023-11-23 15:36:14
911	1	309	2023-11-23 15:36:14	2023-11-23 15:36:14
912	1	319	2023-11-23 15:36:14	2023-11-23 15:36:14
913	1	320	2023-11-23 15:36:14	2023-11-23 15:36:14
914	1	321	2023-11-23 15:36:14	2023-11-23 15:36:14
915	1	322	2023-11-23 15:36:14	2023-11-23 15:36:14
916	1	323	2023-11-23 15:36:14	2023-11-23 15:36:14
917	1	324	2023-11-23 15:36:14	2023-11-23 15:36:14
918	1	325	2023-11-23 15:36:14	2023-11-23 15:36:14
919	1	326	2023-11-23 15:36:14	2023-11-23 15:36:14
920	1	327	2023-11-23 15:36:14	2023-11-23 15:36:14
921	1	328	2023-11-23 15:36:14	2023-11-23 15:36:14
922	1	399	2023-11-23 15:36:14	2023-11-23 15:36:14
923	1	400	2023-11-23 15:36:14	2023-11-23 15:36:14
924	1	401	2023-11-23 15:36:14	2023-11-23 15:36:14
925	1	402	2023-11-23 15:36:14	2023-11-23 15:36:14
926	1	403	2023-11-23 15:36:14	2023-11-23 15:36:14
927	1	404	2023-11-23 15:36:14	2023-11-23 15:36:14
928	1	405	2023-11-23 15:36:14	2023-11-23 15:36:14
929	1	406	2023-11-23 15:36:14	2023-11-23 15:36:14
930	1	407	2023-11-23 15:36:14	2023-11-23 15:36:14
931	1	408	2023-11-23 15:36:14	2023-11-23 15:36:14
932	1	409	2023-11-23 15:36:14	2023-11-23 15:36:14
933	1	410	2023-11-23 15:36:14	2023-11-23 15:36:14
934	1	411	2023-11-23 15:36:14	2023-11-23 15:36:14
935	1	412	2023-11-23 15:36:14	2023-11-23 15:36:14
936	1	413	2023-11-23 15:36:14	2023-11-23 15:36:14
937	1	414	2023-11-23 15:36:14	2023-11-23 15:36:14
938	1	415	2023-11-23 15:36:14	2023-11-23 15:36:14
939	1	416	2023-11-23 15:36:14	2023-11-23 15:36:14
940	1	417	2023-11-23 15:36:14	2023-11-23 15:36:14
941	1	418	2023-11-23 15:36:14	2023-11-23 15:36:14
942	1	419	2023-11-23 15:36:14	2023-11-23 15:36:14
943	1	420	2023-11-23 15:36:14	2023-11-23 15:36:14
944	1	421	2023-11-23 15:36:14	2023-11-23 15:36:14
945	1	422	2023-11-23 15:36:14	2023-11-23 15:36:14
946	1	423	2023-11-23 15:36:14	2023-11-23 15:36:14
947	1	339	2023-11-23 15:36:14	2023-11-23 15:36:14
948	1	340	2023-11-23 15:36:14	2023-11-23 15:36:14
949	1	344	2023-11-23 15:36:14	2023-11-23 15:36:14
950	1	345	2023-11-23 15:36:14	2023-11-23 15:36:14
951	1	385	2023-11-23 15:36:14	2023-11-23 15:36:14
952	1	386	2023-11-23 15:36:14	2023-11-23 15:36:14
953	1	387	2023-11-23 15:36:14	2023-11-23 15:36:14
954	1	388	2023-11-23 15:36:14	2023-11-23 15:36:14
955	1	389	2023-11-23 15:36:14	2023-11-23 15:36:14
956	1	390	2023-11-23 15:36:14	2023-11-23 15:36:14
957	1	391	2023-11-23 15:36:14	2023-11-23 15:36:14
958	1	555	2023-11-23 15:36:14	2023-11-23 15:36:14
959	1	556	2023-11-23 15:36:14	2023-11-23 15:36:14
960	1	557	2023-11-23 15:36:14	2023-11-23 15:36:14
961	1	455	2023-11-23 15:36:14	2023-11-23 15:36:14
962	1	456	2023-11-23 15:36:14	2023-11-23 15:36:14
963	1	457	2023-11-23 15:36:14	2023-11-23 15:36:14
964	1	458	2023-11-23 15:36:14	2023-11-23 15:36:14
965	1	459	2023-11-23 15:36:15	2023-11-23 15:36:15
966	1	460	2023-11-23 15:36:15	2023-11-23 15:36:15
967	1	461	2023-11-23 15:36:15	2023-11-23 15:36:15
968	1	462	2023-11-23 15:36:15	2023-11-23 15:36:15
969	1	463	2023-11-23 15:36:15	2023-11-23 15:36:15
970	1	465	2023-11-23 15:36:15	2023-11-23 15:36:15
971	1	466	2023-11-23 15:36:15	2023-11-23 15:36:15
972	1	467	2023-11-23 15:36:15	2023-11-23 15:36:15
973	1	468	2023-11-23 15:36:15	2023-11-23 15:36:15
974	1	469	2023-11-23 15:36:15	2023-11-23 15:36:15
975	1	470	2023-11-23 15:36:15	2023-11-23 15:36:15
976	1	471	2023-11-23 15:36:15	2023-11-23 15:36:15
977	1	472	2023-11-23 15:36:15	2023-11-23 15:36:15
978	1	473	2023-11-23 15:36:15	2023-11-23 15:36:15
979	1	474	2023-11-23 15:36:15	2023-11-23 15:36:15
980	1	476	2023-11-23 15:36:15	2023-11-23 15:36:15
981	1	478	2023-11-23 15:36:15	2023-11-23 15:36:15
982	1	479	2023-11-23 15:36:15	2023-11-23 15:36:15
983	1	475	2023-11-23 15:36:15	2023-11-23 15:36:15
984	1	480	2023-11-23 15:36:15	2023-11-23 15:36:15
985	1	481	2023-11-23 15:36:15	2023-11-23 15:36:15
986	1	482	2023-11-23 15:36:15	2023-11-23 15:36:15
987	1	483	2023-11-23 15:36:15	2023-11-23 15:36:15
988	1	484	2023-11-23 15:36:15	2023-11-23 15:36:15
989	1	485	2023-11-23 15:36:15	2023-11-23 15:36:15
990	1	486	2023-11-23 15:36:15	2023-11-23 15:36:15
991	1	576	2023-11-23 15:36:15	2023-11-23 15:36:15
992	1	577	2023-11-23 15:36:15	2023-11-23 15:36:15
993	1	578	2023-11-23 15:36:15	2023-11-23 15:36:15
994	1	579	2023-11-23 15:36:15	2023-11-23 15:36:15
995	1	580	2023-11-23 15:36:15	2023-11-23 15:36:15
996	1	581	2023-11-23 15:36:15	2023-11-23 15:36:15
997	1	582	2023-11-23 15:36:15	2023-11-23 15:36:15
998	1	583	2023-11-23 15:36:15	2023-11-23 15:36:15
999	1	25	2023-11-23 15:36:15	2023-11-23 15:36:15
1000	1	487	2023-11-23 15:36:15	2023-11-23 15:36:15
1001	1	488	2023-11-23 15:36:15	2023-11-23 15:36:15
1002	1	489	2023-11-23 15:36:15	2023-11-23 15:36:15
1003	1	490	2023-11-23 15:36:15	2023-11-23 15:36:15
1004	1	491	2023-11-23 15:36:15	2023-11-23 15:36:15
1005	1	551	2023-11-23 15:36:15	2023-11-23 15:36:15
1006	1	552	2023-11-23 15:36:15	2023-11-23 15:36:15
1007	1	568	2023-11-23 15:36:15	2023-11-23 15:36:15
1008	1	569	2023-11-23 15:36:15	2023-11-23 15:36:15
1009	1	570	2023-11-23 15:36:15	2023-11-23 15:36:15
1010	1	492	2023-11-23 15:36:15	2023-11-23 15:36:15
1011	1	493	2023-11-23 15:36:15	2023-11-23 15:36:15
1012	1	494	2023-11-23 15:36:15	2023-11-23 15:36:15
1013	1	495	2023-11-23 15:36:15	2023-11-23 15:36:15
1014	1	497	2023-11-23 15:36:15	2023-11-23 15:36:15
1015	1	496	2023-11-23 15:36:15	2023-11-23 15:36:15
1016	1	572	2023-11-23 15:36:15	2023-11-23 15:36:15
1017	1	573	2023-11-23 15:36:15	2023-11-23 15:36:15
1018	1	574	2023-11-23 15:36:15	2023-11-23 15:36:15
1019	1	575	2023-11-23 15:36:15	2023-11-23 15:36:15
1020	1	596	2023-11-23 15:36:15	2023-11-23 15:36:15
1021	1	597	2023-11-23 15:36:15	2023-11-23 15:36:15
1022	1	598	2023-11-23 15:36:15	2023-11-23 15:36:15
1023	1	599	2023-11-23 15:36:15	2023-11-23 15:36:15
1024	1	600	2023-11-23 15:36:15	2023-11-23 15:36:15
1025	1	601	2023-11-23 15:36:15	2023-11-23 15:36:15
1026	1	602	2023-11-23 15:36:15	2023-11-23 15:36:15
1027	1	603	2023-11-23 15:36:15	2023-11-23 15:36:15
1028	1	604	2023-11-23 15:36:15	2023-11-23 15:36:15
1029	1	605	2023-11-23 15:36:15	2023-11-23 15:36:15
1030	1	606	2023-11-23 15:36:15	2023-11-23 15:36:15
1031	1	607	2023-11-23 15:36:15	2023-11-23 15:36:15
1032	1	608	2023-11-23 15:36:15	2023-11-23 15:36:15
1033	1	609	2023-11-23 15:36:15	2023-11-23 15:36:15
1034	1	610	2023-11-23 15:36:15	2023-11-23 15:36:15
1035	1	611	2023-11-23 15:36:15	2023-11-23 15:36:15
1036	1	612	2023-11-23 15:36:15	2023-11-23 15:36:15
1037	1	613	2023-11-23 15:36:15	2023-11-23 15:36:15
1038	1	26	2023-11-23 15:36:15	2023-11-23 15:36:15
1039	1	27	2023-11-23 15:36:15	2023-11-23 15:36:15
1040	1	28	2023-11-23 15:36:15	2023-11-23 15:36:15
1041	1	29	2023-11-23 15:36:15	2023-11-23 15:36:15
1042	1	30	2023-11-23 15:36:15	2023-11-23 15:36:15
1043	1	31	2023-11-23 15:36:15	2023-11-23 15:36:15
1044	1	32	2023-11-23 15:36:15	2023-11-23 15:36:15
1045	1	33	2023-11-23 15:36:15	2023-11-23 15:36:15
1046	1	367	2023-11-23 15:36:15	2023-11-23 15:36:15
1047	1	368	2023-11-23 15:36:15	2023-11-23 15:36:15
1048	1	369	2023-11-23 15:36:15	2023-11-23 15:36:15
1049	1	370	2023-11-23 15:36:15	2023-11-23 15:36:15
1050	1	371	2023-11-23 15:36:15	2023-11-23 15:36:15
1051	1	372	2023-11-23 15:36:15	2023-11-23 15:36:15
1052	1	373	2023-11-23 15:36:15	2023-11-23 15:36:15
1053	1	378	2023-11-23 15:36:15	2023-11-23 15:36:15
1054	1	395	2023-11-23 15:36:15	2023-11-23 15:36:15
1055	1	39	2023-11-23 15:36:15	2023-11-23 15:36:15
1056	1	379	2023-11-23 15:36:15	2023-11-23 15:36:15
1057	1	380	2023-11-23 15:36:15	2023-11-23 15:36:15
1058	1	34	2023-11-23 15:36:15	2023-11-23 15:36:15
1059	1	35	2023-11-23 15:36:15	2023-11-23 15:36:15
1060	1	36	2023-11-23 15:36:15	2023-11-23 15:36:15
1061	1	37	2023-11-23 15:36:15	2023-11-23 15:36:15
1062	1	38	2023-11-23 15:36:15	2023-11-23 15:36:15
1063	1	424	2023-11-23 15:36:15	2023-11-23 15:36:15
1064	1	425	2023-11-23 15:36:15	2023-11-23 15:36:15
1065	1	427	2023-11-23 15:36:15	2023-11-23 15:36:15
1066	1	443	2023-11-23 15:36:16	2023-11-23 15:36:16
1067	1	449	2023-11-23 15:36:16	2023-11-23 15:36:16
1068	1	452	2023-11-23 15:36:16	2023-11-23 15:36:16
1069	1	453	2023-11-23 15:36:16	2023-11-23 15:36:16
1070	1	454	2023-11-23 15:36:16	2023-11-23 15:36:16
1071	1	464	2023-11-23 15:36:16	2023-11-23 15:36:16
1072	1	450	2023-11-23 15:36:16	2023-11-23 15:36:16
1073	1	498	2023-11-23 15:36:16	2023-11-23 15:36:16
1074	1	499	2023-11-23 15:36:16	2023-11-23 15:36:16
1075	1	513	2023-11-23 15:36:16	2023-11-23 15:36:16
1076	1	514	2023-11-23 15:36:16	2023-11-23 15:36:16
1077	1	515	2023-11-23 15:36:16	2023-11-23 15:36:16
1078	1	516	2023-11-23 15:36:16	2023-11-23 15:36:16
1079	1	517	2023-11-23 15:36:16	2023-11-23 15:36:16
1080	1	518	2023-11-23 15:36:16	2023-11-23 15:36:16
1081	1	519	2023-11-23 15:36:16	2023-11-23 15:36:16
1082	1	520	2023-11-23 15:36:16	2023-11-23 15:36:16
1083	1	521	2023-11-23 15:36:16	2023-11-23 15:36:16
1084	1	522	2023-11-23 15:36:16	2023-11-23 15:36:16
1085	1	523	2023-11-23 15:36:16	2023-11-23 15:36:16
1086	1	524	2023-11-23 15:36:16	2023-11-23 15:36:16
1087	1	525	2023-11-23 15:36:16	2023-11-23 15:36:16
1088	1	526	2023-11-23 15:36:16	2023-11-23 15:36:16
1089	1	527	2023-11-23 15:36:16	2023-11-23 15:36:16
1090	1	528	2023-11-23 15:36:16	2023-11-23 15:36:16
1091	1	529	2023-11-23 15:36:16	2023-11-23 15:36:16
1092	1	530	2023-11-23 15:36:16	2023-11-23 15:36:16
1093	1	531	2023-11-23 15:36:16	2023-11-23 15:36:16
1094	1	547	2023-11-23 15:36:16	2023-11-23 15:36:16
1095	1	548	2023-11-23 15:36:16	2023-11-23 15:36:16
1096	1	549	2023-11-23 15:36:16	2023-11-23 15:36:16
1097	1	550	2023-11-23 15:36:16	2023-11-23 15:36:16
1098	1	553	2023-11-23 15:36:16	2023-11-23 15:36:16
1099	1	554	2023-11-23 15:36:16	2023-11-23 15:36:16
1100	1	586	2023-11-23 15:36:16	2023-11-23 15:36:16
1101	1	588	2023-11-23 15:36:16	2023-11-23 15:36:16
1102	1	589	2023-11-23 15:36:16	2023-11-23 15:36:16
1103	1	590	2023-11-23 15:36:16	2023-11-23 15:36:16
1104	1	591	2023-11-23 15:36:16	2023-11-23 15:36:16
1105	1	593	2023-11-23 15:36:16	2023-11-23 15:36:16
1106	1	616	2023-11-23 15:36:16	2023-11-23 15:36:16
1107	1	40	2023-11-23 15:36:16	2023-11-23 15:36:16
1108	1	44	2023-11-23 15:36:16	2023-11-23 15:36:16
1109	1	45	2023-11-23 15:36:16	2023-11-23 15:36:16
1110	1	46	2023-11-23 15:36:16	2023-11-23 15:36:16
1111	1	47	2023-11-23 15:36:16	2023-11-23 15:36:16
1112	1	48	2023-11-23 15:36:16	2023-11-23 15:36:16
1113	1	49	2023-11-23 15:36:16	2023-11-23 15:36:16
1114	1	50	2023-11-23 15:36:16	2023-11-23 15:36:16
1115	1	51	2023-11-23 15:36:16	2023-11-23 15:36:16
1116	1	52	2023-11-23 15:36:16	2023-11-23 15:36:16
1117	1	384	2023-11-23 15:36:16	2023-11-23 15:36:16
1118	1	41	2023-11-23 15:36:16	2023-11-23 15:36:16
1119	1	42	2023-11-23 15:36:16	2023-11-23 15:36:16
1120	1	43	2023-11-23 15:36:16	2023-11-23 15:36:16
1121	1	587	2023-11-23 15:36:16	2023-11-23 15:36:16
1122	1	592	2023-11-23 15:36:16	2023-11-23 15:36:16
1123	1	53	2023-11-23 15:36:16	2023-11-23 15:36:16
1124	1	54	2023-11-23 15:36:16	2023-11-23 15:36:16
1125	1	55	2023-11-23 15:36:16	2023-11-23 15:36:16
1126	1	56	2023-11-23 15:36:16	2023-11-23 15:36:16
1127	1	57	2023-11-23 15:36:16	2023-11-23 15:36:16
1128	1	58	2023-11-23 15:36:16	2023-11-23 15:36:16
1129	1	59	2023-11-23 15:36:16	2023-11-23 15:36:16
1130	1	60	2023-11-23 15:36:16	2023-11-23 15:36:16
1131	1	61	2023-11-23 15:36:16	2023-11-23 15:36:16
1132	1	62	2023-11-23 15:36:16	2023-11-23 15:36:16
1133	1	63	2023-11-23 15:36:16	2023-11-23 15:36:16
1134	1	64	2023-11-23 15:36:16	2023-11-23 15:36:16
1135	1	65	2023-11-23 15:36:16	2023-11-23 15:36:16
1136	1	66	2023-11-23 15:36:16	2023-11-23 15:36:16
1137	1	67	2023-11-23 15:36:16	2023-11-23 15:36:16
1138	1	68	2023-11-23 15:36:16	2023-11-23 15:36:16
1139	1	69	2023-11-23 15:36:16	2023-11-23 15:36:16
1140	1	70	2023-11-23 15:36:16	2023-11-23 15:36:16
1141	1	71	2023-11-23 15:36:16	2023-11-23 15:36:16
1142	1	72	2023-11-23 15:36:16	2023-11-23 15:36:16
1143	1	73	2023-11-23 15:36:16	2023-11-23 15:36:16
1144	1	74	2023-11-23 15:36:16	2023-11-23 15:36:16
1145	1	75	2023-11-23 15:36:16	2023-11-23 15:36:16
1146	1	76	2023-11-23 15:36:16	2023-11-23 15:36:16
1147	1	77	2023-11-23 15:36:17	2023-11-23 15:36:17
1148	1	432	2023-11-23 15:36:17	2023-11-23 15:36:17
1149	1	433	2023-11-23 15:36:17	2023-11-23 15:36:17
1150	1	434	2023-11-23 15:36:17	2023-11-23 15:36:17
1151	1	435	2023-11-23 15:36:17	2023-11-23 15:36:17
1152	1	436	2023-11-23 15:36:17	2023-11-23 15:36:17
1153	1	437	2023-11-23 15:36:17	2023-11-23 15:36:17
1154	1	438	2023-11-23 15:36:17	2023-11-23 15:36:17
1155	1	439	2023-11-23 15:36:17	2023-11-23 15:36:17
1156	1	440	2023-11-23 15:36:17	2023-11-23 15:36:17
1157	1	451	2023-11-23 15:36:17	2023-11-23 15:36:17
1158	1	477	2023-11-23 15:36:17	2023-11-23 15:36:17
1159	1	585	2023-11-23 15:36:17	2023-11-23 15:36:17
1160	1	78	2023-11-23 15:36:17	2023-11-23 15:36:17
1161	1	79	2023-11-23 15:36:17	2023-11-23 15:36:17
1162	1	80	2023-11-23 15:36:17	2023-11-23 15:36:17
1163	1	81	2023-11-23 15:36:17	2023-11-23 15:36:17
1164	1	82	2023-11-23 15:36:17	2023-11-23 15:36:17
1165	1	83	2023-11-23 15:36:17	2023-11-23 15:36:17
1166	1	84	2023-11-23 15:36:17	2023-11-23 15:36:17
1167	1	85	2023-11-23 15:36:17	2023-11-23 15:36:17
1168	1	86	2023-11-23 15:36:17	2023-11-23 15:36:17
1169	1	87	2023-11-23 15:36:17	2023-11-23 15:36:17
1170	1	88	2023-11-23 15:36:17	2023-11-23 15:36:17
1171	1	89	2023-11-23 15:36:17	2023-11-23 15:36:17
1172	1	90	2023-11-23 15:36:17	2023-11-23 15:36:17
1173	1	91	2023-11-23 15:36:17	2023-11-23 15:36:17
1174	1	92	2023-11-23 15:36:17	2023-11-23 15:36:17
1175	1	93	2023-11-23 15:36:17	2023-11-23 15:36:17
1176	1	94	2023-11-23 15:36:17	2023-11-23 15:36:17
1177	1	374	2023-11-23 15:36:17	2023-11-23 15:36:17
1178	1	375	2023-11-23 15:36:17	2023-11-23 15:36:17
1179	1	393	2023-11-23 15:36:17	2023-11-23 15:36:17
1180	1	394	2023-11-23 15:36:17	2023-11-23 15:36:17
1181	1	397	2023-11-23 15:36:17	2023-11-23 15:36:17
1182	1	398	2023-11-23 15:36:17	2023-11-23 15:36:17
1183	1	541	2023-11-23 15:36:17	2023-11-23 15:36:17
1184	1	543	2023-11-23 15:36:17	2023-11-23 15:36:17
1185	1	545	2023-11-23 15:36:17	2023-11-23 15:36:17
1186	1	571	2023-11-23 15:36:17	2023-11-23 15:36:17
1187	1	95	2023-11-23 15:36:17	2023-11-23 15:36:17
1188	1	96	2023-11-23 15:36:17	2023-11-23 15:36:17
1189	1	97	2023-11-23 15:36:17	2023-11-23 15:36:17
1190	1	98	2023-11-23 15:36:17	2023-11-23 15:36:17
1191	1	99	2023-11-23 15:36:17	2023-11-23 15:36:17
1192	1	100	2023-11-23 15:36:17	2023-11-23 15:36:17
1193	1	101	2023-11-23 15:36:17	2023-11-23 15:36:17
1194	1	102	2023-11-23 15:36:17	2023-11-23 15:36:17
1195	1	103	2023-11-23 15:36:17	2023-11-23 15:36:17
1196	1	104	2023-11-23 15:36:17	2023-11-23 15:36:17
1197	1	361	2023-11-23 15:36:17	2023-11-23 15:36:17
1198	1	362	2023-11-23 15:36:17	2023-11-23 15:36:17
1199	1	363	2023-11-23 15:36:18	2023-11-23 15:36:18
1200	1	364	2023-11-23 15:36:18	2023-11-23 15:36:18
1201	1	366	2023-11-23 15:36:18	2023-11-23 15:36:18
1202	1	376	2023-11-23 15:36:18	2023-11-23 15:36:18
1203	1	377	2023-11-23 15:36:18	2023-11-23 15:36:18
1204	1	105	2023-11-23 15:36:18	2023-11-23 15:36:18
1205	1	106	2023-11-23 15:36:18	2023-11-23 15:36:18
1206	1	107	2023-11-23 15:36:18	2023-11-23 15:36:18
1207	1	108	2023-11-23 15:36:18	2023-11-23 15:36:18
1208	1	109	2023-11-23 15:36:18	2023-11-23 15:36:18
1209	1	110	2023-11-23 15:36:18	2023-11-23 15:36:18
1210	1	111	2023-11-23 15:36:18	2023-11-23 15:36:18
1211	1	112	2023-11-23 15:36:18	2023-11-23 15:36:18
1212	1	113	2023-11-23 15:36:18	2023-11-23 15:36:18
1213	1	114	2023-11-23 15:36:18	2023-11-23 15:36:18
1214	1	115	2023-11-23 15:36:18	2023-11-23 15:36:18
1215	1	116	2023-11-23 15:36:18	2023-11-23 15:36:18
1216	1	117	2023-11-23 15:36:18	2023-11-23 15:36:18
1217	1	428	2023-11-23 15:36:18	2023-11-23 15:36:18
1218	1	429	2023-11-23 15:36:18	2023-11-23 15:36:18
1219	1	430	2023-11-23 15:36:18	2023-11-23 15:36:18
1220	1	431	2023-11-23 15:36:18	2023-11-23 15:36:18
1221	1	444	2023-11-23 15:36:18	2023-11-23 15:36:18
1222	1	445	2023-11-23 15:36:18	2023-11-23 15:36:18
1223	1	446	2023-11-23 15:36:18	2023-11-23 15:36:18
1224	1	447	2023-11-23 15:36:18	2023-11-23 15:36:18
1225	1	507	2023-11-23 15:36:18	2023-11-23 15:36:18
1226	1	508	2023-11-23 15:36:18	2023-11-23 15:36:18
1227	1	532	2023-11-23 15:36:18	2023-11-23 15:36:18
1228	1	540	2023-11-23 15:36:18	2023-11-23 15:36:18
1229	1	542	2023-11-23 15:36:18	2023-11-23 15:36:18
1230	1	544	2023-11-23 15:36:18	2023-11-23 15:36:18
1231	1	564	2023-11-23 15:36:18	2023-11-23 15:36:18
1232	1	565	2023-11-23 15:36:18	2023-11-23 15:36:18
1233	1	566	2023-11-23 15:36:18	2023-11-23 15:36:18
1234	1	118	2023-11-23 15:36:18	2023-11-23 15:36:18
1235	1	119	2023-11-23 15:36:18	2023-11-23 15:36:18
1236	1	120	2023-11-23 15:36:18	2023-11-23 15:36:18
1237	1	121	2023-11-23 15:36:18	2023-11-23 15:36:18
1238	1	122	2023-11-23 15:36:18	2023-11-23 15:36:18
1239	1	123	2023-11-23 15:36:18	2023-11-23 15:36:18
1240	1	124	2023-11-23 15:36:18	2023-11-23 15:36:18
1241	1	125	2023-11-23 15:36:18	2023-11-23 15:36:18
1242	1	126	2023-11-23 15:36:18	2023-11-23 15:36:18
1243	1	127	2023-11-23 15:36:18	2023-11-23 15:36:18
1244	1	128	2023-11-23 15:36:18	2023-11-23 15:36:18
1245	1	129	2023-11-23 15:36:18	2023-11-23 15:36:18
1246	1	130	2023-11-23 15:36:18	2023-11-23 15:36:18
1247	1	329	2023-11-23 15:36:18	2023-11-23 15:36:18
1248	1	330	2023-11-23 15:36:18	2023-11-23 15:36:18
1249	1	331	2023-11-23 15:36:18	2023-11-23 15:36:18
1250	1	332	2023-11-23 15:36:18	2023-11-23 15:36:18
1251	1	333	2023-11-23 15:36:18	2023-11-23 15:36:18
1252	1	334	2023-11-23 15:36:18	2023-11-23 15:36:18
1253	1	131	2023-11-23 15:36:18	2023-11-23 15:36:18
1254	1	132	2023-11-23 15:36:19	2023-11-23 15:36:19
1255	1	133	2023-11-23 15:36:19	2023-11-23 15:36:19
1256	1	134	2023-11-23 15:36:19	2023-11-23 15:36:19
1257	1	135	2023-11-23 15:36:19	2023-11-23 15:36:19
1258	1	136	2023-11-23 15:36:19	2023-11-23 15:36:19
1259	1	137	2023-11-23 15:36:19	2023-11-23 15:36:19
1260	1	138	2023-11-23 15:36:19	2023-11-23 15:36:19
1261	1	139	2023-11-23 15:36:19	2023-11-23 15:36:19
1262	1	140	2023-11-23 15:36:19	2023-11-23 15:36:19
1263	1	141	2023-11-23 15:36:19	2023-11-23 15:36:19
1264	1	142	2023-11-23 15:36:19	2023-11-23 15:36:19
1265	1	143	2023-11-23 15:36:19	2023-11-23 15:36:19
1266	1	144	2023-11-23 15:36:19	2023-11-23 15:36:19
1267	1	145	2023-11-23 15:36:19	2023-11-23 15:36:19
1268	1	146	2023-11-23 15:36:19	2023-11-23 15:36:19
1269	1	147	2023-11-23 15:36:19	2023-11-23 15:36:19
1270	1	148	2023-11-23 15:36:19	2023-11-23 15:36:19
1271	1	149	2023-11-23 15:36:19	2023-11-23 15:36:19
1272	1	150	2023-11-23 15:36:19	2023-11-23 15:36:19
1273	1	151	2023-11-23 15:36:19	2023-11-23 15:36:19
1274	1	152	2023-11-23 15:36:19	2023-11-23 15:36:19
1275	1	153	2023-11-23 15:36:19	2023-11-23 15:36:19
1276	1	154	2023-11-23 15:36:19	2023-11-23 15:36:19
1277	1	155	2023-11-23 15:36:19	2023-11-23 15:36:19
1278	1	156	2023-11-23 15:36:19	2023-11-23 15:36:19
1279	1	157	2023-11-23 15:36:19	2023-11-23 15:36:19
1280	1	158	2023-11-23 15:36:19	2023-11-23 15:36:19
1281	1	159	2023-11-23 15:36:19	2023-11-23 15:36:19
1282	1	160	2023-11-23 15:36:19	2023-11-23 15:36:19
1283	1	161	2023-11-23 15:36:19	2023-11-23 15:36:19
1284	1	162	2023-11-23 15:36:19	2023-11-23 15:36:19
1285	1	163	2023-11-23 15:36:19	2023-11-23 15:36:19
1286	1	164	2023-11-23 15:36:19	2023-11-23 15:36:19
1287	1	165	2023-11-23 15:36:19	2023-11-23 15:36:19
1288	1	166	2023-11-23 15:36:19	2023-11-23 15:36:19
1289	1	167	2023-11-23 15:36:19	2023-11-23 15:36:19
1290	1	168	2023-11-23 15:36:19	2023-11-23 15:36:19
1291	1	169	2023-11-23 15:36:19	2023-11-23 15:36:19
1292	1	170	2023-11-23 15:36:19	2023-11-23 15:36:19
1293	1	171	2023-11-23 15:36:19	2023-11-23 15:36:19
1294	1	172	2023-11-23 15:36:19	2023-11-23 15:36:19
1295	1	173	2023-11-23 15:36:19	2023-11-23 15:36:19
1296	1	426	2023-11-23 15:36:19	2023-11-23 15:36:19
1297	1	341	2023-11-23 15:36:19	2023-11-23 15:36:19
1298	1	342	2023-11-23 15:36:19	2023-11-23 15:36:19
1299	1	343	2023-11-23 15:36:19	2023-11-23 15:36:19
1300	1	346	2023-11-23 15:36:19	2023-11-23 15:36:19
1301	1	347	2023-11-23 15:36:19	2023-11-23 15:36:19
1302	1	348	2023-11-23 15:36:19	2023-11-23 15:36:19
1303	1	349	2023-11-23 15:36:19	2023-11-23 15:36:19
1304	1	536	2023-11-23 15:36:19	2023-11-23 15:36:19
1305	1	537	2023-11-23 15:36:19	2023-11-23 15:36:19
1306	1	538	2023-11-23 15:36:19	2023-11-23 15:36:19
1307	1	560	2023-11-23 15:36:19	2023-11-23 15:36:19
1308	1	561	2023-11-23 15:36:20	2023-11-23 15:36:20
1309	1	562	2023-11-23 15:36:20	2023-11-23 15:36:20
1310	1	563	2023-11-23 15:36:20	2023-11-23 15:36:20
1311	1	174	2023-11-23 15:36:20	2023-11-23 15:36:20
1312	1	176	2023-11-23 15:36:20	2023-11-23 15:36:20
1313	1	177	2023-11-23 15:36:20	2023-11-23 15:36:20
1314	1	178	2023-11-23 15:36:20	2023-11-23 15:36:20
1315	1	179	2023-11-23 15:36:20	2023-11-23 15:36:20
1316	1	180	2023-11-23 15:36:20	2023-11-23 15:36:20
1317	1	181	2023-11-23 15:36:20	2023-11-23 15:36:20
1318	1	182	2023-11-23 15:36:20	2023-11-23 15:36:20
1319	1	183	2023-11-23 15:36:20	2023-11-23 15:36:20
1320	1	184	2023-11-23 15:36:20	2023-11-23 15:36:20
1321	1	185	2023-11-23 15:36:20	2023-11-23 15:36:20
1322	1	186	2023-11-23 15:36:20	2023-11-23 15:36:20
1323	1	187	2023-11-23 15:36:20	2023-11-23 15:36:20
1324	1	188	2023-11-23 15:36:20	2023-11-23 15:36:20
1325	1	189	2023-11-23 15:36:20	2023-11-23 15:36:20
1326	1	190	2023-11-23 15:36:20	2023-11-23 15:36:20
1327	1	191	2023-11-23 15:36:20	2023-11-23 15:36:20
1328	1	192	2023-11-23 15:36:20	2023-11-23 15:36:20
1329	1	193	2023-11-23 15:36:20	2023-11-23 15:36:20
1330	1	194	2023-11-23 15:36:20	2023-11-23 15:36:20
1331	1	195	2023-11-23 15:36:20	2023-11-23 15:36:20
1332	1	196	2023-11-23 15:36:20	2023-11-23 15:36:20
1333	1	197	2023-11-23 15:36:20	2023-11-23 15:36:20
1334	1	198	2023-11-23 15:36:20	2023-11-23 15:36:20
1335	1	199	2023-11-23 15:36:20	2023-11-23 15:36:20
1336	1	200	2023-11-23 15:36:20	2023-11-23 15:36:20
1337	1	201	2023-11-23 15:36:20	2023-11-23 15:36:20
1338	1	202	2023-11-23 15:36:20	2023-11-23 15:36:20
1339	1	203	2023-11-23 15:36:20	2023-11-23 15:36:20
1340	1	204	2023-11-23 15:36:20	2023-11-23 15:36:20
1341	1	205	2023-11-23 15:36:20	2023-11-23 15:36:20
1342	1	206	2023-11-23 15:36:20	2023-11-23 15:36:20
1343	1	207	2023-11-23 15:36:20	2023-11-23 15:36:20
1344	1	208	2023-11-23 15:36:20	2023-11-23 15:36:20
1345	1	209	2023-11-23 15:36:20	2023-11-23 15:36:20
1346	1	210	2023-11-23 15:36:20	2023-11-23 15:36:20
1347	1	211	2023-11-23 15:36:20	2023-11-23 15:36:20
1348	1	212	2023-11-23 15:36:20	2023-11-23 15:36:20
1349	1	213	2023-11-23 15:36:20	2023-11-23 15:36:20
1350	1	215	2023-11-23 15:36:20	2023-11-23 15:36:20
1351	1	335	2023-11-23 15:36:20	2023-11-23 15:36:20
1352	1	336	2023-11-23 15:36:20	2023-11-23 15:36:20
1353	1	337	2023-11-23 15:36:20	2023-11-23 15:36:20
1354	1	338	2023-11-23 15:36:20	2023-11-23 15:36:20
1355	1	381	2023-11-23 15:36:20	2023-11-23 15:36:20
1356	1	382	2023-11-23 15:36:20	2023-11-23 15:36:20
1357	1	383	2023-11-23 15:36:20	2023-11-23 15:36:20
1358	1	175	2023-11-23 15:36:20	2023-11-23 15:36:20
1359	1	214	2023-11-23 15:36:20	2023-11-23 15:36:20
1360	1	216	2023-11-23 15:36:20	2023-11-23 15:36:20
1361	1	217	2023-11-23 15:36:20	2023-11-23 15:36:20
1362	1	218	2023-11-23 15:36:20	2023-11-23 15:36:20
1363	1	219	2023-11-23 15:36:20	2023-11-23 15:36:20
1364	1	220	2023-11-23 15:36:20	2023-11-23 15:36:20
1365	1	221	2023-11-23 15:36:20	2023-11-23 15:36:20
1366	1	222	2023-11-23 15:36:20	2023-11-23 15:36:20
1367	1	223	2023-11-23 15:36:20	2023-11-23 15:36:20
1368	1	533	2023-11-23 15:36:20	2023-11-23 15:36:20
1369	1	534	2023-11-23 15:36:20	2023-11-23 15:36:20
1370	1	539	2023-11-23 15:36:20	2023-11-23 15:36:20
1371	1	535	2023-11-23 15:36:20	2023-11-23 15:36:20
1372	1	558	2023-11-23 15:36:20	2023-11-23 15:36:20
1373	1	559	2023-11-23 15:36:20	2023-11-23 15:36:20
1374	2	14	2023-11-23 21:38:32	2023-11-23 21:38:32
1375	2	15	2023-11-23 21:38:32	2023-11-23 21:38:32
1376	2	16	2023-11-23 21:38:32	2023-11-23 21:38:32
1377	2	17	2023-11-23 21:38:33	2023-11-23 21:38:33
1378	2	18	2023-11-23 21:38:33	2023-11-23 21:38:33
1379	2	19	2023-11-23 21:38:33	2023-11-23 21:38:33
1380	2	20	2023-11-23 21:38:33	2023-11-23 21:38:33
1381	2	21	2023-11-23 21:38:33	2023-11-23 21:38:33
1382	2	22	2023-11-23 21:38:33	2023-11-23 21:38:33
1383	2	23	2023-11-23 21:38:33	2023-11-23 21:38:33
1384	2	584	2023-11-23 21:38:33	2023-11-23 21:38:33
1385	2	614	2023-11-23 21:38:33	2023-11-23 21:38:33
1386	2	615	2023-11-23 21:38:33	2023-11-23 21:38:33
1387	2	224	2023-11-23 21:38:33	2023-11-23 21:38:33
1388	2	225	2023-11-23 21:38:33	2023-11-23 21:38:33
1389	2	226	2023-11-23 21:38:33	2023-11-23 21:38:33
1390	2	227	2023-11-23 21:38:33	2023-11-23 21:38:33
1391	2	228	2023-11-23 21:38:33	2023-11-23 21:38:33
1392	2	229	2023-11-23 21:38:33	2023-11-23 21:38:33
1393	2	230	2023-11-23 21:38:33	2023-11-23 21:38:33
1394	2	231	2023-11-23 21:38:33	2023-11-23 21:38:33
1395	2	232	2023-11-23 21:38:33	2023-11-23 21:38:33
1396	2	359	2023-11-23 21:38:33	2023-11-23 21:38:33
1397	2	360	2023-11-23 21:38:33	2023-11-23 21:38:33
1398	2	253	2023-11-23 21:38:33	2023-11-23 21:38:33
1399	2	254	2023-11-23 21:38:33	2023-11-23 21:38:33
1400	2	255	2023-11-23 21:38:33	2023-11-23 21:38:33
1401	2	509	2023-11-23 21:38:33	2023-11-23 21:38:33
1402	2	273	2023-11-23 21:38:33	2023-11-23 21:38:33
1403	2	274	2023-11-23 21:38:33	2023-11-23 21:38:33
1404	2	275	2023-11-23 21:38:33	2023-11-23 21:38:33
1405	2	276	2023-11-23 21:38:33	2023-11-23 21:38:33
1406	2	277	2023-11-23 21:38:33	2023-11-23 21:38:33
1407	2	278	2023-11-23 21:38:33	2023-11-23 21:38:33
1408	2	279	2023-11-23 21:38:34	2023-11-23 21:38:34
1409	2	288	2023-11-23 21:38:34	2023-11-23 21:38:34
1410	2	289	2023-11-23 21:38:34	2023-11-23 21:38:34
1411	2	294	2023-11-23 21:38:34	2023-11-23 21:38:34
1412	2	295	2023-11-23 21:38:34	2023-11-23 21:38:34
1413	2	296	2023-11-23 21:38:34	2023-11-23 21:38:34
1414	2	297	2023-11-23 21:38:34	2023-11-23 21:38:34
1415	2	502	2023-11-23 21:38:34	2023-11-23 21:38:34
1416	2	594	2023-11-23 21:38:34	2023-11-23 21:38:34
1417	2	298	2023-11-23 21:38:34	2023-11-23 21:38:34
1418	2	299	2023-11-23 21:38:34	2023-11-23 21:38:34
1419	2	25	2023-11-23 21:38:34	2023-11-23 21:38:34
1420	2	572	2023-11-23 21:38:34	2023-11-23 21:38:34
1421	2	573	2023-11-23 21:38:34	2023-11-23 21:38:34
1422	2	574	2023-11-23 21:38:34	2023-11-23 21:38:34
1423	2	575	2023-11-23 21:38:34	2023-11-23 21:38:34
1424	2	26	2023-11-23 21:38:34	2023-11-23 21:38:34
1425	2	27	2023-11-23 21:38:34	2023-11-23 21:38:34
1426	2	28	2023-11-23 21:38:34	2023-11-23 21:38:34
1427	2	29	2023-11-23 21:38:34	2023-11-23 21:38:34
1428	2	31	2023-11-23 21:38:34	2023-11-23 21:38:34
1429	2	33	2023-11-23 21:38:34	2023-11-23 21:38:34
1430	2	369	2023-11-23 21:38:34	2023-11-23 21:38:34
1431	2	372	2023-11-23 21:38:34	2023-11-23 21:38:34
1432	2	373	2023-11-23 21:38:34	2023-11-23 21:38:34
1433	2	378	2023-11-23 21:38:34	2023-11-23 21:38:34
1434	2	395	2023-11-23 21:38:34	2023-11-23 21:38:34
1435	2	39	2023-11-23 21:38:34	2023-11-23 21:38:34
1436	2	380	2023-11-23 21:38:34	2023-11-23 21:38:34
1437	2	34	2023-11-23 21:38:34	2023-11-23 21:38:34
1438	2	35	2023-11-23 21:38:34	2023-11-23 21:38:34
1439	2	36	2023-11-23 21:38:34	2023-11-23 21:38:34
1440	2	427	2023-11-23 21:38:34	2023-11-23 21:38:34
1441	2	443	2023-11-23 21:38:34	2023-11-23 21:38:34
1442	2	449	2023-11-23 21:38:34	2023-11-23 21:38:34
1443	2	453	2023-11-23 21:38:35	2023-11-23 21:38:35
1444	2	454	2023-11-23 21:38:35	2023-11-23 21:38:35
1445	2	464	2023-11-23 21:38:35	2023-11-23 21:38:35
1446	2	499	2023-11-23 21:38:35	2023-11-23 21:38:35
1447	2	513	2023-11-23 21:38:35	2023-11-23 21:38:35
1448	2	514	2023-11-23 21:38:35	2023-11-23 21:38:35
1449	2	515	2023-11-23 21:38:35	2023-11-23 21:38:35
1450	2	516	2023-11-23 21:38:35	2023-11-23 21:38:35
1451	2	517	2023-11-23 21:38:35	2023-11-23 21:38:35
1452	2	518	2023-11-23 21:38:35	2023-11-23 21:38:35
1453	2	519	2023-11-23 21:38:35	2023-11-23 21:38:35
1454	2	521	2023-11-23 21:38:35	2023-11-23 21:38:35
1455	2	522	2023-11-23 21:38:35	2023-11-23 21:38:35
1456	2	523	2023-11-23 21:38:35	2023-11-23 21:38:35
1457	2	524	2023-11-23 21:38:35	2023-11-23 21:38:35
1458	2	525	2023-11-23 21:38:35	2023-11-23 21:38:35
1459	2	526	2023-11-23 21:38:35	2023-11-23 21:38:35
1460	2	527	2023-11-23 21:38:35	2023-11-23 21:38:35
1461	2	528	2023-11-23 21:38:35	2023-11-23 21:38:35
1462	2	550	2023-11-23 21:38:35	2023-11-23 21:38:35
1463	2	553	2023-11-23 21:38:35	2023-11-23 21:38:35
1464	2	554	2023-11-23 21:38:35	2023-11-23 21:38:35
1465	2	586	2023-11-23 21:38:35	2023-11-23 21:38:35
1466	2	593	2023-11-23 21:38:35	2023-11-23 21:38:35
1467	2	616	2023-11-23 21:38:35	2023-11-23 21:38:35
1468	2	40	2023-11-23 21:38:35	2023-11-23 21:38:35
1469	2	44	2023-11-23 21:38:35	2023-11-23 21:38:35
1470	2	45	2023-11-23 21:38:35	2023-11-23 21:38:35
1471	2	47	2023-11-23 21:38:35	2023-11-23 21:38:35
1472	2	48	2023-11-23 21:38:35	2023-11-23 21:38:35
1473	2	49	2023-11-23 21:38:35	2023-11-23 21:38:35
1474	2	51	2023-11-23 21:38:35	2023-11-23 21:38:35
1475	2	52	2023-11-23 21:38:35	2023-11-23 21:38:35
1476	2	384	2023-11-23 21:38:35	2023-11-23 21:38:35
1477	2	41	2023-11-23 21:38:35	2023-11-23 21:38:35
1478	2	42	2023-11-23 21:38:35	2023-11-23 21:38:35
1479	2	43	2023-11-23 21:38:36	2023-11-23 21:38:36
1480	2	53	2023-11-23 21:38:36	2023-11-23 21:38:36
1481	2	54	2023-11-23 21:38:36	2023-11-23 21:38:36
1482	2	55	2023-11-23 21:38:36	2023-11-23 21:38:36
1483	2	56	2023-11-23 21:38:36	2023-11-23 21:38:36
1484	2	57	2023-11-23 21:38:36	2023-11-23 21:38:36
1485	2	477	2023-11-23 21:38:36	2023-11-23 21:38:36
1486	2	78	2023-11-23 21:38:36	2023-11-23 21:38:36
1487	2	79	2023-11-23 21:38:36	2023-11-23 21:38:36
1488	2	80	2023-11-23 21:38:36	2023-11-23 21:38:36
1489	2	81	2023-11-23 21:38:36	2023-11-23 21:38:36
1490	2	82	2023-11-23 21:38:36	2023-11-23 21:38:36
1491	2	90	2023-11-23 21:38:36	2023-11-23 21:38:36
1492	2	91	2023-11-23 21:38:36	2023-11-23 21:38:36
1493	2	374	2023-11-23 21:38:36	2023-11-23 21:38:36
1494	2	375	2023-11-23 21:38:36	2023-11-23 21:38:36
1495	2	541	2023-11-23 21:38:36	2023-11-23 21:38:36
1496	2	543	2023-11-23 21:38:36	2023-11-23 21:38:36
1497	2	545	2023-11-23 21:38:36	2023-11-23 21:38:36
1498	2	95	2023-11-23 21:38:36	2023-11-23 21:38:36
1499	2	96	2023-11-23 21:38:36	2023-11-23 21:38:36
1500	2	97	2023-11-23 21:38:36	2023-11-23 21:38:36
1501	2	98	2023-11-23 21:38:36	2023-11-23 21:38:36
1502	2	99	2023-11-23 21:38:36	2023-11-23 21:38:36
1503	2	102	2023-11-23 21:38:36	2023-11-23 21:38:36
1504	2	361	2023-11-23 21:38:36	2023-11-23 21:38:36
1505	2	362	2023-11-23 21:38:36	2023-11-23 21:38:36
1506	2	363	2023-11-23 21:38:36	2023-11-23 21:38:36
1507	2	364	2023-11-23 21:38:36	2023-11-23 21:38:36
1508	2	366	2023-11-23 21:38:36	2023-11-23 21:38:36
1509	2	376	2023-11-23 21:38:36	2023-11-23 21:38:36
1510	2	377	2023-11-23 21:38:36	2023-11-23 21:38:36
1511	2	111	2023-11-23 21:38:37	2023-11-23 21:38:37
1512	2	112	2023-11-23 21:38:37	2023-11-23 21:38:37
1513	2	113	2023-11-23 21:38:37	2023-11-23 21:38:37
1514	2	117	2023-11-23 21:38:37	2023-11-23 21:38:37
1515	2	507	2023-11-23 21:38:37	2023-11-23 21:38:37
1516	2	532	2023-11-23 21:38:37	2023-11-23 21:38:37
1517	2	542	2023-11-23 21:38:37	2023-11-23 21:38:37
1518	2	544	2023-11-23 21:38:37	2023-11-23 21:38:37
1519	2	564	2023-11-23 21:38:37	2023-11-23 21:38:37
1520	2	565	2023-11-23 21:38:37	2023-11-23 21:38:37
1521	2	566	2023-11-23 21:38:37	2023-11-23 21:38:37
1522	2	118	2023-11-23 21:38:37	2023-11-23 21:38:37
1523	2	119	2023-11-23 21:38:37	2023-11-23 21:38:37
1524	2	120	2023-11-23 21:38:37	2023-11-23 21:38:37
1525	2	121	2023-11-23 21:38:37	2023-11-23 21:38:37
1526	2	122	2023-11-23 21:38:37	2023-11-23 21:38:37
1527	2	126	2023-11-23 21:38:37	2023-11-23 21:38:37
1528	2	127	2023-11-23 21:38:37	2023-11-23 21:38:37
1529	2	128	2023-11-23 21:38:37	2023-11-23 21:38:37
1530	2	129	2023-11-23 21:38:37	2023-11-23 21:38:37
1531	2	134	2023-11-23 21:38:37	2023-11-23 21:38:37
1532	2	135	2023-11-23 21:38:37	2023-11-23 21:38:37
1533	2	136	2023-11-23 21:38:37	2023-11-23 21:38:37
1534	2	137	2023-11-23 21:38:37	2023-11-23 21:38:37
1535	2	143	2023-11-23 21:38:37	2023-11-23 21:38:37
1536	2	144	2023-11-23 21:38:37	2023-11-23 21:38:37
1537	2	145	2023-11-23 21:38:37	2023-11-23 21:38:37
1538	2	146	2023-11-23 21:38:37	2023-11-23 21:38:37
1539	2	147	2023-11-23 21:38:37	2023-11-23 21:38:37
1540	2	148	2023-11-23 21:38:37	2023-11-23 21:38:37
1541	2	152	2023-11-23 21:38:37	2023-11-23 21:38:37
1542	2	153	2023-11-23 21:38:37	2023-11-23 21:38:37
1543	2	154	2023-11-23 21:38:37	2023-11-23 21:38:37
1544	2	155	2023-11-23 21:38:37	2023-11-23 21:38:37
1545	2	156	2023-11-23 21:38:37	2023-11-23 21:38:37
1546	2	157	2023-11-23 21:38:37	2023-11-23 21:38:37
1547	2	158	2023-11-23 21:38:37	2023-11-23 21:38:37
1548	2	159	2023-11-23 21:38:37	2023-11-23 21:38:37
1549	2	426	2023-11-23 21:38:37	2023-11-23 21:38:37
1550	2	536	2023-11-23 21:38:37	2023-11-23 21:38:37
1551	2	537	2023-11-23 21:38:38	2023-11-23 21:38:38
1552	2	538	2023-11-23 21:38:38	2023-11-23 21:38:38
1553	2	560	2023-11-23 21:38:38	2023-11-23 21:38:38
1554	2	561	2023-11-23 21:38:38	2023-11-23 21:38:38
1555	2	562	2023-11-23 21:38:38	2023-11-23 21:38:38
1556	2	563	2023-11-23 21:38:38	2023-11-23 21:38:38
1557	2	174	2023-11-23 21:38:38	2023-11-23 21:38:38
1558	2	176	2023-11-23 21:38:38	2023-11-23 21:38:38
1559	2	177	2023-11-23 21:38:38	2023-11-23 21:38:38
1560	2	178	2023-11-23 21:38:38	2023-11-23 21:38:38
1561	2	183	2023-11-23 21:38:38	2023-11-23 21:38:38
1562	2	184	2023-11-23 21:38:38	2023-11-23 21:38:38
1563	2	185	2023-11-23 21:38:38	2023-11-23 21:38:38
1564	2	186	2023-11-23 21:38:38	2023-11-23 21:38:38
1565	2	187	2023-11-23 21:38:38	2023-11-23 21:38:38
1566	2	188	2023-11-23 21:38:38	2023-11-23 21:38:38
1567	2	189	2023-11-23 21:38:38	2023-11-23 21:38:38
1568	2	190	2023-11-23 21:38:38	2023-11-23 21:38:38
1569	2	191	2023-11-23 21:38:38	2023-11-23 21:38:38
1570	2	192	2023-11-23 21:38:38	2023-11-23 21:38:38
1571	2	193	2023-11-23 21:38:38	2023-11-23 21:38:38
1572	2	194	2023-11-23 21:38:38	2023-11-23 21:38:38
1573	2	199	2023-11-23 21:38:38	2023-11-23 21:38:38
1574	2	200	2023-11-23 21:38:38	2023-11-23 21:38:38
1575	2	201	2023-11-23 21:38:38	2023-11-23 21:38:38
1576	2	202	2023-11-23 21:38:38	2023-11-23 21:38:38
1577	2	207	2023-11-23 21:38:38	2023-11-23 21:38:38
1578	2	208	2023-11-23 21:38:38	2023-11-23 21:38:38
1579	2	209	2023-11-23 21:38:38	2023-11-23 21:38:38
1580	2	210	2023-11-23 21:38:39	2023-11-23 21:38:39
1581	2	211	2023-11-23 21:38:39	2023-11-23 21:38:39
1582	2	381	2023-11-23 21:38:39	2023-11-23 21:38:39
1583	2	382	2023-11-23 21:38:39	2023-11-23 21:38:39
1584	2	383	2023-11-23 21:38:39	2023-11-23 21:38:39
1585	2	175	2023-11-23 21:38:39	2023-11-23 21:38:39
1586	2	218	2023-11-23 21:38:39	2023-11-23 21:38:39
1587	2	219	2023-11-23 21:38:39	2023-11-23 21:38:39
1588	2	220	2023-11-23 21:38:39	2023-11-23 21:38:39
1589	2	221	2023-11-23 21:38:39	2023-11-23 21:38:39
1590	2	222	2023-11-23 21:38:39	2023-11-23 21:38:39
1591	2	223	2023-11-23 21:38:39	2023-11-23 21:38:39
1592	2	533	2023-11-23 21:38:39	2023-11-23 21:38:39
1593	2	534	2023-11-23 21:38:39	2023-11-23 21:38:39
1594	2	539	2023-11-23 21:38:39	2023-11-23 21:38:39
1595	2	535	2023-11-23 21:38:39	2023-11-23 21:38:39
1596	3	14	2023-11-23 22:27:14	2023-11-23 22:27:14
1597	3	15	2023-11-23 22:27:14	2023-11-23 22:27:14
1598	3	16	2023-11-23 22:27:14	2023-11-23 22:27:14
1599	3	17	2023-11-23 22:27:14	2023-11-23 22:27:14
1600	3	18	2023-11-23 22:27:14	2023-11-23 22:27:14
1601	3	19	2023-11-23 22:27:14	2023-11-23 22:27:14
1602	3	20	2023-11-23 22:27:14	2023-11-23 22:27:14
1603	3	21	2023-11-23 22:27:14	2023-11-23 22:27:14
1604	3	22	2023-11-23 22:27:14	2023-11-23 22:27:14
1605	3	23	2023-11-23 22:27:14	2023-11-23 22:27:14
1606	3	584	2023-11-23 22:27:14	2023-11-23 22:27:14
1607	3	614	2023-11-23 22:27:14	2023-11-23 22:27:14
1608	3	615	2023-11-23 22:27:14	2023-11-23 22:27:14
1609	3	617	2023-11-23 22:27:14	2023-11-23 22:27:14
1610	3	224	2023-11-23 22:27:14	2023-11-23 22:27:14
1611	3	261	2023-11-23 22:27:14	2023-11-23 22:27:14
1612	3	225	2023-11-23 22:27:14	2023-11-23 22:27:14
1613	3	226	2023-11-23 22:27:14	2023-11-23 22:27:14
1614	3	227	2023-11-23 22:27:14	2023-11-23 22:27:14
1615	3	228	2023-11-23 22:27:14	2023-11-23 22:27:14
1616	3	229	2023-11-23 22:27:14	2023-11-23 22:27:14
1617	3	230	2023-11-23 22:27:14	2023-11-23 22:27:14
1618	3	231	2023-11-23 22:27:14	2023-11-23 22:27:14
1619	3	232	2023-11-23 22:27:14	2023-11-23 22:27:14
1620	3	233	2023-11-23 22:27:14	2023-11-23 22:27:14
1621	3	359	2023-11-23 22:27:14	2023-11-23 22:27:14
1622	3	360	2023-11-23 22:27:14	2023-11-23 22:27:14
1623	3	234	2023-11-23 22:27:14	2023-11-23 22:27:14
1624	3	235	2023-11-23 22:27:14	2023-11-23 22:27:14
1625	3	236	2023-11-23 22:27:14	2023-11-23 22:27:14
1626	3	237	2023-11-23 22:27:14	2023-11-23 22:27:14
1627	3	238	2023-11-23 22:27:14	2023-11-23 22:27:14
1628	3	239	2023-11-23 22:27:14	2023-11-23 22:27:14
1629	3	240	2023-11-23 22:27:14	2023-11-23 22:27:14
1630	3	241	2023-11-23 22:27:14	2023-11-23 22:27:14
1631	3	242	2023-11-23 22:27:14	2023-11-23 22:27:14
1632	3	243	2023-11-23 22:27:14	2023-11-23 22:27:14
1633	3	244	2023-11-23 22:27:14	2023-11-23 22:27:14
1634	3	245	2023-11-23 22:27:14	2023-11-23 22:27:14
1635	3	246	2023-11-23 22:27:14	2023-11-23 22:27:14
1636	3	247	2023-11-23 22:27:14	2023-11-23 22:27:14
1637	3	248	2023-11-23 22:27:14	2023-11-23 22:27:14
1638	3	253	2023-11-23 22:27:14	2023-11-23 22:27:14
1639	3	254	2023-11-23 22:27:14	2023-11-23 22:27:14
1640	3	255	2023-11-23 22:27:14	2023-11-23 22:27:14
1641	3	256	2023-11-23 22:27:14	2023-11-23 22:27:14
1642	3	257	2023-11-23 22:27:14	2023-11-23 22:27:14
1643	3	258	2023-11-23 22:27:14	2023-11-23 22:27:14
1644	3	259	2023-11-23 22:27:14	2023-11-23 22:27:14
1645	3	260	2023-11-23 22:27:14	2023-11-23 22:27:14
1646	3	262	2023-11-23 22:27:14	2023-11-23 22:27:14
1647	3	263	2023-11-23 22:27:14	2023-11-23 22:27:14
1648	3	264	2023-11-23 22:27:14	2023-11-23 22:27:14
1649	3	509	2023-11-23 22:27:14	2023-11-23 22:27:14
1650	3	265	2023-11-23 22:27:14	2023-11-23 22:27:14
1651	3	266	2023-11-23 22:27:14	2023-11-23 22:27:14
1652	3	267	2023-11-23 22:27:14	2023-11-23 22:27:14
1653	3	268	2023-11-23 22:27:14	2023-11-23 22:27:14
1654	3	269	2023-11-23 22:27:14	2023-11-23 22:27:14
1655	3	270	2023-11-23 22:27:14	2023-11-23 22:27:14
1656	3	271	2023-11-23 22:27:14	2023-11-23 22:27:14
1657	3	272	2023-11-23 22:27:14	2023-11-23 22:27:14
1658	3	273	2023-11-23 22:27:14	2023-11-23 22:27:14
1659	3	274	2023-11-23 22:27:14	2023-11-23 22:27:14
1660	3	275	2023-11-23 22:27:14	2023-11-23 22:27:14
1661	3	276	2023-11-23 22:27:14	2023-11-23 22:27:14
1662	3	277	2023-11-23 22:27:14	2023-11-23 22:27:14
1663	3	278	2023-11-23 22:27:14	2023-11-23 22:27:14
1664	3	279	2023-11-23 22:27:14	2023-11-23 22:27:14
1665	3	280	2023-11-23 22:27:14	2023-11-23 22:27:14
1666	3	281	2023-11-23 22:27:14	2023-11-23 22:27:14
1667	3	282	2023-11-23 22:27:14	2023-11-23 22:27:14
1668	3	283	2023-11-23 22:27:14	2023-11-23 22:27:14
1669	3	288	2023-11-23 22:27:14	2023-11-23 22:27:14
1670	3	289	2023-11-23 22:27:14	2023-11-23 22:27:14
1671	3	294	2023-11-23 22:27:14	2023-11-23 22:27:14
1672	3	295	2023-11-23 22:27:14	2023-11-23 22:27:14
1673	3	296	2023-11-23 22:27:14	2023-11-23 22:27:14
1674	3	297	2023-11-23 22:27:14	2023-11-23 22:27:14
1675	3	500	2023-11-23 22:27:14	2023-11-23 22:27:14
1676	3	501	2023-11-23 22:27:14	2023-11-23 22:27:14
1677	3	502	2023-11-23 22:27:14	2023-11-23 22:27:14
1678	3	510	2023-11-23 22:27:14	2023-11-23 22:27:14
1679	3	511	2023-11-23 22:27:14	2023-11-23 22:27:14
1680	3	512	2023-11-23 22:27:14	2023-11-23 22:27:14
1681	3	594	2023-11-23 22:27:14	2023-11-23 22:27:14
1682	3	298	2023-11-23 22:27:14	2023-11-23 22:27:14
1683	3	299	2023-11-23 22:27:14	2023-11-23 22:27:14
1684	3	25	2023-11-23 22:27:14	2023-11-23 22:27:14
1685	3	572	2023-11-23 22:27:14	2023-11-23 22:27:14
1686	3	573	2023-11-23 22:27:14	2023-11-23 22:27:14
1687	3	574	2023-11-23 22:27:14	2023-11-23 22:27:14
1688	3	575	2023-11-23 22:27:14	2023-11-23 22:27:14
1689	3	26	2023-11-23 22:27:14	2023-11-23 22:27:14
1690	3	27	2023-11-23 22:27:14	2023-11-23 22:27:14
1691	3	28	2023-11-23 22:27:14	2023-11-23 22:27:14
1692	3	29	2023-11-23 22:27:14	2023-11-23 22:27:14
1693	3	30	2023-11-23 22:27:14	2023-11-23 22:27:14
1694	3	31	2023-11-23 22:27:14	2023-11-23 22:27:14
1695	3	32	2023-11-23 22:27:14	2023-11-23 22:27:14
1696	3	33	2023-11-23 22:27:14	2023-11-23 22:27:14
1697	3	369	2023-11-23 22:27:14	2023-11-23 22:27:14
1698	3	370	2023-11-23 22:27:14	2023-11-23 22:27:14
1699	3	372	2023-11-23 22:27:14	2023-11-23 22:27:14
1700	3	373	2023-11-23 22:27:14	2023-11-23 22:27:14
1701	3	378	2023-11-23 22:27:14	2023-11-23 22:27:14
1702	3	395	2023-11-23 22:27:14	2023-11-23 22:27:14
1703	3	39	2023-11-23 22:27:14	2023-11-23 22:27:14
1704	3	379	2023-11-23 22:27:14	2023-11-23 22:27:14
1705	3	380	2023-11-23 22:27:14	2023-11-23 22:27:14
1706	3	34	2023-11-23 22:27:14	2023-11-23 22:27:14
1707	3	35	2023-11-23 22:27:15	2023-11-23 22:27:15
1708	3	36	2023-11-23 22:27:15	2023-11-23 22:27:15
1709	3	37	2023-11-23 22:27:15	2023-11-23 22:27:15
1710	3	38	2023-11-23 22:27:15	2023-11-23 22:27:15
1711	3	424	2023-11-23 22:27:15	2023-11-23 22:27:15
1712	3	425	2023-11-23 22:27:15	2023-11-23 22:27:15
1713	3	427	2023-11-23 22:27:15	2023-11-23 22:27:15
1714	3	443	2023-11-23 22:27:15	2023-11-23 22:27:15
1715	3	449	2023-11-23 22:27:15	2023-11-23 22:27:15
1716	3	452	2023-11-23 22:27:15	2023-11-23 22:27:15
1717	3	453	2023-11-23 22:27:15	2023-11-23 22:27:15
1718	3	454	2023-11-23 22:27:15	2023-11-23 22:27:15
1719	3	464	2023-11-23 22:27:15	2023-11-23 22:27:15
1720	3	450	2023-11-23 22:27:15	2023-11-23 22:27:15
1721	3	498	2023-11-23 22:27:15	2023-11-23 22:27:15
1722	3	499	2023-11-23 22:27:15	2023-11-23 22:27:15
1723	3	513	2023-11-23 22:27:15	2023-11-23 22:27:15
1724	3	514	2023-11-23 22:27:15	2023-11-23 22:27:15
1725	3	515	2023-11-23 22:27:15	2023-11-23 22:27:15
1726	3	516	2023-11-23 22:27:15	2023-11-23 22:27:15
1727	3	517	2023-11-23 22:27:15	2023-11-23 22:27:15
1728	3	518	2023-11-23 22:27:15	2023-11-23 22:27:15
1729	3	519	2023-11-23 22:27:15	2023-11-23 22:27:15
1730	3	520	2023-11-23 22:27:15	2023-11-23 22:27:15
1731	3	521	2023-11-23 22:27:15	2023-11-23 22:27:15
1732	3	522	2023-11-23 22:27:15	2023-11-23 22:27:15
1733	3	523	2023-11-23 22:27:15	2023-11-23 22:27:15
1734	3	524	2023-11-23 22:27:15	2023-11-23 22:27:15
1735	3	525	2023-11-23 22:27:15	2023-11-23 22:27:15
1736	3	526	2023-11-23 22:27:15	2023-11-23 22:27:15
1737	3	527	2023-11-23 22:27:15	2023-11-23 22:27:15
1738	3	528	2023-11-23 22:27:15	2023-11-23 22:27:15
1739	3	530	2023-11-23 22:27:15	2023-11-23 22:27:15
1740	3	531	2023-11-23 22:27:15	2023-11-23 22:27:15
1741	3	547	2023-11-23 22:27:15	2023-11-23 22:27:15
1742	3	548	2023-11-23 22:27:15	2023-11-23 22:27:15
1743	3	549	2023-11-23 22:27:15	2023-11-23 22:27:15
1744	3	550	2023-11-23 22:27:15	2023-11-23 22:27:15
1745	3	553	2023-11-23 22:27:15	2023-11-23 22:27:15
1746	3	554	2023-11-23 22:27:15	2023-11-23 22:27:15
1747	3	586	2023-11-23 22:27:15	2023-11-23 22:27:15
1748	3	588	2023-11-23 22:27:15	2023-11-23 22:27:15
1749	3	589	2023-11-23 22:27:15	2023-11-23 22:27:15
1750	3	593	2023-11-23 22:27:15	2023-11-23 22:27:15
1751	3	616	2023-11-23 22:27:15	2023-11-23 22:27:15
1752	3	40	2023-11-23 22:27:15	2023-11-23 22:27:15
1753	3	44	2023-11-23 22:27:15	2023-11-23 22:27:15
1754	3	45	2023-11-23 22:27:15	2023-11-23 22:27:15
1755	3	46	2023-11-23 22:27:15	2023-11-23 22:27:15
1756	3	47	2023-11-23 22:27:15	2023-11-23 22:27:15
1757	3	48	2023-11-23 22:27:15	2023-11-23 22:27:15
1758	3	49	2023-11-23 22:27:15	2023-11-23 22:27:15
1759	3	51	2023-11-23 22:27:15	2023-11-23 22:27:15
1760	3	52	2023-11-23 22:27:15	2023-11-23 22:27:15
1761	3	384	2023-11-23 22:27:15	2023-11-23 22:27:15
1762	3	41	2023-11-23 22:27:15	2023-11-23 22:27:15
1763	3	42	2023-11-23 22:27:15	2023-11-23 22:27:15
1764	3	43	2023-11-23 22:27:15	2023-11-23 22:27:15
1765	3	587	2023-11-23 22:27:15	2023-11-23 22:27:15
1766	3	592	2023-11-23 22:27:15	2023-11-23 22:27:15
1767	3	53	2023-11-23 22:27:15	2023-11-23 22:27:15
1768	3	54	2023-11-23 22:27:15	2023-11-23 22:27:15
1769	3	55	2023-11-23 22:27:15	2023-11-23 22:27:15
1770	3	56	2023-11-23 22:27:15	2023-11-23 22:27:15
1771	3	57	2023-11-23 22:27:15	2023-11-23 22:27:15
1772	3	58	2023-11-23 22:27:15	2023-11-23 22:27:15
1773	3	59	2023-11-23 22:27:15	2023-11-23 22:27:15
1774	3	60	2023-11-23 22:27:15	2023-11-23 22:27:15
1775	3	61	2023-11-23 22:27:15	2023-11-23 22:27:15
1776	3	62	2023-11-23 22:27:15	2023-11-23 22:27:15
1777	3	63	2023-11-23 22:27:15	2023-11-23 22:27:15
1778	3	64	2023-11-23 22:27:15	2023-11-23 22:27:15
1779	3	65	2023-11-23 22:27:15	2023-11-23 22:27:15
1780	3	66	2023-11-23 22:27:15	2023-11-23 22:27:15
1781	3	67	2023-11-23 22:27:15	2023-11-23 22:27:15
1782	3	68	2023-11-23 22:27:15	2023-11-23 22:27:15
1783	3	69	2023-11-23 22:27:15	2023-11-23 22:27:15
1784	3	70	2023-11-23 22:27:15	2023-11-23 22:27:15
1785	3	71	2023-11-23 22:27:15	2023-11-23 22:27:15
1786	3	72	2023-11-23 22:27:15	2023-11-23 22:27:15
1787	3	73	2023-11-23 22:27:15	2023-11-23 22:27:15
1788	3	74	2023-11-23 22:27:15	2023-11-23 22:27:15
1789	3	75	2023-11-23 22:27:15	2023-11-23 22:27:15
1790	3	76	2023-11-23 22:27:15	2023-11-23 22:27:15
1791	3	77	2023-11-23 22:27:15	2023-11-23 22:27:15
1792	3	451	2023-11-23 22:27:15	2023-11-23 22:27:15
1793	3	477	2023-11-23 22:27:15	2023-11-23 22:27:15
1794	3	585	2023-11-23 22:27:15	2023-11-23 22:27:15
1795	3	78	2023-11-23 22:27:15	2023-11-23 22:27:15
1796	3	79	2023-11-23 22:27:15	2023-11-23 22:27:15
1797	3	80	2023-11-23 22:27:15	2023-11-23 22:27:15
1798	3	81	2023-11-23 22:27:15	2023-11-23 22:27:15
1799	3	82	2023-11-23 22:27:15	2023-11-23 22:27:15
1800	3	83	2023-11-23 22:27:15	2023-11-23 22:27:15
1801	3	84	2023-11-23 22:27:15	2023-11-23 22:27:15
1802	3	85	2023-11-23 22:27:15	2023-11-23 22:27:15
1803	3	86	2023-11-23 22:27:15	2023-11-23 22:27:15
1804	3	87	2023-11-23 22:27:15	2023-11-23 22:27:15
1805	3	88	2023-11-23 22:27:16	2023-11-23 22:27:16
1806	3	89	2023-11-23 22:27:16	2023-11-23 22:27:16
1807	3	90	2023-11-23 22:27:16	2023-11-23 22:27:16
1808	3	91	2023-11-23 22:27:16	2023-11-23 22:27:16
1809	3	374	2023-11-23 22:27:16	2023-11-23 22:27:16
1810	3	375	2023-11-23 22:27:16	2023-11-23 22:27:16
1811	3	397	2023-11-23 22:27:16	2023-11-23 22:27:16
1812	3	398	2023-11-23 22:27:16	2023-11-23 22:27:16
1813	3	541	2023-11-23 22:27:16	2023-11-23 22:27:16
1814	3	543	2023-11-23 22:27:16	2023-11-23 22:27:16
1815	3	545	2023-11-23 22:27:16	2023-11-23 22:27:16
1816	3	571	2023-11-23 22:27:16	2023-11-23 22:27:16
1817	3	95	2023-11-23 22:27:16	2023-11-23 22:27:16
1818	3	96	2023-11-23 22:27:16	2023-11-23 22:27:16
1819	3	97	2023-11-23 22:27:16	2023-11-23 22:27:16
1820	3	98	2023-11-23 22:27:16	2023-11-23 22:27:16
1821	3	99	2023-11-23 22:27:16	2023-11-23 22:27:16
1822	3	100	2023-11-23 22:27:16	2023-11-23 22:27:16
1823	3	101	2023-11-23 22:27:16	2023-11-23 22:27:16
1824	3	102	2023-11-23 22:27:16	2023-11-23 22:27:16
1825	3	103	2023-11-23 22:27:16	2023-11-23 22:27:16
1826	3	104	2023-11-23 22:27:16	2023-11-23 22:27:16
1827	3	361	2023-11-23 22:27:16	2023-11-23 22:27:16
1828	3	362	2023-11-23 22:27:16	2023-11-23 22:27:16
1829	3	363	2023-11-23 22:27:16	2023-11-23 22:27:16
1830	3	364	2023-11-23 22:27:16	2023-11-23 22:27:16
1831	3	366	2023-11-23 22:27:16	2023-11-23 22:27:16
1832	3	376	2023-11-23 22:27:16	2023-11-23 22:27:16
1833	3	377	2023-11-23 22:27:16	2023-11-23 22:27:16
1834	3	105	2023-11-23 22:27:16	2023-11-23 22:27:16
1835	3	106	2023-11-23 22:27:16	2023-11-23 22:27:16
1836	3	107	2023-11-23 22:27:16	2023-11-23 22:27:16
1837	3	108	2023-11-23 22:27:16	2023-11-23 22:27:16
1838	3	109	2023-11-23 22:27:16	2023-11-23 22:27:16
1839	3	110	2023-11-23 22:27:16	2023-11-23 22:27:16
1840	3	111	2023-11-23 22:27:16	2023-11-23 22:27:16
1841	3	112	2023-11-23 22:27:16	2023-11-23 22:27:16
1842	3	113	2023-11-23 22:27:16	2023-11-23 22:27:16
1843	3	117	2023-11-23 22:27:16	2023-11-23 22:27:16
1844	3	428	2023-11-23 22:27:16	2023-11-23 22:27:16
1845	3	429	2023-11-23 22:27:16	2023-11-23 22:27:16
1846	3	430	2023-11-23 22:27:16	2023-11-23 22:27:16
1847	3	431	2023-11-23 22:27:16	2023-11-23 22:27:16
1848	3	507	2023-11-23 22:27:16	2023-11-23 22:27:16
1849	3	532	2023-11-23 22:27:16	2023-11-23 22:27:16
1850	3	540	2023-11-23 22:27:16	2023-11-23 22:27:16
1851	3	542	2023-11-23 22:27:16	2023-11-23 22:27:16
1852	3	544	2023-11-23 22:27:16	2023-11-23 22:27:16
1853	3	564	2023-11-23 22:27:16	2023-11-23 22:27:16
1854	3	565	2023-11-23 22:27:16	2023-11-23 22:27:16
1855	3	566	2023-11-23 22:27:16	2023-11-23 22:27:16
1856	3	118	2023-11-23 22:27:16	2023-11-23 22:27:16
1857	3	119	2023-11-23 22:27:16	2023-11-23 22:27:16
1858	3	120	2023-11-23 22:27:16	2023-11-23 22:27:16
1859	3	121	2023-11-23 22:27:16	2023-11-23 22:27:16
1860	3	122	2023-11-23 22:27:16	2023-11-23 22:27:16
1861	3	126	2023-11-23 22:27:16	2023-11-23 22:27:16
1862	3	127	2023-11-23 22:27:16	2023-11-23 22:27:16
1863	3	128	2023-11-23 22:27:16	2023-11-23 22:27:16
1864	3	129	2023-11-23 22:27:16	2023-11-23 22:27:16
1865	3	329	2023-11-23 22:27:16	2023-11-23 22:27:16
1866	3	330	2023-11-23 22:27:16	2023-11-23 22:27:16
1867	3	331	2023-11-23 22:27:16	2023-11-23 22:27:16
1868	3	332	2023-11-23 22:27:16	2023-11-23 22:27:16
1869	3	134	2023-11-23 22:27:16	2023-11-23 22:27:16
1870	3	135	2023-11-23 22:27:16	2023-11-23 22:27:16
1871	3	136	2023-11-23 22:27:16	2023-11-23 22:27:16
1872	3	137	2023-11-23 22:27:16	2023-11-23 22:27:16
1873	3	138	2023-11-23 22:27:16	2023-11-23 22:27:16
1874	3	139	2023-11-23 22:27:16	2023-11-23 22:27:16
1875	3	140	2023-11-23 22:27:16	2023-11-23 22:27:16
1876	3	141	2023-11-23 22:27:17	2023-11-23 22:27:17
1877	3	143	2023-11-23 22:27:17	2023-11-23 22:27:17
1878	3	144	2023-11-23 22:27:17	2023-11-23 22:27:17
1879	3	145	2023-11-23 22:27:17	2023-11-23 22:27:17
1880	3	146	2023-11-23 22:27:17	2023-11-23 22:27:17
1881	3	147	2023-11-23 22:27:17	2023-11-23 22:27:17
1882	3	148	2023-11-23 22:27:17	2023-11-23 22:27:17
1883	3	149	2023-11-23 22:27:17	2023-11-23 22:27:17
1884	3	152	2023-11-23 22:27:17	2023-11-23 22:27:17
1885	3	153	2023-11-23 22:27:17	2023-11-23 22:27:17
1886	3	154	2023-11-23 22:27:17	2023-11-23 22:27:17
1887	3	155	2023-11-23 22:27:17	2023-11-23 22:27:17
1888	3	156	2023-11-23 22:27:17	2023-11-23 22:27:17
1889	3	157	2023-11-23 22:27:17	2023-11-23 22:27:17
1890	3	158	2023-11-23 22:27:17	2023-11-23 22:27:17
1891	3	159	2023-11-23 22:27:17	2023-11-23 22:27:17
1892	3	160	2023-11-23 22:27:17	2023-11-23 22:27:17
1893	3	161	2023-11-23 22:27:17	2023-11-23 22:27:17
1894	3	162	2023-11-23 22:27:17	2023-11-23 22:27:17
1895	3	163	2023-11-23 22:27:17	2023-11-23 22:27:17
1896	3	164	2023-11-23 22:27:17	2023-11-23 22:27:17
1897	3	165	2023-11-23 22:27:17	2023-11-23 22:27:17
1898	3	166	2023-11-23 22:27:17	2023-11-23 22:27:17
1899	3	167	2023-11-23 22:27:17	2023-11-23 22:27:17
1900	3	168	2023-11-23 22:27:17	2023-11-23 22:27:17
1901	3	169	2023-11-23 22:27:17	2023-11-23 22:27:17
1902	3	170	2023-11-23 22:27:17	2023-11-23 22:27:17
1903	3	171	2023-11-23 22:27:17	2023-11-23 22:27:17
1904	3	172	2023-11-23 22:27:17	2023-11-23 22:27:17
1905	3	173	2023-11-23 22:27:17	2023-11-23 22:27:17
1906	3	426	2023-11-23 22:27:17	2023-11-23 22:27:17
1907	3	536	2023-11-23 22:27:17	2023-11-23 22:27:17
1908	3	537	2023-11-23 22:27:17	2023-11-23 22:27:17
1909	3	538	2023-11-23 22:27:17	2023-11-23 22:27:17
1910	3	560	2023-11-23 22:27:17	2023-11-23 22:27:17
1911	3	561	2023-11-23 22:27:17	2023-11-23 22:27:17
1912	3	562	2023-11-23 22:27:17	2023-11-23 22:27:17
1913	3	563	2023-11-23 22:27:17	2023-11-23 22:27:17
1914	3	174	2023-11-23 22:27:17	2023-11-23 22:27:17
1915	3	176	2023-11-23 22:27:17	2023-11-23 22:27:17
1916	3	177	2023-11-23 22:27:17	2023-11-23 22:27:17
1917	3	178	2023-11-23 22:27:17	2023-11-23 22:27:17
1918	3	179	2023-11-23 22:27:17	2023-11-23 22:27:17
1919	3	180	2023-11-23 22:27:17	2023-11-23 22:27:17
1920	3	181	2023-11-23 22:27:17	2023-11-23 22:27:17
1921	3	182	2023-11-23 22:27:17	2023-11-23 22:27:17
1922	3	183	2023-11-23 22:27:17	2023-11-23 22:27:17
1923	3	184	2023-11-23 22:27:17	2023-11-23 22:27:17
1924	3	185	2023-11-23 22:27:17	2023-11-23 22:27:17
1925	3	186	2023-11-23 22:27:17	2023-11-23 22:27:17
1926	3	187	2023-11-23 22:27:17	2023-11-23 22:27:17
1927	3	188	2023-11-23 22:27:17	2023-11-23 22:27:17
1928	3	189	2023-11-23 22:27:17	2023-11-23 22:27:17
1929	3	190	2023-11-23 22:27:17	2023-11-23 22:27:17
1930	3	191	2023-11-23 22:27:17	2023-11-23 22:27:17
1931	3	192	2023-11-23 22:27:17	2023-11-23 22:27:17
1932	3	193	2023-11-23 22:27:17	2023-11-23 22:27:17
1933	3	194	2023-11-23 22:27:17	2023-11-23 22:27:17
1934	3	195	2023-11-23 22:27:17	2023-11-23 22:27:17
1935	3	196	2023-11-23 22:27:17	2023-11-23 22:27:17
1936	3	197	2023-11-23 22:27:17	2023-11-23 22:27:17
1937	3	198	2023-11-23 22:27:17	2023-11-23 22:27:17
1938	3	199	2023-11-23 22:27:17	2023-11-23 22:27:17
1939	3	200	2023-11-23 22:27:17	2023-11-23 22:27:17
1940	3	201	2023-11-23 22:27:17	2023-11-23 22:27:17
1941	3	202	2023-11-23 22:27:17	2023-11-23 22:27:17
1942	3	207	2023-11-23 22:27:18	2023-11-23 22:27:18
1943	3	208	2023-11-23 22:27:18	2023-11-23 22:27:18
1944	3	209	2023-11-23 22:27:18	2023-11-23 22:27:18
1945	3	210	2023-11-23 22:27:18	2023-11-23 22:27:18
1946	3	211	2023-11-23 22:27:18	2023-11-23 22:27:18
1947	3	212	2023-11-23 22:27:18	2023-11-23 22:27:18
1948	3	213	2023-11-23 22:27:18	2023-11-23 22:27:18
1949	3	215	2023-11-23 22:27:18	2023-11-23 22:27:18
1950	3	335	2023-11-23 22:27:18	2023-11-23 22:27:18
1951	3	336	2023-11-23 22:27:18	2023-11-23 22:27:18
1952	3	337	2023-11-23 22:27:18	2023-11-23 22:27:18
1953	3	338	2023-11-23 22:27:18	2023-11-23 22:27:18
1954	3	381	2023-11-23 22:27:18	2023-11-23 22:27:18
1955	3	382	2023-11-23 22:27:18	2023-11-23 22:27:18
1956	3	383	2023-11-23 22:27:18	2023-11-23 22:27:18
1957	3	175	2023-11-23 22:27:18	2023-11-23 22:27:18
1958	3	214	2023-11-23 22:27:18	2023-11-23 22:27:18
1959	3	216	2023-11-23 22:27:18	2023-11-23 22:27:18
1960	3	217	2023-11-23 22:27:18	2023-11-23 22:27:18
1961	3	218	2023-11-23 22:27:18	2023-11-23 22:27:18
1962	3	219	2023-11-23 22:27:18	2023-11-23 22:27:18
1963	3	220	2023-11-23 22:27:18	2023-11-23 22:27:18
1964	3	221	2023-11-23 22:27:18	2023-11-23 22:27:18
1965	3	222	2023-11-23 22:27:18	2023-11-23 22:27:18
1966	3	223	2023-11-23 22:27:18	2023-11-23 22:27:18
1967	3	533	2023-11-23 22:27:18	2023-11-23 22:27:18
1968	3	534	2023-11-23 22:27:18	2023-11-23 22:27:18
1969	3	539	2023-11-23 22:27:18	2023-11-23 22:27:18
1970	3	535	2023-11-23 22:27:18	2023-11-23 22:27:18
1971	4	14	2023-11-23 22:44:04	2023-11-23 22:44:04
1972	4	15	2023-11-23 22:44:04	2023-11-23 22:44:04
1973	4	16	2023-11-23 22:44:04	2023-11-23 22:44:04
1974	4	17	2023-11-23 22:44:04	2023-11-23 22:44:04
1975	4	18	2023-11-23 22:44:04	2023-11-23 22:44:04
1976	4	19	2023-11-23 22:44:04	2023-11-23 22:44:04
1977	4	20	2023-11-23 22:44:04	2023-11-23 22:44:04
1978	4	21	2023-11-23 22:44:04	2023-11-23 22:44:04
1979	4	22	2023-11-23 22:44:04	2023-11-23 22:44:04
1980	4	23	2023-11-23 22:44:04	2023-11-23 22:44:04
1981	4	24	2023-11-23 22:44:04	2023-11-23 22:44:04
1982	4	448	2023-11-23 22:44:04	2023-11-23 22:44:04
1983	4	441	2023-11-23 22:44:04	2023-11-23 22:44:04
1984	4	442	2023-11-23 22:44:04	2023-11-23 22:44:04
1985	4	546	2023-11-23 22:44:04	2023-11-23 22:44:04
1986	4	584	2023-11-23 22:44:04	2023-11-23 22:44:04
1987	4	614	2023-11-23 22:44:04	2023-11-23 22:44:04
1988	4	615	2023-11-23 22:44:04	2023-11-23 22:44:04
1989	4	617	2023-11-23 22:44:04	2023-11-23 22:44:04
1990	4	618	2023-11-23 22:44:04	2023-11-23 22:44:04
1991	4	224	2023-11-23 22:44:04	2023-11-23 22:44:04
1992	4	261	2023-11-23 22:44:04	2023-11-23 22:44:04
1993	4	225	2023-11-23 22:44:04	2023-11-23 22:44:04
1994	4	226	2023-11-23 22:44:04	2023-11-23 22:44:04
1995	4	227	2023-11-23 22:44:04	2023-11-23 22:44:04
1996	4	228	2023-11-23 22:44:04	2023-11-23 22:44:04
1997	4	229	2023-11-23 22:44:04	2023-11-23 22:44:04
1998	4	230	2023-11-23 22:44:04	2023-11-23 22:44:04
1999	4	231	2023-11-23 22:44:04	2023-11-23 22:44:04
2000	4	232	2023-11-23 22:44:04	2023-11-23 22:44:04
2001	4	233	2023-11-23 22:44:04	2023-11-23 22:44:04
2002	4	359	2023-11-23 22:44:04	2023-11-23 22:44:04
2003	4	360	2023-11-23 22:44:04	2023-11-23 22:44:04
2004	4	234	2023-11-23 22:44:04	2023-11-23 22:44:04
2005	4	235	2023-11-23 22:44:04	2023-11-23 22:44:04
2006	4	236	2023-11-23 22:44:04	2023-11-23 22:44:04
2007	4	237	2023-11-23 22:44:04	2023-11-23 22:44:04
2008	4	238	2023-11-23 22:44:04	2023-11-23 22:44:04
2009	4	239	2023-11-23 22:44:04	2023-11-23 22:44:04
2010	4	240	2023-11-23 22:44:04	2023-11-23 22:44:04
2011	4	241	2023-11-23 22:44:04	2023-11-23 22:44:04
2012	4	242	2023-11-23 22:44:04	2023-11-23 22:44:04
2013	4	243	2023-11-23 22:44:04	2023-11-23 22:44:04
2014	4	244	2023-11-23 22:44:04	2023-11-23 22:44:04
2015	4	245	2023-11-23 22:44:05	2023-11-23 22:44:05
2016	4	246	2023-11-23 22:44:05	2023-11-23 22:44:05
2017	4	247	2023-11-23 22:44:05	2023-11-23 22:44:05
2018	4	248	2023-11-23 22:44:05	2023-11-23 22:44:05
2019	4	249	2023-11-23 22:44:05	2023-11-23 22:44:05
2020	4	250	2023-11-23 22:44:05	2023-11-23 22:44:05
2021	4	251	2023-11-23 22:44:05	2023-11-23 22:44:05
2022	4	252	2023-11-23 22:44:05	2023-11-23 22:44:05
2023	4	253	2023-11-23 22:44:05	2023-11-23 22:44:05
2024	4	254	2023-11-23 22:44:05	2023-11-23 22:44:05
2025	4	255	2023-11-23 22:44:05	2023-11-23 22:44:05
2026	4	256	2023-11-23 22:44:05	2023-11-23 22:44:05
2027	4	257	2023-11-23 22:44:05	2023-11-23 22:44:05
2028	4	258	2023-11-23 22:44:05	2023-11-23 22:44:05
2029	4	259	2023-11-23 22:44:05	2023-11-23 22:44:05
2030	4	260	2023-11-23 22:44:05	2023-11-23 22:44:05
2031	4	262	2023-11-23 22:44:05	2023-11-23 22:44:05
2032	4	263	2023-11-23 22:44:05	2023-11-23 22:44:05
2033	4	264	2023-11-23 22:44:05	2023-11-23 22:44:05
2034	4	509	2023-11-23 22:44:05	2023-11-23 22:44:05
2035	4	265	2023-11-23 22:44:05	2023-11-23 22:44:05
2036	4	266	2023-11-23 22:44:05	2023-11-23 22:44:05
2037	4	267	2023-11-23 22:44:05	2023-11-23 22:44:05
2038	4	268	2023-11-23 22:44:05	2023-11-23 22:44:05
2039	4	269	2023-11-23 22:44:05	2023-11-23 22:44:05
2040	4	270	2023-11-23 22:44:05	2023-11-23 22:44:05
2041	4	271	2023-11-23 22:44:05	2023-11-23 22:44:05
2042	4	272	2023-11-23 22:44:05	2023-11-23 22:44:05
2043	4	273	2023-11-23 22:44:05	2023-11-23 22:44:05
2044	4	274	2023-11-23 22:44:05	2023-11-23 22:44:05
2045	4	275	2023-11-23 22:44:05	2023-11-23 22:44:05
2046	4	276	2023-11-23 22:44:05	2023-11-23 22:44:05
2047	4	277	2023-11-23 22:44:05	2023-11-23 22:44:05
2048	4	278	2023-11-23 22:44:05	2023-11-23 22:44:05
2049	4	279	2023-11-23 22:44:05	2023-11-23 22:44:05
2050	4	280	2023-11-23 22:44:05	2023-11-23 22:44:05
2051	4	281	2023-11-23 22:44:05	2023-11-23 22:44:05
2052	4	282	2023-11-23 22:44:05	2023-11-23 22:44:05
2053	4	283	2023-11-23 22:44:05	2023-11-23 22:44:05
2054	4	284	2023-11-23 22:44:05	2023-11-23 22:44:05
2055	4	285	2023-11-23 22:44:05	2023-11-23 22:44:05
2056	4	286	2023-11-23 22:44:05	2023-11-23 22:44:05
2057	4	287	2023-11-23 22:44:05	2023-11-23 22:44:05
2058	4	288	2023-11-23 22:44:05	2023-11-23 22:44:05
2059	4	289	2023-11-23 22:44:05	2023-11-23 22:44:05
2060	4	294	2023-11-23 22:44:05	2023-11-23 22:44:05
2061	4	295	2023-11-23 22:44:05	2023-11-23 22:44:05
2062	4	296	2023-11-23 22:44:05	2023-11-23 22:44:05
2063	4	297	2023-11-23 22:44:05	2023-11-23 22:44:05
2064	4	500	2023-11-23 22:44:05	2023-11-23 22:44:05
2065	4	501	2023-11-23 22:44:05	2023-11-23 22:44:05
2066	4	502	2023-11-23 22:44:05	2023-11-23 22:44:05
2067	4	510	2023-11-23 22:44:05	2023-11-23 22:44:05
2068	4	511	2023-11-23 22:44:05	2023-11-23 22:44:05
2069	4	512	2023-11-23 22:44:05	2023-11-23 22:44:05
2070	4	567	2023-11-23 22:44:05	2023-11-23 22:44:05
2071	4	594	2023-11-23 22:44:05	2023-11-23 22:44:05
2072	4	298	2023-11-23 22:44:05	2023-11-23 22:44:05
2073	4	299	2023-11-23 22:44:05	2023-11-23 22:44:05
2074	4	465	2023-11-23 22:44:05	2023-11-23 22:44:05
2075	4	466	2023-11-23 22:44:05	2023-11-23 22:44:05
2076	4	467	2023-11-23 22:44:05	2023-11-23 22:44:05
2077	4	468	2023-11-23 22:44:05	2023-11-23 22:44:05
2078	4	469	2023-11-23 22:44:05	2023-11-23 22:44:05
2079	4	470	2023-11-23 22:44:05	2023-11-23 22:44:05
2080	4	471	2023-11-23 22:44:05	2023-11-23 22:44:05
2081	4	472	2023-11-23 22:44:05	2023-11-23 22:44:05
2082	4	473	2023-11-23 22:44:05	2023-11-23 22:44:05
2083	4	474	2023-11-23 22:44:05	2023-11-23 22:44:05
2084	4	476	2023-11-23 22:44:05	2023-11-23 22:44:05
2085	4	478	2023-11-23 22:44:05	2023-11-23 22:44:05
2086	4	479	2023-11-23 22:44:05	2023-11-23 22:44:05
2087	4	475	2023-11-23 22:44:06	2023-11-23 22:44:06
2088	4	572	2023-11-23 22:44:06	2023-11-23 22:44:06
2089	4	573	2023-11-23 22:44:06	2023-11-23 22:44:06
2090	4	574	2023-11-23 22:44:06	2023-11-23 22:44:06
2091	4	575	2023-11-23 22:44:06	2023-11-23 22:44:06
2092	4	26	2023-11-23 22:44:06	2023-11-23 22:44:06
2093	4	27	2023-11-23 22:44:07	2023-11-23 22:44:07
2094	4	28	2023-11-23 22:44:07	2023-11-23 22:44:07
2095	4	29	2023-11-23 22:44:07	2023-11-23 22:44:07
2096	4	30	2023-11-23 22:44:07	2023-11-23 22:44:07
2097	4	31	2023-11-23 22:44:07	2023-11-23 22:44:07
2098	4	32	2023-11-23 22:44:07	2023-11-23 22:44:07
2099	4	33	2023-11-23 22:44:07	2023-11-23 22:44:07
2100	4	367	2023-11-23 22:44:07	2023-11-23 22:44:07
2101	4	368	2023-11-23 22:44:07	2023-11-23 22:44:07
2102	4	369	2023-11-23 22:44:07	2023-11-23 22:44:07
2103	4	370	2023-11-23 22:44:07	2023-11-23 22:44:07
2104	4	371	2023-11-23 22:44:07	2023-11-23 22:44:07
2105	4	372	2023-11-23 22:44:07	2023-11-23 22:44:07
2106	4	373	2023-11-23 22:44:07	2023-11-23 22:44:07
2107	4	378	2023-11-23 22:44:07	2023-11-23 22:44:07
2108	4	395	2023-11-23 22:44:07	2023-11-23 22:44:07
2109	4	39	2023-11-23 22:44:07	2023-11-23 22:44:07
2110	4	379	2023-11-23 22:44:07	2023-11-23 22:44:07
2111	4	380	2023-11-23 22:44:07	2023-11-23 22:44:07
2112	4	34	2023-11-23 22:44:07	2023-11-23 22:44:07
2113	4	35	2023-11-23 22:44:07	2023-11-23 22:44:07
2114	4	36	2023-11-23 22:44:07	2023-11-23 22:44:07
2115	4	37	2023-11-23 22:44:07	2023-11-23 22:44:07
2116	4	38	2023-11-23 22:44:07	2023-11-23 22:44:07
2117	4	424	2023-11-23 22:44:07	2023-11-23 22:44:07
2118	4	425	2023-11-23 22:44:07	2023-11-23 22:44:07
2119	4	427	2023-11-23 22:44:07	2023-11-23 22:44:07
2120	4	443	2023-11-23 22:44:07	2023-11-23 22:44:07
2121	4	449	2023-11-23 22:44:07	2023-11-23 22:44:07
2122	4	452	2023-11-23 22:44:07	2023-11-23 22:44:07
2123	4	453	2023-11-23 22:44:07	2023-11-23 22:44:07
2124	4	454	2023-11-23 22:44:07	2023-11-23 22:44:07
2125	4	464	2023-11-23 22:44:07	2023-11-23 22:44:07
2126	4	450	2023-11-23 22:44:07	2023-11-23 22:44:07
2127	4	498	2023-11-23 22:44:07	2023-11-23 22:44:07
2128	4	499	2023-11-23 22:44:07	2023-11-23 22:44:07
2129	4	513	2023-11-23 22:44:07	2023-11-23 22:44:07
2130	4	514	2023-11-23 22:44:07	2023-11-23 22:44:07
2131	4	515	2023-11-23 22:44:07	2023-11-23 22:44:07
2132	4	516	2023-11-23 22:44:07	2023-11-23 22:44:07
2133	4	517	2023-11-23 22:44:07	2023-11-23 22:44:07
2134	4	518	2023-11-23 22:44:07	2023-11-23 22:44:07
2135	4	519	2023-11-23 22:44:07	2023-11-23 22:44:07
2136	4	520	2023-11-23 22:44:07	2023-11-23 22:44:07
2137	4	521	2023-11-23 22:44:07	2023-11-23 22:44:07
2138	4	522	2023-11-23 22:44:07	2023-11-23 22:44:07
2139	4	523	2023-11-23 22:44:07	2023-11-23 22:44:07
2140	4	524	2023-11-23 22:44:07	2023-11-23 22:44:07
2141	4	525	2023-11-23 22:44:07	2023-11-23 22:44:07
2142	4	526	2023-11-23 22:44:07	2023-11-23 22:44:07
2143	4	528	2023-11-23 22:44:07	2023-11-23 22:44:07
2144	4	529	2023-11-23 22:44:07	2023-11-23 22:44:07
2145	4	530	2023-11-23 22:44:07	2023-11-23 22:44:07
2146	4	531	2023-11-23 22:44:07	2023-11-23 22:44:07
2147	4	547	2023-11-23 22:44:07	2023-11-23 22:44:07
2148	4	548	2023-11-23 22:44:07	2023-11-23 22:44:07
2149	4	549	2023-11-23 22:44:07	2023-11-23 22:44:07
2150	4	550	2023-11-23 22:44:07	2023-11-23 22:44:07
2151	4	553	2023-11-23 22:44:07	2023-11-23 22:44:07
2152	4	554	2023-11-23 22:44:07	2023-11-23 22:44:07
2153	4	586	2023-11-23 22:44:07	2023-11-23 22:44:07
2154	4	588	2023-11-23 22:44:07	2023-11-23 22:44:07
2155	4	589	2023-11-23 22:44:07	2023-11-23 22:44:07
2156	4	590	2023-11-23 22:44:07	2023-11-23 22:44:07
2157	4	591	2023-11-23 22:44:07	2023-11-23 22:44:07
2158	4	593	2023-11-23 22:44:07	2023-11-23 22:44:07
2159	4	616	2023-11-23 22:44:07	2023-11-23 22:44:07
2160	4	40	2023-11-23 22:44:07	2023-11-23 22:44:07
2161	4	44	2023-11-23 22:44:07	2023-11-23 22:44:07
2162	4	45	2023-11-23 22:44:07	2023-11-23 22:44:07
2163	4	46	2023-11-23 22:44:07	2023-11-23 22:44:07
2164	4	47	2023-11-23 22:44:07	2023-11-23 22:44:07
2165	4	48	2023-11-23 22:44:07	2023-11-23 22:44:07
2166	4	49	2023-11-23 22:44:07	2023-11-23 22:44:07
2167	4	50	2023-11-23 22:44:07	2023-11-23 22:44:07
2168	4	51	2023-11-23 22:44:07	2023-11-23 22:44:07
2169	4	52	2023-11-23 22:44:07	2023-11-23 22:44:07
2170	4	384	2023-11-23 22:44:07	2023-11-23 22:44:07
2171	4	41	2023-11-23 22:44:07	2023-11-23 22:44:07
2172	4	42	2023-11-23 22:44:07	2023-11-23 22:44:07
2173	4	43	2023-11-23 22:44:07	2023-11-23 22:44:07
2174	4	587	2023-11-23 22:44:07	2023-11-23 22:44:07
2175	4	592	2023-11-23 22:44:07	2023-11-23 22:44:07
2176	4	53	2023-11-23 22:44:07	2023-11-23 22:44:07
2177	4	54	2023-11-23 22:44:07	2023-11-23 22:44:07
2178	4	55	2023-11-23 22:44:07	2023-11-23 22:44:07
2179	4	56	2023-11-23 22:44:07	2023-11-23 22:44:07
2180	4	57	2023-11-23 22:44:07	2023-11-23 22:44:07
2181	4	58	2023-11-23 22:44:07	2023-11-23 22:44:07
2182	4	59	2023-11-23 22:44:07	2023-11-23 22:44:07
2183	4	60	2023-11-23 22:44:07	2023-11-23 22:44:07
2184	4	61	2023-11-23 22:44:08	2023-11-23 22:44:08
2185	4	62	2023-11-23 22:44:08	2023-11-23 22:44:08
2186	4	63	2023-11-23 22:44:08	2023-11-23 22:44:08
2187	4	64	2023-11-23 22:44:08	2023-11-23 22:44:08
2188	4	65	2023-11-23 22:44:08	2023-11-23 22:44:08
2189	4	66	2023-11-23 22:44:08	2023-11-23 22:44:08
2190	4	67	2023-11-23 22:44:08	2023-11-23 22:44:08
2191	4	68	2023-11-23 22:44:08	2023-11-23 22:44:08
2192	4	69	2023-11-23 22:44:08	2023-11-23 22:44:08
2193	4	70	2023-11-23 22:44:08	2023-11-23 22:44:08
2194	4	71	2023-11-23 22:44:08	2023-11-23 22:44:08
2195	4	72	2023-11-23 22:44:08	2023-11-23 22:44:08
2196	4	73	2023-11-23 22:44:08	2023-11-23 22:44:08
2197	4	74	2023-11-23 22:44:08	2023-11-23 22:44:08
2198	4	75	2023-11-23 22:44:08	2023-11-23 22:44:08
2199	4	76	2023-11-23 22:44:08	2023-11-23 22:44:08
2200	4	77	2023-11-23 22:44:08	2023-11-23 22:44:08
2201	4	432	2023-11-23 22:44:08	2023-11-23 22:44:08
2202	4	433	2023-11-23 22:44:08	2023-11-23 22:44:08
2203	4	434	2023-11-23 22:44:08	2023-11-23 22:44:08
2204	4	435	2023-11-23 22:44:08	2023-11-23 22:44:08
2205	4	436	2023-11-23 22:44:08	2023-11-23 22:44:08
2206	4	437	2023-11-23 22:44:08	2023-11-23 22:44:08
2207	4	438	2023-11-23 22:44:08	2023-11-23 22:44:08
2208	4	439	2023-11-23 22:44:08	2023-11-23 22:44:08
2209	4	440	2023-11-23 22:44:08	2023-11-23 22:44:08
2210	4	451	2023-11-23 22:44:08	2023-11-23 22:44:08
2211	4	477	2023-11-23 22:44:08	2023-11-23 22:44:08
2212	4	585	2023-11-23 22:44:08	2023-11-23 22:44:08
2213	4	78	2023-11-23 22:44:08	2023-11-23 22:44:08
2214	4	79	2023-11-23 22:44:08	2023-11-23 22:44:08
2215	4	80	2023-11-23 22:44:08	2023-11-23 22:44:08
2216	4	81	2023-11-23 22:44:08	2023-11-23 22:44:08
2217	4	82	2023-11-23 22:44:08	2023-11-23 22:44:08
2218	4	83	2023-11-23 22:44:08	2023-11-23 22:44:08
2219	4	84	2023-11-23 22:44:08	2023-11-23 22:44:08
2220	4	85	2023-11-23 22:44:08	2023-11-23 22:44:08
2221	4	86	2023-11-23 22:44:08	2023-11-23 22:44:08
2222	4	87	2023-11-23 22:44:08	2023-11-23 22:44:08
2223	4	88	2023-11-23 22:44:08	2023-11-23 22:44:08
2224	4	89	2023-11-23 22:44:08	2023-11-23 22:44:08
2225	4	90	2023-11-23 22:44:08	2023-11-23 22:44:08
2226	4	91	2023-11-23 22:44:08	2023-11-23 22:44:08
2227	4	92	2023-11-23 22:44:08	2023-11-23 22:44:08
2228	4	93	2023-11-23 22:44:08	2023-11-23 22:44:08
2229	4	94	2023-11-23 22:44:08	2023-11-23 22:44:08
2230	4	374	2023-11-23 22:44:08	2023-11-23 22:44:08
2231	4	375	2023-11-23 22:44:08	2023-11-23 22:44:08
2232	4	393	2023-11-23 22:44:08	2023-11-23 22:44:08
2233	4	394	2023-11-23 22:44:08	2023-11-23 22:44:08
2234	4	397	2023-11-23 22:44:08	2023-11-23 22:44:08
2235	4	398	2023-11-23 22:44:08	2023-11-23 22:44:08
2236	4	541	2023-11-23 22:44:08	2023-11-23 22:44:08
2237	4	543	2023-11-23 22:44:08	2023-11-23 22:44:08
2238	4	545	2023-11-23 22:44:08	2023-11-23 22:44:08
2239	4	571	2023-11-23 22:44:08	2023-11-23 22:44:08
2240	4	95	2023-11-23 22:44:08	2023-11-23 22:44:08
2241	4	96	2023-11-23 22:44:08	2023-11-23 22:44:08
2242	4	97	2023-11-23 22:44:08	2023-11-23 22:44:08
2243	4	98	2023-11-23 22:44:08	2023-11-23 22:44:08
2244	4	99	2023-11-23 22:44:08	2023-11-23 22:44:08
2245	4	100	2023-11-23 22:44:08	2023-11-23 22:44:08
2246	4	101	2023-11-23 22:44:08	2023-11-23 22:44:08
2247	4	102	2023-11-23 22:44:08	2023-11-23 22:44:08
2248	4	103	2023-11-23 22:44:08	2023-11-23 22:44:08
2249	4	104	2023-11-23 22:44:08	2023-11-23 22:44:08
2250	4	361	2023-11-23 22:44:08	2023-11-23 22:44:08
2251	4	362	2023-11-23 22:44:08	2023-11-23 22:44:08
2252	4	363	2023-11-23 22:44:08	2023-11-23 22:44:08
2253	4	364	2023-11-23 22:44:08	2023-11-23 22:44:08
2254	4	366	2023-11-23 22:44:08	2023-11-23 22:44:08
2255	4	376	2023-11-23 22:44:08	2023-11-23 22:44:08
2256	4	377	2023-11-23 22:44:08	2023-11-23 22:44:08
2257	4	105	2023-11-23 22:44:08	2023-11-23 22:44:08
2258	4	106	2023-11-23 22:44:08	2023-11-23 22:44:08
2259	4	107	2023-11-23 22:44:08	2023-11-23 22:44:08
2260	4	108	2023-11-23 22:44:08	2023-11-23 22:44:08
2261	4	109	2023-11-23 22:44:08	2023-11-23 22:44:08
2262	4	110	2023-11-23 22:44:08	2023-11-23 22:44:08
2263	4	111	2023-11-23 22:44:08	2023-11-23 22:44:08
2264	4	112	2023-11-23 22:44:08	2023-11-23 22:44:08
2265	4	113	2023-11-23 22:44:08	2023-11-23 22:44:08
2266	4	114	2023-11-23 22:44:08	2023-11-23 22:44:08
2267	4	115	2023-11-23 22:44:08	2023-11-23 22:44:08
2268	4	116	2023-11-23 22:44:08	2023-11-23 22:44:08
2269	4	117	2023-11-23 22:44:08	2023-11-23 22:44:08
2270	4	428	2023-11-23 22:44:08	2023-11-23 22:44:08
2271	4	429	2023-11-23 22:44:08	2023-11-23 22:44:08
2272	4	430	2023-11-23 22:44:08	2023-11-23 22:44:08
2273	4	431	2023-11-23 22:44:08	2023-11-23 22:44:08
2274	4	444	2023-11-23 22:44:08	2023-11-23 22:44:08
2275	4	445	2023-11-23 22:44:08	2023-11-23 22:44:08
2276	4	446	2023-11-23 22:44:08	2023-11-23 22:44:08
2277	4	447	2023-11-23 22:44:08	2023-11-23 22:44:08
2278	4	507	2023-11-23 22:44:08	2023-11-23 22:44:08
2279	4	508	2023-11-23 22:44:08	2023-11-23 22:44:08
2280	4	532	2023-11-23 22:44:08	2023-11-23 22:44:08
2281	4	540	2023-11-23 22:44:08	2023-11-23 22:44:08
2282	4	542	2023-11-23 22:44:08	2023-11-23 22:44:08
2283	4	544	2023-11-23 22:44:09	2023-11-23 22:44:09
2284	4	564	2023-11-23 22:44:09	2023-11-23 22:44:09
2285	4	565	2023-11-23 22:44:09	2023-11-23 22:44:09
2286	4	566	2023-11-23 22:44:09	2023-11-23 22:44:09
2287	4	118	2023-11-23 22:44:09	2023-11-23 22:44:09
2288	4	119	2023-11-23 22:44:09	2023-11-23 22:44:09
2289	4	120	2023-11-23 22:44:09	2023-11-23 22:44:09
2290	4	121	2023-11-23 22:44:09	2023-11-23 22:44:09
2291	4	122	2023-11-23 22:44:09	2023-11-23 22:44:09
2292	4	123	2023-11-23 22:44:09	2023-11-23 22:44:09
2293	4	124	2023-11-23 22:44:09	2023-11-23 22:44:09
2294	4	125	2023-11-23 22:44:09	2023-11-23 22:44:09
2295	4	126	2023-11-23 22:44:09	2023-11-23 22:44:09
2296	4	127	2023-11-23 22:44:09	2023-11-23 22:44:09
2297	4	128	2023-11-23 22:44:09	2023-11-23 22:44:09
2298	4	129	2023-11-23 22:44:09	2023-11-23 22:44:09
2299	4	130	2023-11-23 22:44:09	2023-11-23 22:44:09
2300	4	329	2023-11-23 22:44:09	2023-11-23 22:44:09
2301	4	330	2023-11-23 22:44:09	2023-11-23 22:44:09
2302	4	331	2023-11-23 22:44:09	2023-11-23 22:44:09
2303	4	332	2023-11-23 22:44:09	2023-11-23 22:44:09
2304	4	333	2023-11-23 22:44:09	2023-11-23 22:44:09
2305	4	334	2023-11-23 22:44:09	2023-11-23 22:44:09
2306	4	131	2023-11-23 22:44:09	2023-11-23 22:44:09
2307	4	132	2023-11-23 22:44:09	2023-11-23 22:44:09
2308	4	133	2023-11-23 22:44:09	2023-11-23 22:44:09
2309	4	134	2023-11-23 22:44:09	2023-11-23 22:44:09
2310	4	135	2023-11-23 22:44:09	2023-11-23 22:44:09
2311	4	136	2023-11-23 22:44:09	2023-11-23 22:44:09
2312	4	137	2023-11-23 22:44:09	2023-11-23 22:44:09
2313	4	138	2023-11-23 22:44:09	2023-11-23 22:44:09
2314	4	139	2023-11-23 22:44:09	2023-11-23 22:44:09
2315	4	140	2023-11-23 22:44:09	2023-11-23 22:44:09
2316	4	141	2023-11-23 22:44:09	2023-11-23 22:44:09
2317	4	142	2023-11-23 22:44:09	2023-11-23 22:44:09
2318	4	143	2023-11-23 22:44:09	2023-11-23 22:44:09
2319	4	144	2023-11-23 22:44:09	2023-11-23 22:44:09
2320	4	145	2023-11-23 22:44:09	2023-11-23 22:44:09
2321	4	146	2023-11-23 22:44:09	2023-11-23 22:44:09
2322	4	147	2023-11-23 22:44:09	2023-11-23 22:44:09
2323	4	148	2023-11-23 22:44:09	2023-11-23 22:44:09
2324	4	149	2023-11-23 22:44:09	2023-11-23 22:44:09
2325	4	150	2023-11-23 22:44:09	2023-11-23 22:44:09
2326	4	151	2023-11-23 22:44:09	2023-11-23 22:44:09
2327	4	152	2023-11-23 22:44:09	2023-11-23 22:44:09
2328	4	153	2023-11-23 22:44:09	2023-11-23 22:44:09
2329	4	154	2023-11-23 22:44:09	2023-11-23 22:44:09
2330	4	155	2023-11-23 22:44:09	2023-11-23 22:44:09
2331	4	156	2023-11-23 22:44:09	2023-11-23 22:44:09
2332	4	157	2023-11-23 22:44:09	2023-11-23 22:44:09
2333	4	158	2023-11-23 22:44:09	2023-11-23 22:44:09
2334	4	159	2023-11-23 22:44:09	2023-11-23 22:44:09
2335	4	160	2023-11-23 22:44:09	2023-11-23 22:44:09
2336	4	161	2023-11-23 22:44:09	2023-11-23 22:44:09
2337	4	162	2023-11-23 22:44:09	2023-11-23 22:44:09
2338	4	163	2023-11-23 22:44:09	2023-11-23 22:44:09
2339	4	164	2023-11-23 22:44:09	2023-11-23 22:44:09
2340	4	165	2023-11-23 22:44:09	2023-11-23 22:44:09
2341	4	166	2023-11-23 22:44:09	2023-11-23 22:44:09
2342	4	167	2023-11-23 22:44:09	2023-11-23 22:44:09
2343	4	168	2023-11-23 22:44:09	2023-11-23 22:44:09
2344	4	169	2023-11-23 22:44:09	2023-11-23 22:44:09
2345	4	170	2023-11-23 22:44:09	2023-11-23 22:44:09
2346	4	171	2023-11-23 22:44:09	2023-11-23 22:44:09
2347	4	172	2023-11-23 22:44:09	2023-11-23 22:44:09
2348	4	173	2023-11-23 22:44:09	2023-11-23 22:44:09
2349	4	426	2023-11-23 22:44:09	2023-11-23 22:44:09
2350	4	341	2023-11-23 22:44:09	2023-11-23 22:44:09
2351	4	342	2023-11-23 22:44:09	2023-11-23 22:44:09
2352	4	343	2023-11-23 22:44:09	2023-11-23 22:44:09
2353	4	346	2023-11-23 22:44:09	2023-11-23 22:44:09
2354	4	347	2023-11-23 22:44:09	2023-11-23 22:44:09
2355	4	348	2023-11-23 22:44:09	2023-11-23 22:44:09
2356	4	349	2023-11-23 22:44:09	2023-11-23 22:44:09
2357	4	536	2023-11-23 22:44:09	2023-11-23 22:44:09
2358	4	537	2023-11-23 22:44:09	2023-11-23 22:44:09
2359	4	538	2023-11-23 22:44:09	2023-11-23 22:44:09
2360	4	560	2023-11-23 22:44:09	2023-11-23 22:44:09
2361	4	561	2023-11-23 22:44:09	2023-11-23 22:44:09
2362	4	562	2023-11-23 22:44:09	2023-11-23 22:44:09
2363	4	563	2023-11-23 22:44:09	2023-11-23 22:44:09
2364	4	174	2023-11-23 22:44:09	2023-11-23 22:44:09
2365	4	176	2023-11-23 22:44:09	2023-11-23 22:44:09
2366	4	177	2023-11-23 22:44:09	2023-11-23 22:44:09
2367	4	178	2023-11-23 22:44:09	2023-11-23 22:44:09
2368	4	179	2023-11-23 22:44:09	2023-11-23 22:44:09
2369	4	180	2023-11-23 22:44:09	2023-11-23 22:44:09
2370	4	181	2023-11-23 22:44:09	2023-11-23 22:44:09
2371	4	182	2023-11-23 22:44:09	2023-11-23 22:44:09
2372	4	183	2023-11-23 22:44:09	2023-11-23 22:44:09
2373	4	184	2023-11-23 22:44:09	2023-11-23 22:44:09
2374	4	185	2023-11-23 22:44:09	2023-11-23 22:44:09
2375	4	186	2023-11-23 22:44:09	2023-11-23 22:44:09
2376	4	187	2023-11-23 22:44:09	2023-11-23 22:44:09
2377	4	188	2023-11-23 22:44:09	2023-11-23 22:44:09
2378	4	189	2023-11-23 22:44:09	2023-11-23 22:44:09
2379	4	190	2023-11-23 22:44:09	2023-11-23 22:44:09
2380	4	191	2023-11-23 22:44:09	2023-11-23 22:44:09
2381	4	192	2023-11-23 22:44:09	2023-11-23 22:44:09
2382	4	193	2023-11-23 22:44:09	2023-11-23 22:44:09
2383	4	194	2023-11-23 22:44:09	2023-11-23 22:44:09
2384	4	195	2023-11-23 22:44:10	2023-11-23 22:44:10
2385	4	196	2023-11-23 22:44:10	2023-11-23 22:44:10
2386	4	197	2023-11-23 22:44:10	2023-11-23 22:44:10
2387	4	198	2023-11-23 22:44:10	2023-11-23 22:44:10
2388	4	199	2023-11-23 22:44:10	2023-11-23 22:44:10
2389	4	200	2023-11-23 22:44:10	2023-11-23 22:44:10
2390	4	201	2023-11-23 22:44:10	2023-11-23 22:44:10
2391	4	202	2023-11-23 22:44:10	2023-11-23 22:44:10
2392	4	203	2023-11-23 22:44:10	2023-11-23 22:44:10
2393	4	204	2023-11-23 22:44:10	2023-11-23 22:44:10
2394	4	205	2023-11-23 22:44:10	2023-11-23 22:44:10
2395	4	206	2023-11-23 22:44:10	2023-11-23 22:44:10
2396	4	207	2023-11-23 22:44:10	2023-11-23 22:44:10
2397	4	208	2023-11-23 22:44:10	2023-11-23 22:44:10
2398	4	209	2023-11-23 22:44:10	2023-11-23 22:44:10
2399	4	210	2023-11-23 22:44:10	2023-11-23 22:44:10
2400	4	211	2023-11-23 22:44:10	2023-11-23 22:44:10
2401	4	212	2023-11-23 22:44:10	2023-11-23 22:44:10
2402	4	213	2023-11-23 22:44:10	2023-11-23 22:44:10
2403	4	215	2023-11-23 22:44:10	2023-11-23 22:44:10
2404	4	335	2023-11-23 22:44:10	2023-11-23 22:44:10
2405	4	336	2023-11-23 22:44:10	2023-11-23 22:44:10
2406	4	337	2023-11-23 22:44:10	2023-11-23 22:44:10
2407	4	338	2023-11-23 22:44:10	2023-11-23 22:44:10
2408	4	381	2023-11-23 22:44:10	2023-11-23 22:44:10
2409	4	382	2023-11-23 22:44:10	2023-11-23 22:44:10
2410	4	383	2023-11-23 22:44:10	2023-11-23 22:44:10
2411	4	175	2023-11-23 22:44:10	2023-11-23 22:44:10
2412	4	214	2023-11-23 22:44:10	2023-11-23 22:44:10
2413	4	216	2023-11-23 22:44:10	2023-11-23 22:44:10
2414	4	217	2023-11-23 22:44:10	2023-11-23 22:44:10
2415	4	218	2023-11-23 22:44:10	2023-11-23 22:44:10
2416	4	219	2023-11-23 22:44:10	2023-11-23 22:44:10
2417	4	220	2023-11-23 22:44:10	2023-11-23 22:44:10
2418	4	221	2023-11-23 22:44:10	2023-11-23 22:44:10
2419	4	222	2023-11-23 22:44:10	2023-11-23 22:44:10
2420	4	223	2023-11-23 22:44:10	2023-11-23 22:44:10
2421	4	533	2023-11-23 22:44:10	2023-11-23 22:44:10
2422	4	534	2023-11-23 22:44:10	2023-11-23 22:44:10
2423	4	539	2023-11-23 22:44:10	2023-11-23 22:44:10
2424	4	535	2023-11-23 22:44:10	2023-11-23 22:44:10
2425	5	14	2023-11-23 22:52:01	2023-11-23 22:52:01
2426	5	15	2023-11-23 22:52:01	2023-11-23 22:52:01
2427	5	16	2023-11-23 22:52:01	2023-11-23 22:52:01
2428	5	17	2023-11-23 22:52:01	2023-11-23 22:52:01
2429	5	18	2023-11-23 22:52:01	2023-11-23 22:52:01
2430	5	19	2023-11-23 22:52:01	2023-11-23 22:52:01
2431	5	20	2023-11-23 22:52:01	2023-11-23 22:52:01
2432	5	21	2023-11-23 22:52:01	2023-11-23 22:52:01
2433	5	22	2023-11-23 22:52:01	2023-11-23 22:52:01
2434	5	23	2023-11-23 22:52:01	2023-11-23 22:52:01
2435	5	24	2023-11-23 22:52:01	2023-11-23 22:52:01
2436	5	448	2023-11-23 22:52:02	2023-11-23 22:52:02
2437	5	441	2023-11-23 22:52:02	2023-11-23 22:52:02
2438	5	442	2023-11-23 22:52:02	2023-11-23 22:52:02
2439	5	546	2023-11-23 22:52:02	2023-11-23 22:52:02
2440	5	584	2023-11-23 22:52:02	2023-11-23 22:52:02
2441	5	614	2023-11-23 22:52:02	2023-11-23 22:52:02
2442	5	615	2023-11-23 22:52:02	2023-11-23 22:52:02
2443	5	617	2023-11-23 22:52:02	2023-11-23 22:52:02
2444	5	618	2023-11-23 22:52:02	2023-11-23 22:52:02
2445	5	224	2023-11-23 22:52:02	2023-11-23 22:52:02
2446	5	261	2023-11-23 22:52:02	2023-11-23 22:52:02
2447	5	225	2023-11-23 22:52:02	2023-11-23 22:52:02
2448	5	226	2023-11-23 22:52:02	2023-11-23 22:52:02
2449	5	227	2023-11-23 22:52:02	2023-11-23 22:52:02
2450	5	228	2023-11-23 22:52:02	2023-11-23 22:52:02
2451	5	229	2023-11-23 22:52:02	2023-11-23 22:52:02
2452	5	230	2023-11-23 22:52:02	2023-11-23 22:52:02
2453	5	231	2023-11-23 22:52:02	2023-11-23 22:52:02
2454	5	232	2023-11-23 22:52:02	2023-11-23 22:52:02
2455	5	233	2023-11-23 22:52:02	2023-11-23 22:52:02
2456	5	359	2023-11-23 22:52:02	2023-11-23 22:52:02
2457	5	360	2023-11-23 22:52:02	2023-11-23 22:52:02
2458	5	234	2023-11-23 22:52:02	2023-11-23 22:52:02
2459	5	235	2023-11-23 22:52:02	2023-11-23 22:52:02
2460	5	236	2023-11-23 22:52:02	2023-11-23 22:52:02
2461	5	237	2023-11-23 22:52:02	2023-11-23 22:52:02
2462	5	238	2023-11-23 22:52:02	2023-11-23 22:52:02
2463	5	239	2023-11-23 22:52:02	2023-11-23 22:52:02
2464	5	240	2023-11-23 22:52:02	2023-11-23 22:52:02
2465	5	241	2023-11-23 22:52:02	2023-11-23 22:52:02
2466	5	242	2023-11-23 22:52:02	2023-11-23 22:52:02
2467	5	243	2023-11-23 22:52:02	2023-11-23 22:52:02
2468	5	244	2023-11-23 22:52:02	2023-11-23 22:52:02
2469	5	245	2023-11-23 22:52:02	2023-11-23 22:52:02
2470	5	246	2023-11-23 22:52:02	2023-11-23 22:52:02
2471	5	247	2023-11-23 22:52:02	2023-11-23 22:52:02
2472	5	248	2023-11-23 22:52:02	2023-11-23 22:52:02
2473	5	249	2023-11-23 22:52:02	2023-11-23 22:52:02
2474	5	250	2023-11-23 22:52:02	2023-11-23 22:52:02
2475	5	251	2023-11-23 22:52:02	2023-11-23 22:52:02
2476	5	252	2023-11-23 22:52:02	2023-11-23 22:52:02
2477	5	253	2023-11-23 22:52:02	2023-11-23 22:52:02
2478	5	254	2023-11-23 22:52:02	2023-11-23 22:52:02
2479	5	255	2023-11-23 22:52:02	2023-11-23 22:52:02
2480	5	256	2023-11-23 22:52:02	2023-11-23 22:52:02
2481	5	257	2023-11-23 22:52:02	2023-11-23 22:52:02
2482	5	258	2023-11-23 22:52:02	2023-11-23 22:52:02
2483	5	259	2023-11-23 22:52:02	2023-11-23 22:52:02
2484	5	260	2023-11-23 22:52:02	2023-11-23 22:52:02
2485	5	262	2023-11-23 22:52:02	2023-11-23 22:52:02
2486	5	263	2023-11-23 22:52:02	2023-11-23 22:52:02
2487	5	264	2023-11-23 22:52:02	2023-11-23 22:52:02
2488	5	509	2023-11-23 22:52:02	2023-11-23 22:52:02
2489	5	265	2023-11-23 22:52:02	2023-11-23 22:52:02
2490	5	266	2023-11-23 22:52:02	2023-11-23 22:52:02
2491	5	267	2023-11-23 22:52:02	2023-11-23 22:52:02
2492	5	268	2023-11-23 22:52:02	2023-11-23 22:52:02
2493	5	269	2023-11-23 22:52:02	2023-11-23 22:52:02
2494	5	270	2023-11-23 22:52:02	2023-11-23 22:52:02
2495	5	271	2023-11-23 22:52:02	2023-11-23 22:52:02
2496	5	272	2023-11-23 22:52:02	2023-11-23 22:52:02
2497	5	273	2023-11-23 22:52:02	2023-11-23 22:52:02
2498	5	274	2023-11-23 22:52:02	2023-11-23 22:52:02
2499	5	275	2023-11-23 22:52:02	2023-11-23 22:52:02
2500	5	276	2023-11-23 22:52:02	2023-11-23 22:52:02
2501	5	277	2023-11-23 22:52:02	2023-11-23 22:52:02
2502	5	278	2023-11-23 22:52:02	2023-11-23 22:52:02
2503	5	279	2023-11-23 22:52:02	2023-11-23 22:52:02
2504	5	280	2023-11-23 22:52:02	2023-11-23 22:52:02
2505	5	281	2023-11-23 22:52:02	2023-11-23 22:52:02
2506	5	282	2023-11-23 22:52:02	2023-11-23 22:52:02
2507	5	283	2023-11-23 22:52:02	2023-11-23 22:52:02
2508	5	284	2023-11-23 22:52:02	2023-11-23 22:52:02
2509	5	285	2023-11-23 22:52:02	2023-11-23 22:52:02
2510	5	286	2023-11-23 22:52:02	2023-11-23 22:52:02
2511	5	287	2023-11-23 22:52:02	2023-11-23 22:52:02
2512	5	288	2023-11-23 22:52:02	2023-11-23 22:52:02
2513	5	289	2023-11-23 22:52:02	2023-11-23 22:52:02
2514	5	294	2023-11-23 22:52:02	2023-11-23 22:52:02
2515	5	295	2023-11-23 22:52:02	2023-11-23 22:52:02
2516	5	296	2023-11-23 22:52:02	2023-11-23 22:52:02
2517	5	297	2023-11-23 22:52:02	2023-11-23 22:52:02
2518	5	500	2023-11-23 22:52:02	2023-11-23 22:52:02
2519	5	501	2023-11-23 22:52:02	2023-11-23 22:52:02
2520	5	502	2023-11-23 22:52:02	2023-11-23 22:52:02
2521	5	510	2023-11-23 22:52:02	2023-11-23 22:52:02
2522	5	511	2023-11-23 22:52:03	2023-11-23 22:52:03
2523	5	512	2023-11-23 22:52:03	2023-11-23 22:52:03
2524	5	567	2023-11-23 22:52:03	2023-11-23 22:52:03
2525	5	594	2023-11-23 22:52:03	2023-11-23 22:52:03
2526	5	298	2023-11-23 22:52:03	2023-11-23 22:52:03
2527	5	299	2023-11-23 22:52:03	2023-11-23 22:52:03
2528	5	300	2023-11-23 22:52:03	2023-11-23 22:52:03
2529	5	310	2023-11-23 22:52:03	2023-11-23 22:52:03
2530	5	311	2023-11-23 22:52:03	2023-11-23 22:52:03
2531	5	312	2023-11-23 22:52:03	2023-11-23 22:52:03
2532	5	313	2023-11-23 22:52:03	2023-11-23 22:52:03
2533	5	314	2023-11-23 22:52:03	2023-11-23 22:52:03
2534	5	315	2023-11-23 22:52:03	2023-11-23 22:52:03
2535	5	316	2023-11-23 22:52:03	2023-11-23 22:52:03
2536	5	317	2023-11-23 22:52:03	2023-11-23 22:52:03
2537	5	318	2023-11-23 22:52:03	2023-11-23 22:52:03
2538	5	358	2023-11-23 22:52:03	2023-11-23 22:52:03
2539	5	365	2023-11-23 22:52:03	2023-11-23 22:52:03
2540	5	350	2023-11-23 22:52:03	2023-11-23 22:52:03
2541	5	351	2023-11-23 22:52:03	2023-11-23 22:52:03
2542	5	352	2023-11-23 22:52:03	2023-11-23 22:52:03
2543	5	353	2023-11-23 22:52:03	2023-11-23 22:52:03
2544	5	354	2023-11-23 22:52:03	2023-11-23 22:52:03
2545	5	355	2023-11-23 22:52:03	2023-11-23 22:52:03
2546	5	356	2023-11-23 22:52:03	2023-11-23 22:52:03
2547	5	357	2023-11-23 22:52:03	2023-11-23 22:52:03
2548	5	392	2023-11-23 22:52:03	2023-11-23 22:52:03
2549	5	396	2023-11-23 22:52:03	2023-11-23 22:52:03
2550	5	301	2023-11-23 22:52:03	2023-11-23 22:52:03
2551	5	302	2023-11-23 22:52:03	2023-11-23 22:52:03
2552	5	303	2023-11-23 22:52:03	2023-11-23 22:52:03
2553	5	304	2023-11-23 22:52:03	2023-11-23 22:52:03
2554	5	305	2023-11-23 22:52:03	2023-11-23 22:52:03
2555	5	306	2023-11-23 22:52:03	2023-11-23 22:52:03
2556	5	307	2023-11-23 22:52:03	2023-11-23 22:52:03
2557	5	308	2023-11-23 22:52:03	2023-11-23 22:52:03
2558	5	309	2023-11-23 22:52:03	2023-11-23 22:52:03
2559	5	25	2023-11-23 22:52:03	2023-11-23 22:52:03
2560	5	572	2023-11-23 22:52:03	2023-11-23 22:52:03
2561	5	573	2023-11-23 22:52:03	2023-11-23 22:52:03
2562	5	574	2023-11-23 22:52:03	2023-11-23 22:52:03
2563	5	575	2023-11-23 22:52:03	2023-11-23 22:52:03
2564	5	26	2023-11-23 22:52:03	2023-11-23 22:52:03
2565	5	27	2023-11-23 22:52:03	2023-11-23 22:52:03
2566	5	28	2023-11-23 22:52:03	2023-11-23 22:52:03
2567	5	29	2023-11-23 22:52:03	2023-11-23 22:52:03
2568	5	30	2023-11-23 22:52:03	2023-11-23 22:52:03
2569	5	31	2023-11-23 22:52:03	2023-11-23 22:52:03
2570	5	32	2023-11-23 22:52:03	2023-11-23 22:52:03
2571	5	33	2023-11-23 22:52:03	2023-11-23 22:52:03
2572	5	367	2023-11-23 22:52:03	2023-11-23 22:52:03
2573	5	368	2023-11-23 22:52:03	2023-11-23 22:52:03
2574	5	369	2023-11-23 22:52:03	2023-11-23 22:52:03
2575	5	370	2023-11-23 22:52:03	2023-11-23 22:52:03
2576	5	371	2023-11-23 22:52:03	2023-11-23 22:52:03
2577	5	372	2023-11-23 22:52:03	2023-11-23 22:52:03
2578	5	373	2023-11-23 22:52:03	2023-11-23 22:52:03
2579	5	378	2023-11-23 22:52:03	2023-11-23 22:52:03
2580	5	395	2023-11-23 22:52:03	2023-11-23 22:52:03
2581	5	39	2023-11-23 22:52:03	2023-11-23 22:52:03
2582	5	379	2023-11-23 22:52:03	2023-11-23 22:52:03
2583	5	380	2023-11-23 22:52:03	2023-11-23 22:52:03
2584	5	34	2023-11-23 22:52:03	2023-11-23 22:52:03
2585	5	35	2023-11-23 22:52:03	2023-11-23 22:52:03
2586	5	36	2023-11-23 22:52:03	2023-11-23 22:52:03
2587	5	37	2023-11-23 22:52:03	2023-11-23 22:52:03
2588	5	38	2023-11-23 22:52:03	2023-11-23 22:52:03
2589	5	424	2023-11-23 22:52:03	2023-11-23 22:52:03
2590	5	425	2023-11-23 22:52:03	2023-11-23 22:52:03
2591	5	427	2023-11-23 22:52:03	2023-11-23 22:52:03
2592	5	443	2023-11-23 22:52:03	2023-11-23 22:52:03
2593	5	449	2023-11-23 22:52:03	2023-11-23 22:52:03
2594	5	452	2023-11-23 22:52:03	2023-11-23 22:52:03
2595	5	453	2023-11-23 22:52:03	2023-11-23 22:52:03
2596	5	454	2023-11-23 22:52:03	2023-11-23 22:52:03
2597	5	464	2023-11-23 22:52:03	2023-11-23 22:52:03
2598	5	450	2023-11-23 22:52:03	2023-11-23 22:52:03
2599	5	498	2023-11-23 22:52:03	2023-11-23 22:52:03
2600	5	499	2023-11-23 22:52:03	2023-11-23 22:52:03
2601	5	513	2023-11-23 22:52:03	2023-11-23 22:52:03
2602	5	514	2023-11-23 22:52:03	2023-11-23 22:52:03
2603	5	515	2023-11-23 22:52:03	2023-11-23 22:52:03
2604	5	516	2023-11-23 22:52:03	2023-11-23 22:52:03
2605	5	517	2023-11-23 22:52:03	2023-11-23 22:52:03
2606	5	518	2023-11-23 22:52:03	2023-11-23 22:52:03
2607	5	519	2023-11-23 22:52:03	2023-11-23 22:52:03
2608	5	520	2023-11-23 22:52:03	2023-11-23 22:52:03
2609	5	521	2023-11-23 22:52:03	2023-11-23 22:52:03
2610	5	522	2023-11-23 22:52:03	2023-11-23 22:52:03
2611	5	523	2023-11-23 22:52:03	2023-11-23 22:52:03
2612	5	524	2023-11-23 22:52:03	2023-11-23 22:52:03
2613	5	525	2023-11-23 22:52:03	2023-11-23 22:52:03
2614	5	526	2023-11-23 22:52:03	2023-11-23 22:52:03
2615	5	527	2023-11-23 22:52:03	2023-11-23 22:52:03
2616	5	528	2023-11-23 22:52:03	2023-11-23 22:52:03
2617	5	529	2023-11-23 22:52:03	2023-11-23 22:52:03
2618	5	530	2023-11-23 22:52:03	2023-11-23 22:52:03
2619	5	531	2023-11-23 22:52:03	2023-11-23 22:52:03
2620	5	547	2023-11-23 22:52:03	2023-11-23 22:52:03
2621	5	548	2023-11-23 22:52:03	2023-11-23 22:52:03
2622	5	549	2023-11-23 22:52:03	2023-11-23 22:52:03
2623	5	550	2023-11-23 22:52:03	2023-11-23 22:52:03
2624	5	553	2023-11-23 22:52:03	2023-11-23 22:52:03
2625	5	554	2023-11-23 22:52:03	2023-11-23 22:52:03
2626	5	586	2023-11-23 22:52:03	2023-11-23 22:52:03
2627	5	588	2023-11-23 22:52:03	2023-11-23 22:52:03
2628	5	589	2023-11-23 22:52:03	2023-11-23 22:52:03
2629	5	590	2023-11-23 22:52:03	2023-11-23 22:52:03
2630	5	591	2023-11-23 22:52:03	2023-11-23 22:52:03
2631	5	593	2023-11-23 22:52:03	2023-11-23 22:52:03
2632	5	616	2023-11-23 22:52:03	2023-11-23 22:52:03
2633	5	40	2023-11-23 22:52:04	2023-11-23 22:52:04
2634	5	44	2023-11-23 22:52:04	2023-11-23 22:52:04
2635	5	45	2023-11-23 22:52:04	2023-11-23 22:52:04
2636	5	46	2023-11-23 22:52:04	2023-11-23 22:52:04
2637	5	47	2023-11-23 22:52:04	2023-11-23 22:52:04
2638	5	48	2023-11-23 22:52:04	2023-11-23 22:52:04
2639	5	49	2023-11-23 22:52:04	2023-11-23 22:52:04
2640	5	50	2023-11-23 22:52:04	2023-11-23 22:52:04
2641	5	51	2023-11-23 22:52:04	2023-11-23 22:52:04
2642	5	52	2023-11-23 22:52:04	2023-11-23 22:52:04
2643	5	384	2023-11-23 22:52:04	2023-11-23 22:52:04
2644	5	41	2023-11-23 22:52:04	2023-11-23 22:52:04
2645	5	42	2023-11-23 22:52:04	2023-11-23 22:52:04
2646	5	43	2023-11-23 22:52:04	2023-11-23 22:52:04
2647	5	587	2023-11-23 22:52:04	2023-11-23 22:52:04
2648	5	592	2023-11-23 22:52:04	2023-11-23 22:52:04
2649	5	53	2023-11-23 22:52:04	2023-11-23 22:52:04
2650	5	54	2023-11-23 22:52:04	2023-11-23 22:52:04
2651	5	55	2023-11-23 22:52:04	2023-11-23 22:52:04
2652	5	56	2023-11-23 22:52:04	2023-11-23 22:52:04
2653	5	57	2023-11-23 22:52:04	2023-11-23 22:52:04
2654	5	58	2023-11-23 22:52:04	2023-11-23 22:52:04
2655	5	59	2023-11-23 22:52:04	2023-11-23 22:52:04
2656	5	60	2023-11-23 22:52:04	2023-11-23 22:52:04
2657	5	61	2023-11-23 22:52:04	2023-11-23 22:52:04
2658	5	62	2023-11-23 22:52:04	2023-11-23 22:52:04
2659	5	63	2023-11-23 22:52:04	2023-11-23 22:52:04
2660	5	64	2023-11-23 22:52:04	2023-11-23 22:52:04
2661	5	65	2023-11-23 22:52:04	2023-11-23 22:52:04
2662	5	66	2023-11-23 22:52:04	2023-11-23 22:52:04
2663	5	67	2023-11-23 22:52:04	2023-11-23 22:52:04
2664	5	68	2023-11-23 22:52:04	2023-11-23 22:52:04
2665	5	69	2023-11-23 22:52:04	2023-11-23 22:52:04
2666	5	70	2023-11-23 22:52:04	2023-11-23 22:52:04
2667	5	71	2023-11-23 22:52:04	2023-11-23 22:52:04
2668	5	72	2023-11-23 22:52:04	2023-11-23 22:52:04
2669	5	73	2023-11-23 22:52:04	2023-11-23 22:52:04
2670	5	74	2023-11-23 22:52:04	2023-11-23 22:52:04
2671	5	75	2023-11-23 22:52:04	2023-11-23 22:52:04
2672	5	76	2023-11-23 22:52:04	2023-11-23 22:52:04
2673	5	77	2023-11-23 22:52:04	2023-11-23 22:52:04
2674	5	432	2023-11-23 22:52:04	2023-11-23 22:52:04
2675	5	433	2023-11-23 22:52:04	2023-11-23 22:52:04
2676	5	434	2023-11-23 22:52:04	2023-11-23 22:52:04
2677	5	435	2023-11-23 22:52:04	2023-11-23 22:52:04
2678	5	436	2023-11-23 22:52:04	2023-11-23 22:52:04
2679	5	437	2023-11-23 22:52:04	2023-11-23 22:52:04
2680	5	438	2023-11-23 22:52:05	2023-11-23 22:52:05
2681	5	439	2023-11-23 22:52:05	2023-11-23 22:52:05
2682	5	440	2023-11-23 22:52:05	2023-11-23 22:52:05
2683	5	451	2023-11-23 22:52:05	2023-11-23 22:52:05
2684	5	477	2023-11-23 22:52:05	2023-11-23 22:52:05
2685	5	585	2023-11-23 22:52:05	2023-11-23 22:52:05
2686	5	78	2023-11-23 22:52:05	2023-11-23 22:52:05
2687	5	79	2023-11-23 22:52:05	2023-11-23 22:52:05
2688	5	80	2023-11-23 22:52:05	2023-11-23 22:52:05
2689	5	81	2023-11-23 22:52:05	2023-11-23 22:52:05
2690	5	82	2023-11-23 22:52:05	2023-11-23 22:52:05
2691	5	83	2023-11-23 22:52:05	2023-11-23 22:52:05
2692	5	84	2023-11-23 22:52:05	2023-11-23 22:52:05
2693	5	85	2023-11-23 22:52:05	2023-11-23 22:52:05
2694	5	86	2023-11-23 22:52:05	2023-11-23 22:52:05
2695	5	87	2023-11-23 22:52:05	2023-11-23 22:52:05
2696	5	88	2023-11-23 22:52:05	2023-11-23 22:52:05
2697	5	89	2023-11-23 22:52:05	2023-11-23 22:52:05
2698	5	90	2023-11-23 22:52:05	2023-11-23 22:52:05
2699	5	91	2023-11-23 22:52:05	2023-11-23 22:52:05
2700	5	92	2023-11-23 22:52:05	2023-11-23 22:52:05
2701	5	93	2023-11-23 22:52:05	2023-11-23 22:52:05
2702	5	94	2023-11-23 22:52:05	2023-11-23 22:52:05
2703	5	374	2023-11-23 22:52:05	2023-11-23 22:52:05
2704	5	375	2023-11-23 22:52:05	2023-11-23 22:52:05
2705	5	393	2023-11-23 22:52:05	2023-11-23 22:52:05
2706	5	394	2023-11-23 22:52:05	2023-11-23 22:52:05
2707	5	397	2023-11-23 22:52:05	2023-11-23 22:52:05
2708	5	398	2023-11-23 22:52:05	2023-11-23 22:52:05
2709	5	541	2023-11-23 22:52:05	2023-11-23 22:52:05
2710	5	543	2023-11-23 22:52:05	2023-11-23 22:52:05
2711	5	545	2023-11-23 22:52:05	2023-11-23 22:52:05
2712	5	571	2023-11-23 22:52:05	2023-11-23 22:52:05
2713	5	95	2023-11-23 22:52:05	2023-11-23 22:52:05
2714	5	96	2023-11-23 22:52:05	2023-11-23 22:52:05
2715	5	97	2023-11-23 22:52:05	2023-11-23 22:52:05
2716	5	98	2023-11-23 22:52:05	2023-11-23 22:52:05
2717	5	99	2023-11-23 22:52:05	2023-11-23 22:52:05
2718	5	100	2023-11-23 22:52:05	2023-11-23 22:52:05
2719	5	101	2023-11-23 22:52:05	2023-11-23 22:52:05
2720	5	102	2023-11-23 22:52:05	2023-11-23 22:52:05
2721	5	103	2023-11-23 22:52:05	2023-11-23 22:52:05
2722	5	104	2023-11-23 22:52:05	2023-11-23 22:52:05
2723	5	361	2023-11-23 22:52:05	2023-11-23 22:52:05
2724	5	362	2023-11-23 22:52:05	2023-11-23 22:52:05
2725	5	363	2023-11-23 22:52:05	2023-11-23 22:52:05
2726	5	364	2023-11-23 22:52:05	2023-11-23 22:52:05
2727	5	366	2023-11-23 22:52:05	2023-11-23 22:52:05
2728	5	376	2023-11-23 22:52:05	2023-11-23 22:52:05
2729	5	377	2023-11-23 22:52:05	2023-11-23 22:52:05
2730	5	105	2023-11-23 22:52:05	2023-11-23 22:52:05
2731	5	106	2023-11-23 22:52:05	2023-11-23 22:52:05
2732	5	107	2023-11-23 22:52:05	2023-11-23 22:52:05
2733	5	108	2023-11-23 22:52:05	2023-11-23 22:52:05
2734	5	109	2023-11-23 22:52:05	2023-11-23 22:52:05
2735	5	110	2023-11-23 22:52:05	2023-11-23 22:52:05
2736	5	111	2023-11-23 22:52:05	2023-11-23 22:52:05
2737	5	112	2023-11-23 22:52:05	2023-11-23 22:52:05
2738	5	113	2023-11-23 22:52:05	2023-11-23 22:52:05
2739	5	114	2023-11-23 22:52:05	2023-11-23 22:52:05
2740	5	115	2023-11-23 22:52:05	2023-11-23 22:52:05
2741	5	116	2023-11-23 22:52:05	2023-11-23 22:52:05
2742	5	117	2023-11-23 22:52:05	2023-11-23 22:52:05
2743	5	428	2023-11-23 22:52:06	2023-11-23 22:52:06
2744	5	429	2023-11-23 22:52:06	2023-11-23 22:52:06
2745	5	430	2023-11-23 22:52:06	2023-11-23 22:52:06
2746	5	431	2023-11-23 22:52:06	2023-11-23 22:52:06
2747	5	444	2023-11-23 22:52:06	2023-11-23 22:52:06
2748	5	445	2023-11-23 22:52:06	2023-11-23 22:52:06
2749	5	446	2023-11-23 22:52:06	2023-11-23 22:52:06
2750	5	447	2023-11-23 22:52:06	2023-11-23 22:52:06
2751	5	507	2023-11-23 22:52:06	2023-11-23 22:52:06
2752	5	508	2023-11-23 22:52:06	2023-11-23 22:52:06
2753	5	532	2023-11-23 22:52:06	2023-11-23 22:52:06
2754	5	540	2023-11-23 22:52:06	2023-11-23 22:52:06
2755	5	542	2023-11-23 22:52:06	2023-11-23 22:52:06
2756	5	544	2023-11-23 22:52:06	2023-11-23 22:52:06
2757	5	564	2023-11-23 22:52:06	2023-11-23 22:52:06
2758	5	565	2023-11-23 22:52:06	2023-11-23 22:52:06
2759	5	566	2023-11-23 22:52:06	2023-11-23 22:52:06
2760	5	118	2023-11-23 22:52:06	2023-11-23 22:52:06
2761	5	119	2023-11-23 22:52:06	2023-11-23 22:52:06
2762	5	120	2023-11-23 22:52:06	2023-11-23 22:52:06
2763	5	121	2023-11-23 22:52:06	2023-11-23 22:52:06
2764	5	122	2023-11-23 22:52:06	2023-11-23 22:52:06
2765	5	123	2023-11-23 22:52:06	2023-11-23 22:52:06
2766	5	124	2023-11-23 22:52:06	2023-11-23 22:52:06
2767	5	125	2023-11-23 22:52:06	2023-11-23 22:52:06
2768	5	126	2023-11-23 22:52:06	2023-11-23 22:52:06
2769	5	127	2023-11-23 22:52:06	2023-11-23 22:52:06
2770	5	128	2023-11-23 22:52:06	2023-11-23 22:52:06
2771	5	129	2023-11-23 22:52:06	2023-11-23 22:52:06
2772	5	130	2023-11-23 22:52:06	2023-11-23 22:52:06
2773	5	329	2023-11-23 22:52:06	2023-11-23 22:52:06
2774	5	330	2023-11-23 22:52:06	2023-11-23 22:52:06
2775	5	331	2023-11-23 22:52:06	2023-11-23 22:52:06
2776	5	332	2023-11-23 22:52:06	2023-11-23 22:52:06
2777	5	333	2023-11-23 22:52:06	2023-11-23 22:52:06
2778	5	334	2023-11-23 22:52:06	2023-11-23 22:52:06
2779	5	131	2023-11-23 22:52:06	2023-11-23 22:52:06
2780	5	132	2023-11-23 22:52:06	2023-11-23 22:52:06
2781	5	133	2023-11-23 22:52:06	2023-11-23 22:52:06
2782	5	134	2023-11-23 22:52:06	2023-11-23 22:52:06
2783	5	135	2023-11-23 22:52:06	2023-11-23 22:52:06
2784	5	136	2023-11-23 22:52:06	2023-11-23 22:52:06
2785	5	137	2023-11-23 22:52:06	2023-11-23 22:52:06
2786	5	138	2023-11-23 22:52:06	2023-11-23 22:52:06
2787	5	139	2023-11-23 22:52:06	2023-11-23 22:52:06
2788	5	140	2023-11-23 22:52:06	2023-11-23 22:52:06
2789	5	141	2023-11-23 22:52:06	2023-11-23 22:52:06
2790	5	142	2023-11-23 22:52:06	2023-11-23 22:52:06
2791	5	143	2023-11-23 22:52:06	2023-11-23 22:52:06
2792	5	144	2023-11-23 22:52:06	2023-11-23 22:52:06
2793	5	145	2023-11-23 22:52:06	2023-11-23 22:52:06
2794	5	146	2023-11-23 22:52:06	2023-11-23 22:52:06
2795	5	147	2023-11-23 22:52:06	2023-11-23 22:52:06
2796	5	148	2023-11-23 22:52:06	2023-11-23 22:52:06
2797	5	149	2023-11-23 22:52:06	2023-11-23 22:52:06
2798	5	150	2023-11-23 22:52:06	2023-11-23 22:52:06
2799	5	151	2023-11-23 22:52:06	2023-11-23 22:52:06
2800	5	152	2023-11-23 22:52:06	2023-11-23 22:52:06
2801	5	153	2023-11-23 22:52:06	2023-11-23 22:52:06
2802	5	154	2023-11-23 22:52:06	2023-11-23 22:52:06
2803	5	155	2023-11-23 22:52:06	2023-11-23 22:52:06
2804	5	156	2023-11-23 22:52:06	2023-11-23 22:52:06
2805	5	157	2023-11-23 22:52:06	2023-11-23 22:52:06
2806	5	158	2023-11-23 22:52:06	2023-11-23 22:52:06
2807	5	159	2023-11-23 22:52:06	2023-11-23 22:52:06
2808	5	160	2023-11-23 22:52:06	2023-11-23 22:52:06
2809	5	161	2023-11-23 22:52:06	2023-11-23 22:52:06
2810	5	162	2023-11-23 22:52:06	2023-11-23 22:52:06
2811	5	163	2023-11-23 22:52:06	2023-11-23 22:52:06
2812	5	164	2023-11-23 22:52:06	2023-11-23 22:52:06
2813	5	165	2023-11-23 22:52:06	2023-11-23 22:52:06
2814	5	166	2023-11-23 22:52:06	2023-11-23 22:52:06
2815	5	167	2023-11-23 22:52:06	2023-11-23 22:52:06
2816	5	168	2023-11-23 22:52:06	2023-11-23 22:52:06
2817	5	169	2023-11-23 22:52:06	2023-11-23 22:52:06
2818	5	170	2023-11-23 22:52:06	2023-11-23 22:52:06
2819	5	171	2023-11-23 22:52:06	2023-11-23 22:52:06
2820	5	172	2023-11-23 22:52:06	2023-11-23 22:52:06
2821	5	173	2023-11-23 22:52:06	2023-11-23 22:52:06
2822	5	426	2023-11-23 22:52:06	2023-11-23 22:52:06
2823	5	341	2023-11-23 22:52:06	2023-11-23 22:52:06
2824	5	342	2023-11-23 22:52:06	2023-11-23 22:52:06
2825	5	343	2023-11-23 22:52:06	2023-11-23 22:52:06
2826	5	346	2023-11-23 22:52:06	2023-11-23 22:52:06
2827	5	347	2023-11-23 22:52:06	2023-11-23 22:52:06
2828	5	348	2023-11-23 22:52:06	2023-11-23 22:52:06
2829	5	349	2023-11-23 22:52:06	2023-11-23 22:52:06
2830	5	536	2023-11-23 22:52:06	2023-11-23 22:52:06
2831	5	537	2023-11-23 22:52:06	2023-11-23 22:52:06
2832	5	538	2023-11-23 22:52:06	2023-11-23 22:52:06
2833	5	560	2023-11-23 22:52:06	2023-11-23 22:52:06
2834	5	561	2023-11-23 22:52:06	2023-11-23 22:52:06
2835	5	562	2023-11-23 22:52:06	2023-11-23 22:52:06
2836	5	563	2023-11-23 22:52:06	2023-11-23 22:52:06
2837	5	174	2023-11-23 22:52:06	2023-11-23 22:52:06
2838	5	176	2023-11-23 22:52:07	2023-11-23 22:52:07
2839	5	177	2023-11-23 22:52:07	2023-11-23 22:52:07
2840	5	178	2023-11-23 22:52:07	2023-11-23 22:52:07
2841	5	179	2023-11-23 22:52:07	2023-11-23 22:52:07
2842	5	180	2023-11-23 22:52:07	2023-11-23 22:52:07
2843	5	181	2023-11-23 22:52:07	2023-11-23 22:52:07
2844	5	182	2023-11-23 22:52:07	2023-11-23 22:52:07
2845	5	183	2023-11-23 22:52:07	2023-11-23 22:52:07
2846	5	184	2023-11-23 22:52:07	2023-11-23 22:52:07
2847	5	185	2023-11-23 22:52:07	2023-11-23 22:52:07
2848	5	186	2023-11-23 22:52:07	2023-11-23 22:52:07
2849	5	187	2023-11-23 22:52:07	2023-11-23 22:52:07
2850	5	188	2023-11-23 22:52:07	2023-11-23 22:52:07
2851	5	189	2023-11-23 22:52:07	2023-11-23 22:52:07
2852	5	190	2023-11-23 22:52:07	2023-11-23 22:52:07
2853	5	191	2023-11-23 22:52:07	2023-11-23 22:52:07
2854	5	192	2023-11-23 22:52:07	2023-11-23 22:52:07
2855	5	193	2023-11-23 22:52:07	2023-11-23 22:52:07
2856	5	194	2023-11-23 22:52:07	2023-11-23 22:52:07
2857	5	195	2023-11-23 22:52:07	2023-11-23 22:52:07
2858	5	196	2023-11-23 22:52:07	2023-11-23 22:52:07
2859	5	197	2023-11-23 22:52:07	2023-11-23 22:52:07
2860	5	198	2023-11-23 22:52:07	2023-11-23 22:52:07
2861	5	199	2023-11-23 22:52:07	2023-11-23 22:52:07
2862	5	200	2023-11-23 22:52:07	2023-11-23 22:52:07
2863	5	201	2023-11-23 22:52:07	2023-11-23 22:52:07
2864	5	202	2023-11-23 22:52:07	2023-11-23 22:52:07
2865	5	203	2023-11-23 22:52:07	2023-11-23 22:52:07
2866	5	204	2023-11-23 22:52:07	2023-11-23 22:52:07
2867	5	205	2023-11-23 22:52:07	2023-11-23 22:52:07
2868	5	206	2023-11-23 22:52:07	2023-11-23 22:52:07
2869	5	207	2023-11-23 22:52:07	2023-11-23 22:52:07
2870	5	208	2023-11-23 22:52:07	2023-11-23 22:52:07
2871	5	209	2023-11-23 22:52:07	2023-11-23 22:52:07
2872	5	210	2023-11-23 22:52:07	2023-11-23 22:52:07
2873	5	211	2023-11-23 22:52:07	2023-11-23 22:52:07
2874	5	212	2023-11-23 22:52:07	2023-11-23 22:52:07
2875	5	213	2023-11-23 22:52:07	2023-11-23 22:52:07
2876	5	215	2023-11-23 22:52:07	2023-11-23 22:52:07
2877	5	335	2023-11-23 22:52:07	2023-11-23 22:52:07
2878	5	336	2023-11-23 22:52:07	2023-11-23 22:52:07
2879	5	337	2023-11-23 22:52:07	2023-11-23 22:52:07
2880	5	338	2023-11-23 22:52:07	2023-11-23 22:52:07
2881	5	381	2023-11-23 22:52:07	2023-11-23 22:52:07
2882	5	382	2023-11-23 22:52:07	2023-11-23 22:52:07
2883	5	383	2023-11-23 22:52:07	2023-11-23 22:52:07
2884	5	175	2023-11-23 22:52:07	2023-11-23 22:52:07
2885	5	214	2023-11-23 22:52:07	2023-11-23 22:52:07
2886	5	216	2023-11-23 22:52:07	2023-11-23 22:52:07
2887	5	217	2023-11-23 22:52:07	2023-11-23 22:52:07
2888	5	218	2023-11-23 22:52:07	2023-11-23 22:52:07
2889	5	219	2023-11-23 22:52:07	2023-11-23 22:52:07
2890	5	220	2023-11-23 22:52:07	2023-11-23 22:52:07
2891	5	221	2023-11-23 22:52:07	2023-11-23 22:52:07
2892	5	222	2023-11-23 22:52:07	2023-11-23 22:52:07
2893	5	223	2023-11-23 22:52:07	2023-11-23 22:52:07
2894	5	533	2023-11-23 22:52:07	2023-11-23 22:52:07
2895	5	534	2023-11-23 22:52:07	2023-11-23 22:52:07
2896	5	539	2023-11-23 22:52:07	2023-11-23 22:52:07
2897	5	535	2023-11-23 22:52:07	2023-11-23 22:52:07
2898	5	558	2023-11-23 22:52:07	2023-11-23 22:52:07
2899	5	559	2023-11-23 22:52:07	2023-11-23 22:52:07
2900	6	14	2024-12-04 21:52:57	2024-12-04 21:52:57
2901	6	15	2024-12-04 21:52:57	2024-12-04 21:52:57
2902	6	16	2024-12-04 21:52:57	2024-12-04 21:52:57
2903	6	17	2024-12-04 21:52:57	2024-12-04 21:52:57
2904	6	18	2024-12-04 21:52:57	2024-12-04 21:52:57
2905	6	19	2024-12-04 21:52:57	2024-12-04 21:52:57
2906	6	20	2024-12-04 21:52:57	2024-12-04 21:52:57
2907	6	21	2024-12-04 21:52:57	2024-12-04 21:52:57
2908	6	22	2024-12-04 21:52:57	2024-12-04 21:52:57
2909	6	23	2024-12-04 21:52:57	2024-12-04 21:52:57
2910	6	448	2024-12-04 21:52:57	2024-12-04 21:52:57
2911	6	441	2024-12-04 21:52:57	2024-12-04 21:52:57
2912	6	442	2024-12-04 21:52:57	2024-12-04 21:52:57
2913	6	546	2024-12-04 21:52:57	2024-12-04 21:52:57
2914	6	584	2024-12-04 21:52:57	2024-12-04 21:52:57
2915	6	614	2024-12-04 21:52:57	2024-12-04 21:52:57
2916	6	615	2024-12-04 21:52:57	2024-12-04 21:52:57
2917	6	617	2024-12-04 21:52:57	2024-12-04 21:52:57
2918	6	618	2024-12-04 21:52:57	2024-12-04 21:52:57
2919	6	224	2024-12-04 21:52:57	2024-12-04 21:52:57
2920	6	225	2024-12-04 21:52:57	2024-12-04 21:52:57
2921	6	226	2024-12-04 21:52:57	2024-12-04 21:52:57
2922	6	227	2024-12-04 21:52:57	2024-12-04 21:52:57
2923	6	228	2024-12-04 21:52:57	2024-12-04 21:52:57
2924	6	229	2024-12-04 21:52:57	2024-12-04 21:52:57
2925	6	230	2024-12-04 21:52:57	2024-12-04 21:52:57
2926	6	231	2024-12-04 21:52:57	2024-12-04 21:52:57
2927	6	232	2024-12-04 21:52:57	2024-12-04 21:52:57
2928	6	233	2024-12-04 21:52:57	2024-12-04 21:52:57
2929	6	359	2024-12-04 21:52:57	2024-12-04 21:52:57
2930	6	360	2024-12-04 21:52:57	2024-12-04 21:52:57
2931	6	234	2024-12-04 21:52:57	2024-12-04 21:52:57
2932	6	235	2024-12-04 21:52:57	2024-12-04 21:52:57
2933	6	236	2024-12-04 21:52:57	2024-12-04 21:52:57
2934	6	237	2024-12-04 21:52:57	2024-12-04 21:52:57
2935	6	238	2024-12-04 21:52:57	2024-12-04 21:52:57
2936	6	239	2024-12-04 21:52:57	2024-12-04 21:52:57
2937	6	240	2024-12-04 21:52:57	2024-12-04 21:52:57
2938	6	241	2024-12-04 21:52:57	2024-12-04 21:52:57
2939	6	242	2024-12-04 21:52:57	2024-12-04 21:52:57
2940	6	243	2024-12-04 21:52:57	2024-12-04 21:52:57
2941	6	244	2024-12-04 21:52:57	2024-12-04 21:52:57
2942	6	245	2024-12-04 21:52:57	2024-12-04 21:52:57
2943	6	246	2024-12-04 21:52:57	2024-12-04 21:52:57
2944	6	247	2024-12-04 21:52:57	2024-12-04 21:52:57
2945	6	248	2024-12-04 21:52:57	2024-12-04 21:52:57
2946	6	249	2024-12-04 21:52:57	2024-12-04 21:52:57
2947	6	250	2024-12-04 21:52:57	2024-12-04 21:52:57
2948	6	251	2024-12-04 21:52:58	2024-12-04 21:52:58
2949	6	252	2024-12-04 21:52:58	2024-12-04 21:52:58
2950	6	253	2024-12-04 21:52:58	2024-12-04 21:52:58
2951	6	254	2024-12-04 21:52:58	2024-12-04 21:52:58
2952	6	255	2024-12-04 21:52:58	2024-12-04 21:52:58
2953	6	256	2024-12-04 21:52:58	2024-12-04 21:52:58
2954	6	257	2024-12-04 21:52:58	2024-12-04 21:52:58
2955	6	258	2024-12-04 21:52:58	2024-12-04 21:52:58
2956	6	259	2024-12-04 21:52:58	2024-12-04 21:52:58
2957	6	260	2024-12-04 21:52:58	2024-12-04 21:52:58
2958	6	261	2024-12-04 21:52:58	2024-12-04 21:52:58
2959	6	262	2024-12-04 21:52:58	2024-12-04 21:52:58
2960	6	263	2024-12-04 21:52:58	2024-12-04 21:52:58
2961	6	264	2024-12-04 21:52:58	2024-12-04 21:52:58
2962	6	509	2024-12-04 21:52:58	2024-12-04 21:52:58
2963	6	265	2024-12-04 21:52:58	2024-12-04 21:52:58
2964	6	266	2024-12-04 21:52:58	2024-12-04 21:52:58
2965	6	267	2024-12-04 21:52:58	2024-12-04 21:52:58
2966	6	268	2024-12-04 21:52:58	2024-12-04 21:52:58
2967	6	269	2024-12-04 21:52:58	2024-12-04 21:52:58
2968	6	270	2024-12-04 21:52:58	2024-12-04 21:52:58
2969	6	271	2024-12-04 21:52:58	2024-12-04 21:52:58
2970	6	272	2024-12-04 21:52:58	2024-12-04 21:52:58
2971	6	273	2024-12-04 21:52:58	2024-12-04 21:52:58
2972	6	274	2024-12-04 21:52:58	2024-12-04 21:52:58
2973	6	275	2024-12-04 21:52:58	2024-12-04 21:52:58
2974	6	276	2024-12-04 21:52:58	2024-12-04 21:52:58
2975	6	277	2024-12-04 21:52:58	2024-12-04 21:52:58
2976	6	278	2024-12-04 21:52:58	2024-12-04 21:52:58
2977	6	279	2024-12-04 21:52:58	2024-12-04 21:52:58
2978	6	280	2024-12-04 21:52:58	2024-12-04 21:52:58
2979	6	281	2024-12-04 21:52:58	2024-12-04 21:52:58
2980	6	282	2024-12-04 21:52:58	2024-12-04 21:52:58
2981	6	283	2024-12-04 21:52:58	2024-12-04 21:52:58
2982	6	284	2024-12-04 21:52:58	2024-12-04 21:52:58
2983	6	285	2024-12-04 21:52:58	2024-12-04 21:52:58
2984	6	286	2024-12-04 21:52:58	2024-12-04 21:52:58
2985	6	287	2024-12-04 21:52:58	2024-12-04 21:52:58
2986	6	288	2024-12-04 21:52:58	2024-12-04 21:52:58
2987	6	289	2024-12-04 21:52:58	2024-12-04 21:52:58
2988	6	294	2024-12-04 21:52:58	2024-12-04 21:52:58
2989	6	295	2024-12-04 21:52:58	2024-12-04 21:52:58
2990	6	296	2024-12-04 21:52:58	2024-12-04 21:52:58
2991	6	297	2024-12-04 21:52:58	2024-12-04 21:52:58
2992	6	500	2024-12-04 21:52:58	2024-12-04 21:52:58
2993	6	501	2024-12-04 21:52:58	2024-12-04 21:52:58
2994	6	502	2024-12-04 21:52:58	2024-12-04 21:52:58
2995	6	510	2024-12-04 21:52:58	2024-12-04 21:52:58
2996	6	511	2024-12-04 21:52:58	2024-12-04 21:52:58
2997	6	512	2024-12-04 21:52:58	2024-12-04 21:52:58
2998	6	567	2024-12-04 21:52:58	2024-12-04 21:52:58
2999	6	594	2024-12-04 21:52:58	2024-12-04 21:52:58
3000	6	679	2024-12-04 21:52:58	2024-12-04 21:52:58
3001	6	298	2024-12-04 21:52:58	2024-12-04 21:52:58
3002	6	299	2024-12-04 21:52:58	2024-12-04 21:52:58
3003	6	26	2024-12-04 21:52:58	2024-12-04 21:52:58
3004	6	28	2024-12-04 21:52:58	2024-12-04 21:52:58
3005	6	29	2024-12-04 21:52:58	2024-12-04 21:52:58
3006	6	30	2024-12-04 21:52:58	2024-12-04 21:52:58
3007	6	31	2024-12-04 21:52:58	2024-12-04 21:52:58
3008	6	32	2024-12-04 21:52:58	2024-12-04 21:52:58
3009	6	33	2024-12-04 21:52:58	2024-12-04 21:52:58
3010	6	367	2024-12-04 21:52:58	2024-12-04 21:52:58
3011	6	368	2024-12-04 21:52:58	2024-12-04 21:52:58
3012	6	369	2024-12-04 21:52:58	2024-12-04 21:52:58
3013	6	370	2024-12-04 21:52:58	2024-12-04 21:52:58
3014	6	371	2024-12-04 21:52:58	2024-12-04 21:52:58
3015	6	373	2024-12-04 21:52:58	2024-12-04 21:52:58
3016	6	395	2024-12-04 21:52:58	2024-12-04 21:52:58
3017	6	39	2024-12-04 21:52:58	2024-12-04 21:52:58
3018	6	379	2024-12-04 21:52:58	2024-12-04 21:52:58
3019	6	380	2024-12-04 21:52:58	2024-12-04 21:52:58
3020	6	34	2024-12-04 21:52:58	2024-12-04 21:52:58
3021	6	35	2024-12-04 21:52:58	2024-12-04 21:52:58
3022	6	36	2024-12-04 21:52:58	2024-12-04 21:52:58
3023	6	37	2024-12-04 21:52:58	2024-12-04 21:52:58
3024	6	38	2024-12-04 21:52:58	2024-12-04 21:52:58
3025	6	424	2024-12-04 21:52:58	2024-12-04 21:52:58
3026	6	425	2024-12-04 21:52:58	2024-12-04 21:52:58
3027	6	427	2024-12-04 21:52:58	2024-12-04 21:52:58
3028	6	443	2024-12-04 21:52:58	2024-12-04 21:52:58
3029	6	449	2024-12-04 21:52:58	2024-12-04 21:52:58
3030	6	453	2024-12-04 21:52:58	2024-12-04 21:52:58
3031	6	454	2024-12-04 21:52:58	2024-12-04 21:52:58
3032	6	464	2024-12-04 21:52:58	2024-12-04 21:52:58
3033	6	450	2024-12-04 21:52:58	2024-12-04 21:52:58
3034	6	498	2024-12-04 21:52:58	2024-12-04 21:52:58
3035	6	499	2024-12-04 21:52:58	2024-12-04 21:52:58
3036	6	513	2024-12-04 21:52:58	2024-12-04 21:52:58
3037	6	514	2024-12-04 21:52:59	2024-12-04 21:52:59
3038	6	515	2024-12-04 21:52:59	2024-12-04 21:52:59
3039	6	516	2024-12-04 21:52:59	2024-12-04 21:52:59
3040	6	517	2024-12-04 21:52:59	2024-12-04 21:52:59
3041	6	518	2024-12-04 21:52:59	2024-12-04 21:52:59
3042	6	520	2024-12-04 21:52:59	2024-12-04 21:52:59
3043	6	521	2024-12-04 21:52:59	2024-12-04 21:52:59
3044	6	522	2024-12-04 21:52:59	2024-12-04 21:52:59
3045	6	523	2024-12-04 21:52:59	2024-12-04 21:52:59
3046	6	531	2024-12-04 21:52:59	2024-12-04 21:52:59
3047	6	547	2024-12-04 21:52:59	2024-12-04 21:52:59
3048	6	548	2024-12-04 21:52:59	2024-12-04 21:52:59
3049	6	549	2024-12-04 21:52:59	2024-12-04 21:52:59
3050	6	550	2024-12-04 21:52:59	2024-12-04 21:52:59
3051	6	553	2024-12-04 21:52:59	2024-12-04 21:52:59
3052	6	554	2024-12-04 21:52:59	2024-12-04 21:52:59
3053	6	586	2024-12-04 21:52:59	2024-12-04 21:52:59
3054	6	593	2024-12-04 21:52:59	2024-12-04 21:52:59
3055	6	652	2024-12-04 21:52:59	2024-12-04 21:52:59
3056	6	653	2024-12-04 21:52:59	2024-12-04 21:52:59
3057	6	654	2024-12-04 21:52:59	2024-12-04 21:52:59
3058	6	655	2024-12-04 21:52:59	2024-12-04 21:52:59
3059	6	656	2024-12-04 21:52:59	2024-12-04 21:52:59
3060	6	657	2024-12-04 21:52:59	2024-12-04 21:52:59
3061	6	658	2024-12-04 21:52:59	2024-12-04 21:52:59
3062	6	682	2024-12-04 21:52:59	2024-12-04 21:52:59
3063	6	683	2024-12-04 21:52:59	2024-12-04 21:52:59
3064	6	684	2024-12-04 21:52:59	2024-12-04 21:52:59
3065	6	685	2024-12-04 21:52:59	2024-12-04 21:52:59
3066	6	686	2024-12-04 21:52:59	2024-12-04 21:52:59
3067	6	687	2024-12-04 21:52:59	2024-12-04 21:52:59
3068	6	688	2024-12-04 21:52:59	2024-12-04 21:52:59
3069	6	27	2024-12-04 21:52:59	2024-12-04 21:52:59
3070	6	692	2024-12-04 21:52:59	2024-12-04 21:52:59
3071	6	40	2024-12-04 21:52:59	2024-12-04 21:52:59
3072	6	44	2024-12-04 21:52:59	2024-12-04 21:52:59
3073	6	45	2024-12-04 21:52:59	2024-12-04 21:52:59
3074	6	46	2024-12-04 21:52:59	2024-12-04 21:52:59
3075	6	47	2024-12-04 21:52:59	2024-12-04 21:52:59
3076	6	48	2024-12-04 21:52:59	2024-12-04 21:52:59
3077	6	49	2024-12-04 21:52:59	2024-12-04 21:52:59
3078	6	50	2024-12-04 21:52:59	2024-12-04 21:52:59
3079	6	51	2024-12-04 21:52:59	2024-12-04 21:52:59
3080	6	52	2024-12-04 21:52:59	2024-12-04 21:52:59
3081	6	372	2024-12-04 21:52:59	2024-12-04 21:52:59
3082	6	384	2024-12-04 21:52:59	2024-12-04 21:52:59
3083	6	41	2024-12-04 21:52:59	2024-12-04 21:52:59
3084	6	42	2024-12-04 21:52:59	2024-12-04 21:52:59
3085	6	43	2024-12-04 21:52:59	2024-12-04 21:52:59
3086	6	529	2024-12-04 21:52:59	2024-12-04 21:52:59
3087	6	526	2024-12-04 21:52:59	2024-12-04 21:52:59
3088	6	525	2024-12-04 21:52:59	2024-12-04 21:52:59
3089	6	527	2024-12-04 21:52:59	2024-12-04 21:52:59
3090	6	530	2024-12-04 21:52:59	2024-12-04 21:52:59
3091	6	519	2024-12-04 21:52:59	2024-12-04 21:52:59
3092	6	587	2024-12-04 21:52:59	2024-12-04 21:52:59
3093	6	592	2024-12-04 21:52:59	2024-12-04 21:52:59
3094	6	648	2024-12-04 21:52:59	2024-12-04 21:52:59
3095	6	524	2024-12-04 21:52:59	2024-12-04 21:52:59
3096	6	588	2024-12-04 21:52:59	2024-12-04 21:52:59
3097	6	616	2024-12-04 21:52:59	2024-12-04 21:52:59
3098	6	452	2024-12-04 21:52:59	2024-12-04 21:52:59
3099	6	589	2024-12-04 21:52:59	2024-12-04 21:52:59
3100	6	665	2024-12-04 21:52:59	2024-12-04 21:52:59
3101	6	693	2024-12-04 21:52:59	2024-12-04 21:52:59
3102	6	694	2024-12-04 21:52:59	2024-12-04 21:52:59
3103	6	695	2024-12-04 21:52:59	2024-12-04 21:52:59
3104	6	53	2024-12-04 21:52:59	2024-12-04 21:52:59
3105	6	54	2024-12-04 21:52:59	2024-12-04 21:52:59
3106	6	55	2024-12-04 21:52:59	2024-12-04 21:52:59
3107	6	56	2024-12-04 21:52:59	2024-12-04 21:52:59
3108	6	57	2024-12-04 21:52:59	2024-12-04 21:52:59
3109	6	58	2024-12-04 21:52:59	2024-12-04 21:52:59
3110	6	59	2024-12-04 21:52:59	2024-12-04 21:52:59
3111	6	60	2024-12-04 21:52:59	2024-12-04 21:52:59
3112	6	61	2024-12-04 21:52:59	2024-12-04 21:52:59
3113	6	62	2024-12-04 21:52:59	2024-12-04 21:52:59
3114	6	63	2024-12-04 21:52:59	2024-12-04 21:52:59
3115	6	64	2024-12-04 21:52:59	2024-12-04 21:52:59
3116	6	65	2024-12-04 21:52:59	2024-12-04 21:52:59
3117	6	66	2024-12-04 21:52:59	2024-12-04 21:52:59
3118	6	67	2024-12-04 21:52:59	2024-12-04 21:52:59
3119	6	68	2024-12-04 21:52:59	2024-12-04 21:52:59
3120	6	69	2024-12-04 21:52:59	2024-12-04 21:52:59
3121	6	70	2024-12-04 21:52:59	2024-12-04 21:52:59
3122	6	71	2024-12-04 21:52:59	2024-12-04 21:52:59
3123	6	72	2024-12-04 21:52:59	2024-12-04 21:52:59
3124	6	73	2024-12-04 21:52:59	2024-12-04 21:52:59
3125	6	74	2024-12-04 21:52:59	2024-12-04 21:52:59
3126	6	75	2024-12-04 21:52:59	2024-12-04 21:52:59
3127	6	76	2024-12-04 21:52:59	2024-12-04 21:52:59
3128	6	77	2024-12-04 21:52:59	2024-12-04 21:52:59
3129	6	451	2024-12-04 21:52:59	2024-12-04 21:52:59
3130	6	477	2024-12-04 21:52:59	2024-12-04 21:52:59
3131	6	585	2024-12-04 21:52:59	2024-12-04 21:52:59
3132	6	669	2024-12-04 21:52:59	2024-12-04 21:52:59
3133	6	670	2024-12-04 21:52:59	2024-12-04 21:52:59
3134	6	671	2024-12-04 21:52:59	2024-12-04 21:52:59
3135	6	672	2024-12-04 21:52:59	2024-12-04 21:52:59
3136	6	680	2024-12-04 21:52:59	2024-12-04 21:52:59
3137	6	681	2024-12-04 21:52:59	2024-12-04 21:52:59
3138	6	689	2024-12-04 21:52:59	2024-12-04 21:52:59
3139	6	78	2024-12-04 21:52:59	2024-12-04 21:52:59
3140	6	79	2024-12-04 21:52:59	2024-12-04 21:52:59
3141	6	80	2024-12-04 21:52:59	2024-12-04 21:52:59
3142	6	81	2024-12-04 21:52:59	2024-12-04 21:52:59
3143	6	82	2024-12-04 21:52:59	2024-12-04 21:52:59
3144	6	83	2024-12-04 21:52:59	2024-12-04 21:52:59
3145	6	84	2024-12-04 21:53:00	2024-12-04 21:53:00
3146	6	85	2024-12-04 21:53:00	2024-12-04 21:53:00
3147	6	86	2024-12-04 21:53:00	2024-12-04 21:53:00
3148	6	87	2024-12-04 21:53:00	2024-12-04 21:53:00
3149	6	88	2024-12-04 21:53:00	2024-12-04 21:53:00
3150	6	89	2024-12-04 21:53:00	2024-12-04 21:53:00
3151	6	90	2024-12-04 21:53:00	2024-12-04 21:53:00
3152	6	91	2024-12-04 21:53:00	2024-12-04 21:53:00
3153	6	92	2024-12-04 21:53:00	2024-12-04 21:53:00
3154	6	93	2024-12-04 21:53:00	2024-12-04 21:53:00
3155	6	94	2024-12-04 21:53:00	2024-12-04 21:53:00
3156	6	374	2024-12-04 21:53:00	2024-12-04 21:53:00
3157	6	375	2024-12-04 21:53:00	2024-12-04 21:53:00
3158	6	397	2024-12-04 21:53:00	2024-12-04 21:53:00
3159	6	398	2024-12-04 21:53:00	2024-12-04 21:53:00
3160	6	541	2024-12-04 21:53:00	2024-12-04 21:53:00
3161	6	543	2024-12-04 21:53:00	2024-12-04 21:53:00
3162	6	545	2024-12-04 21:53:00	2024-12-04 21:53:00
3163	6	95	2024-12-04 21:53:00	2024-12-04 21:53:00
3164	6	96	2024-12-04 21:53:00	2024-12-04 21:53:00
3165	6	97	2024-12-04 21:53:00	2024-12-04 21:53:00
3166	6	98	2024-12-04 21:53:00	2024-12-04 21:53:00
3167	6	99	2024-12-04 21:53:00	2024-12-04 21:53:00
3168	6	100	2024-12-04 21:53:00	2024-12-04 21:53:00
3169	6	101	2024-12-04 21:53:00	2024-12-04 21:53:00
3170	6	102	2024-12-04 21:53:00	2024-12-04 21:53:00
3171	6	103	2024-12-04 21:53:00	2024-12-04 21:53:00
3172	6	104	2024-12-04 21:53:00	2024-12-04 21:53:00
3173	6	361	2024-12-04 21:53:00	2024-12-04 21:53:00
3174	6	362	2024-12-04 21:53:00	2024-12-04 21:53:00
3175	6	363	2024-12-04 21:53:00	2024-12-04 21:53:00
3176	6	364	2024-12-04 21:53:00	2024-12-04 21:53:00
3177	6	366	2024-12-04 21:53:00	2024-12-04 21:53:00
3178	6	376	2024-12-04 21:53:00	2024-12-04 21:53:00
3179	6	377	2024-12-04 21:53:00	2024-12-04 21:53:00
3180	6	105	2024-12-04 21:53:00	2024-12-04 21:53:00
3181	6	106	2024-12-04 21:53:00	2024-12-04 21:53:00
3182	6	107	2024-12-04 21:53:00	2024-12-04 21:53:00
3183	6	108	2024-12-04 21:53:00	2024-12-04 21:53:00
3184	6	109	2024-12-04 21:53:00	2024-12-04 21:53:00
3185	6	110	2024-12-04 21:53:00	2024-12-04 21:53:00
3186	6	111	2024-12-04 21:53:00	2024-12-04 21:53:00
3187	6	112	2024-12-04 21:53:00	2024-12-04 21:53:00
3188	6	113	2024-12-04 21:53:00	2024-12-04 21:53:00
3189	6	114	2024-12-04 21:53:00	2024-12-04 21:53:00
3190	6	115	2024-12-04 21:53:00	2024-12-04 21:53:00
3191	6	116	2024-12-04 21:53:00	2024-12-04 21:53:00
3192	6	117	2024-12-04 21:53:00	2024-12-04 21:53:00
3193	6	507	2024-12-04 21:53:00	2024-12-04 21:53:00
3194	6	508	2024-12-04 21:53:00	2024-12-04 21:53:00
3195	6	532	2024-12-04 21:53:00	2024-12-04 21:53:00
3196	6	540	2024-12-04 21:53:00	2024-12-04 21:53:00
3197	6	542	2024-12-04 21:53:00	2024-12-04 21:53:00
3198	6	544	2024-12-04 21:53:00	2024-12-04 21:53:00
3199	6	564	2024-12-04 21:53:00	2024-12-04 21:53:00
3200	6	565	2024-12-04 21:53:00	2024-12-04 21:53:00
3201	6	566	2024-12-04 21:53:00	2024-12-04 21:53:00
3202	6	650	2024-12-04 21:53:00	2024-12-04 21:53:00
3203	6	660	2024-12-04 21:53:00	2024-12-04 21:53:00
3204	6	661	2024-12-04 21:53:00	2024-12-04 21:53:00
3205	6	663	2024-12-04 21:53:00	2024-12-04 21:53:00
3206	6	664	2024-12-04 21:53:00	2024-12-04 21:53:00
3207	6	666	2024-12-04 21:53:00	2024-12-04 21:53:00
3208	6	674	2024-12-04 21:53:00	2024-12-04 21:53:00
3209	6	675	2024-12-04 21:53:00	2024-12-04 21:53:00
3210	6	118	2024-12-04 21:53:00	2024-12-04 21:53:00
3211	6	119	2024-12-04 21:53:00	2024-12-04 21:53:00
3212	6	120	2024-12-04 21:53:00	2024-12-04 21:53:00
3213	6	121	2024-12-04 21:53:00	2024-12-04 21:53:00
3214	6	122	2024-12-04 21:53:00	2024-12-04 21:53:00
3215	6	123	2024-12-04 21:53:00	2024-12-04 21:53:00
3216	6	124	2024-12-04 21:53:00	2024-12-04 21:53:00
3217	6	125	2024-12-04 21:53:00	2024-12-04 21:53:00
3218	6	126	2024-12-04 21:53:00	2024-12-04 21:53:00
3219	6	127	2024-12-04 21:53:00	2024-12-04 21:53:00
3220	6	128	2024-12-04 21:53:00	2024-12-04 21:53:00
3221	6	129	2024-12-04 21:53:00	2024-12-04 21:53:00
3222	6	130	2024-12-04 21:53:00	2024-12-04 21:53:00
3223	6	329	2024-12-04 21:53:00	2024-12-04 21:53:00
3224	6	330	2024-12-04 21:53:00	2024-12-04 21:53:00
3225	6	331	2024-12-04 21:53:00	2024-12-04 21:53:00
3226	6	332	2024-12-04 21:53:00	2024-12-04 21:53:00
3227	6	340	2024-12-04 21:53:00	2024-12-04 21:53:00
3228	6	131	2024-12-04 21:53:00	2024-12-04 21:53:00
3229	6	132	2024-12-04 21:53:00	2024-12-04 21:53:00
3230	6	133	2024-12-04 21:53:00	2024-12-04 21:53:00
3231	6	134	2024-12-04 21:53:00	2024-12-04 21:53:00
3232	6	135	2024-12-04 21:53:00	2024-12-04 21:53:00
3233	6	136	2024-12-04 21:53:00	2024-12-04 21:53:00
3234	6	137	2024-12-04 21:53:00	2024-12-04 21:53:00
3235	6	138	2024-12-04 21:53:00	2024-12-04 21:53:00
3236	6	139	2024-12-04 21:53:00	2024-12-04 21:53:00
3237	6	140	2024-12-04 21:53:00	2024-12-04 21:53:00
3238	6	141	2024-12-04 21:53:00	2024-12-04 21:53:00
3239	6	143	2024-12-04 21:53:00	2024-12-04 21:53:00
3240	6	144	2024-12-04 21:53:00	2024-12-04 21:53:00
3241	6	145	2024-12-04 21:53:00	2024-12-04 21:53:00
3242	6	146	2024-12-04 21:53:00	2024-12-04 21:53:00
3243	6	147	2024-12-04 21:53:00	2024-12-04 21:53:00
3244	6	148	2024-12-04 21:53:00	2024-12-04 21:53:00
3245	6	152	2024-12-04 21:53:00	2024-12-04 21:53:00
3246	6	153	2024-12-04 21:53:00	2024-12-04 21:53:00
3247	6	154	2024-12-04 21:53:00	2024-12-04 21:53:00
3248	6	155	2024-12-04 21:53:00	2024-12-04 21:53:00
3249	6	156	2024-12-04 21:53:00	2024-12-04 21:53:00
3250	6	157	2024-12-04 21:53:00	2024-12-04 21:53:00
3251	6	158	2024-12-04 21:53:00	2024-12-04 21:53:00
3252	6	159	2024-12-04 21:53:00	2024-12-04 21:53:00
3253	6	160	2024-12-04 21:53:00	2024-12-04 21:53:00
3254	6	161	2024-12-04 21:53:00	2024-12-04 21:53:00
3255	6	162	2024-12-04 21:53:00	2024-12-04 21:53:00
3256	6	163	2024-12-04 21:53:00	2024-12-04 21:53:00
3257	6	164	2024-12-04 21:53:00	2024-12-04 21:53:00
3258	6	165	2024-12-04 21:53:01	2024-12-04 21:53:01
3259	6	166	2024-12-04 21:53:01	2024-12-04 21:53:01
3260	6	167	2024-12-04 21:53:01	2024-12-04 21:53:01
3261	6	168	2024-12-04 21:53:01	2024-12-04 21:53:01
3262	6	169	2024-12-04 21:53:01	2024-12-04 21:53:01
3263	6	170	2024-12-04 21:53:01	2024-12-04 21:53:01
3264	6	171	2024-12-04 21:53:01	2024-12-04 21:53:01
3265	6	172	2024-12-04 21:53:01	2024-12-04 21:53:01
3266	6	173	2024-12-04 21:53:01	2024-12-04 21:53:01
3267	6	426	2024-12-04 21:53:01	2024-12-04 21:53:01
3268	6	341	2024-12-04 21:53:01	2024-12-04 21:53:01
3269	6	342	2024-12-04 21:53:01	2024-12-04 21:53:01
3270	6	343	2024-12-04 21:53:01	2024-12-04 21:53:01
3271	6	346	2024-12-04 21:53:01	2024-12-04 21:53:01
3272	6	347	2024-12-04 21:53:01	2024-12-04 21:53:01
3273	6	348	2024-12-04 21:53:01	2024-12-04 21:53:01
3274	6	349	2024-12-04 21:53:01	2024-12-04 21:53:01
3275	6	536	2024-12-04 21:53:01	2024-12-04 21:53:01
3276	6	537	2024-12-04 21:53:01	2024-12-04 21:53:01
3277	6	538	2024-12-04 21:53:01	2024-12-04 21:53:01
3278	6	560	2024-12-04 21:53:01	2024-12-04 21:53:01
3279	6	561	2024-12-04 21:53:01	2024-12-04 21:53:01
3280	6	562	2024-12-04 21:53:01	2024-12-04 21:53:01
3281	6	199	2024-12-04 21:53:01	2024-12-04 21:53:01
3282	6	690	2024-12-04 21:53:01	2024-12-04 21:53:01
3283	6	344	2024-12-04 21:53:01	2024-12-04 21:53:01
3284	6	345	2024-12-04 21:53:01	2024-12-04 21:53:01
3285	6	691	2024-12-04 21:53:01	2024-12-04 21:53:01
3286	6	174	2024-12-04 21:53:01	2024-12-04 21:53:01
3287	6	176	2024-12-04 21:53:01	2024-12-04 21:53:01
3288	6	177	2024-12-04 21:53:01	2024-12-04 21:53:01
3289	6	178	2024-12-04 21:53:01	2024-12-04 21:53:01
3290	6	179	2024-12-04 21:53:01	2024-12-04 21:53:01
3291	6	180	2024-12-04 21:53:01	2024-12-04 21:53:01
3292	6	181	2024-12-04 21:53:01	2024-12-04 21:53:01
3293	6	182	2024-12-04 21:53:01	2024-12-04 21:53:01
3294	6	183	2024-12-04 21:53:01	2024-12-04 21:53:01
3295	6	184	2024-12-04 21:53:01	2024-12-04 21:53:01
3296	6	185	2024-12-04 21:53:01	2024-12-04 21:53:01
3297	6	186	2024-12-04 21:53:01	2024-12-04 21:53:01
3298	6	187	2024-12-04 21:53:01	2024-12-04 21:53:01
3299	6	188	2024-12-04 21:53:01	2024-12-04 21:53:01
3300	6	189	2024-12-04 21:53:01	2024-12-04 21:53:01
3301	6	190	2024-12-04 21:53:01	2024-12-04 21:53:01
3302	6	191	2024-12-04 21:53:01	2024-12-04 21:53:01
3303	6	192	2024-12-04 21:53:01	2024-12-04 21:53:01
3304	6	193	2024-12-04 21:53:01	2024-12-04 21:53:01
3305	6	194	2024-12-04 21:53:01	2024-12-04 21:53:01
3306	6	200	2024-12-04 21:53:01	2024-12-04 21:53:01
3307	6	201	2024-12-04 21:53:01	2024-12-04 21:53:01
3308	6	202	2024-12-04 21:53:01	2024-12-04 21:53:01
3309	6	207	2024-12-04 21:53:01	2024-12-04 21:53:01
3310	6	208	2024-12-04 21:53:01	2024-12-04 21:53:01
3311	6	209	2024-12-04 21:53:01	2024-12-04 21:53:01
3312	6	210	2024-12-04 21:53:01	2024-12-04 21:53:01
3313	6	211	2024-12-04 21:53:01	2024-12-04 21:53:01
3314	6	212	2024-12-04 21:53:01	2024-12-04 21:53:01
3315	6	213	2024-12-04 21:53:01	2024-12-04 21:53:01
3316	6	215	2024-12-04 21:53:01	2024-12-04 21:53:01
3317	6	335	2024-12-04 21:53:01	2024-12-04 21:53:01
3318	6	336	2024-12-04 21:53:01	2024-12-04 21:53:01
3319	6	337	2024-12-04 21:53:01	2024-12-04 21:53:01
3320	6	338	2024-12-04 21:53:01	2024-12-04 21:53:01
3321	6	381	2024-12-04 21:53:01	2024-12-04 21:53:01
3322	6	382	2024-12-04 21:53:01	2024-12-04 21:53:01
3323	6	383	2024-12-04 21:53:01	2024-12-04 21:53:01
3324	6	175	2024-12-04 21:53:01	2024-12-04 21:53:01
3325	6	214	2024-12-04 21:53:01	2024-12-04 21:53:01
3326	6	216	2024-12-04 21:53:01	2024-12-04 21:53:01
3327	6	217	2024-12-04 21:53:01	2024-12-04 21:53:01
3328	6	218	2024-12-04 21:53:01	2024-12-04 21:53:01
3329	6	219	2024-12-04 21:53:01	2024-12-04 21:53:01
3330	6	220	2024-12-04 21:53:02	2024-12-04 21:53:02
3331	6	221	2024-12-04 21:53:02	2024-12-04 21:53:02
3332	6	222	2024-12-04 21:53:02	2024-12-04 21:53:02
3333	6	223	2024-12-04 21:53:02	2024-12-04 21:53:02
3334	6	533	2024-12-04 21:53:02	2024-12-04 21:53:02
3335	6	534	2024-12-04 21:53:02	2024-12-04 21:53:02
3336	6	539	2024-12-04 21:53:02	2024-12-04 21:53:02
3337	6	535	2024-12-04 21:53:02	2024-12-04 21:53:02
3338	6	647	2024-12-04 21:53:02	2024-12-04 21:53:02
3339	6	673	2024-12-04 21:53:02	2024-12-04 21:53:02
3340	7	14	2025-05-12 09:12:24	2025-05-12 09:12:24
3341	7	15	2025-05-12 09:12:24	2025-05-12 09:12:24
3342	7	16	2025-05-12 09:12:24	2025-05-12 09:12:24
3343	7	17	2025-05-12 09:12:24	2025-05-12 09:12:24
3344	7	18	2025-05-12 09:12:24	2025-05-12 09:12:24
3345	7	19	2025-05-12 09:12:24	2025-05-12 09:12:24
3346	7	20	2025-05-12 09:12:24	2025-05-12 09:12:24
3347	7	21	2025-05-12 09:12:24	2025-05-12 09:12:24
3348	7	22	2025-05-12 09:12:24	2025-05-12 09:12:24
3349	7	23	2025-05-12 09:12:24	2025-05-12 09:12:24
3350	7	24	2025-05-12 09:12:24	2025-05-12 09:12:24
3351	7	448	2025-05-12 09:12:24	2025-05-12 09:12:24
3352	7	441	2025-05-12 09:12:24	2025-05-12 09:12:24
3353	7	442	2025-05-12 09:12:24	2025-05-12 09:12:24
3354	7	546	2025-05-12 09:12:24	2025-05-12 09:12:24
3355	7	584	2025-05-12 09:12:24	2025-05-12 09:12:24
3356	7	614	2025-05-12 09:12:24	2025-05-12 09:12:24
3357	7	615	2025-05-12 09:12:24	2025-05-12 09:12:24
3358	7	617	2025-05-12 09:12:24	2025-05-12 09:12:24
3359	7	618	2025-05-12 09:12:24	2025-05-12 09:12:24
3360	7	224	2025-05-12 09:12:24	2025-05-12 09:12:24
3361	7	225	2025-05-12 09:12:24	2025-05-12 09:12:24
3362	7	226	2025-05-12 09:12:24	2025-05-12 09:12:24
3363	7	227	2025-05-12 09:12:24	2025-05-12 09:12:24
3364	7	228	2025-05-12 09:12:24	2025-05-12 09:12:24
3365	7	229	2025-05-12 09:12:24	2025-05-12 09:12:24
3366	7	230	2025-05-12 09:12:24	2025-05-12 09:12:24
3367	7	231	2025-05-12 09:12:24	2025-05-12 09:12:24
3368	7	232	2025-05-12 09:12:24	2025-05-12 09:12:24
3369	7	233	2025-05-12 09:12:24	2025-05-12 09:12:24
3370	7	359	2025-05-12 09:12:24	2025-05-12 09:12:24
3371	7	360	2025-05-12 09:12:24	2025-05-12 09:12:24
3372	7	234	2025-05-12 09:12:24	2025-05-12 09:12:24
3373	7	235	2025-05-12 09:12:24	2025-05-12 09:12:24
3374	7	236	2025-05-12 09:12:24	2025-05-12 09:12:24
3375	7	237	2025-05-12 09:12:24	2025-05-12 09:12:24
3376	7	238	2025-05-12 09:12:24	2025-05-12 09:12:24
3377	7	239	2025-05-12 09:12:24	2025-05-12 09:12:24
3378	7	240	2025-05-12 09:12:24	2025-05-12 09:12:24
3379	7	241	2025-05-12 09:12:24	2025-05-12 09:12:24
3380	7	242	2025-05-12 09:12:24	2025-05-12 09:12:24
3381	7	243	2025-05-12 09:12:24	2025-05-12 09:12:24
3382	7	244	2025-05-12 09:12:24	2025-05-12 09:12:24
3383	7	245	2025-05-12 09:12:24	2025-05-12 09:12:24
3384	7	246	2025-05-12 09:12:24	2025-05-12 09:12:24
3385	7	247	2025-05-12 09:12:24	2025-05-12 09:12:24
3386	7	248	2025-05-12 09:12:24	2025-05-12 09:12:24
3387	7	249	2025-05-12 09:12:24	2025-05-12 09:12:24
3388	7	250	2025-05-12 09:12:24	2025-05-12 09:12:24
3389	7	251	2025-05-12 09:12:24	2025-05-12 09:12:24
3390	7	252	2025-05-12 09:12:24	2025-05-12 09:12:24
3391	7	253	2025-05-12 09:12:24	2025-05-12 09:12:24
3392	7	254	2025-05-12 09:12:24	2025-05-12 09:12:24
3393	7	255	2025-05-12 09:12:24	2025-05-12 09:12:24
3394	7	256	2025-05-12 09:12:24	2025-05-12 09:12:24
3395	7	257	2025-05-12 09:12:24	2025-05-12 09:12:24
3396	7	258	2025-05-12 09:12:24	2025-05-12 09:12:24
3397	7	259	2025-05-12 09:12:24	2025-05-12 09:12:24
3398	7	260	2025-05-12 09:12:24	2025-05-12 09:12:24
3399	7	261	2025-05-12 09:12:24	2025-05-12 09:12:24
3400	7	262	2025-05-12 09:12:24	2025-05-12 09:12:24
3401	7	263	2025-05-12 09:12:24	2025-05-12 09:12:24
3402	7	264	2025-05-12 09:12:24	2025-05-12 09:12:24
3403	7	509	2025-05-12 09:12:24	2025-05-12 09:12:24
3404	7	265	2025-05-12 09:12:24	2025-05-12 09:12:24
3405	7	266	2025-05-12 09:12:24	2025-05-12 09:12:24
3406	7	267	2025-05-12 09:12:24	2025-05-12 09:12:24
3407	7	268	2025-05-12 09:12:24	2025-05-12 09:12:24
3408	7	269	2025-05-12 09:12:24	2025-05-12 09:12:24
3409	7	270	2025-05-12 09:12:24	2025-05-12 09:12:24
3410	7	271	2025-05-12 09:12:24	2025-05-12 09:12:24
3411	7	272	2025-05-12 09:12:24	2025-05-12 09:12:24
3412	7	273	2025-05-12 09:12:24	2025-05-12 09:12:24
3413	7	274	2025-05-12 09:12:24	2025-05-12 09:12:24
3414	7	275	2025-05-12 09:12:24	2025-05-12 09:12:24
3415	7	276	2025-05-12 09:12:24	2025-05-12 09:12:24
3416	7	277	2025-05-12 09:12:24	2025-05-12 09:12:24
3417	7	278	2025-05-12 09:12:24	2025-05-12 09:12:24
3418	7	279	2025-05-12 09:12:24	2025-05-12 09:12:24
3419	7	280	2025-05-12 09:12:24	2025-05-12 09:12:24
3420	7	281	2025-05-12 09:12:24	2025-05-12 09:12:24
3421	7	282	2025-05-12 09:12:24	2025-05-12 09:12:24
3422	7	283	2025-05-12 09:12:24	2025-05-12 09:12:24
3423	7	284	2025-05-12 09:12:24	2025-05-12 09:12:24
3424	7	285	2025-05-12 09:12:24	2025-05-12 09:12:24
3425	7	286	2025-05-12 09:12:24	2025-05-12 09:12:24
3426	7	287	2025-05-12 09:12:24	2025-05-12 09:12:24
3427	7	288	2025-05-12 09:12:24	2025-05-12 09:12:24
3428	7	289	2025-05-12 09:12:24	2025-05-12 09:12:24
3429	7	294	2025-05-12 09:12:24	2025-05-12 09:12:24
3430	7	295	2025-05-12 09:12:24	2025-05-12 09:12:24
3431	7	296	2025-05-12 09:12:24	2025-05-12 09:12:24
3432	7	297	2025-05-12 09:12:24	2025-05-12 09:12:24
3433	7	500	2025-05-12 09:12:24	2025-05-12 09:12:24
3434	7	501	2025-05-12 09:12:24	2025-05-12 09:12:24
3435	7	502	2025-05-12 09:12:24	2025-05-12 09:12:24
3436	7	510	2025-05-12 09:12:24	2025-05-12 09:12:24
3437	7	511	2025-05-12 09:12:24	2025-05-12 09:12:24
3438	7	512	2025-05-12 09:12:24	2025-05-12 09:12:24
3439	7	567	2025-05-12 09:12:24	2025-05-12 09:12:24
3440	7	594	2025-05-12 09:12:24	2025-05-12 09:12:24
3441	7	679	2025-05-12 09:12:24	2025-05-12 09:12:24
3442	7	298	2025-05-12 09:12:24	2025-05-12 09:12:24
3443	7	299	2025-05-12 09:12:24	2025-05-12 09:12:24
3444	7	300	2025-05-12 09:12:24	2025-05-12 09:12:24
3445	7	310	2025-05-12 09:12:24	2025-05-12 09:12:24
3446	7	311	2025-05-12 09:12:24	2025-05-12 09:12:24
3447	7	312	2025-05-12 09:12:24	2025-05-12 09:12:24
3448	7	313	2025-05-12 09:12:24	2025-05-12 09:12:24
3449	7	314	2025-05-12 09:12:24	2025-05-12 09:12:24
3450	7	315	2025-05-12 09:12:24	2025-05-12 09:12:24
3451	7	316	2025-05-12 09:12:24	2025-05-12 09:12:24
3452	7	317	2025-05-12 09:12:24	2025-05-12 09:12:24
3453	7	318	2025-05-12 09:12:24	2025-05-12 09:12:24
3454	7	358	2025-05-12 09:12:24	2025-05-12 09:12:24
3455	7	365	2025-05-12 09:12:24	2025-05-12 09:12:24
3456	7	350	2025-05-12 09:12:24	2025-05-12 09:12:24
3457	7	351	2025-05-12 09:12:24	2025-05-12 09:12:24
3458	7	352	2025-05-12 09:12:24	2025-05-12 09:12:24
3459	7	353	2025-05-12 09:12:24	2025-05-12 09:12:24
3460	7	354	2025-05-12 09:12:24	2025-05-12 09:12:24
3461	7	355	2025-05-12 09:12:24	2025-05-12 09:12:24
3462	7	356	2025-05-12 09:12:24	2025-05-12 09:12:24
3463	7	357	2025-05-12 09:12:24	2025-05-12 09:12:24
3464	7	392	2025-05-12 09:12:24	2025-05-12 09:12:24
3465	7	396	2025-05-12 09:12:24	2025-05-12 09:12:24
3466	7	301	2025-05-12 09:12:24	2025-05-12 09:12:24
3467	7	302	2025-05-12 09:12:24	2025-05-12 09:12:24
3468	7	303	2025-05-12 09:12:24	2025-05-12 09:12:24
3469	7	304	2025-05-12 09:12:24	2025-05-12 09:12:24
3470	7	305	2025-05-12 09:12:24	2025-05-12 09:12:24
3471	7	306	2025-05-12 09:12:24	2025-05-12 09:12:24
3472	7	307	2025-05-12 09:12:24	2025-05-12 09:12:24
3473	7	308	2025-05-12 09:12:24	2025-05-12 09:12:24
3474	7	309	2025-05-12 09:12:24	2025-05-12 09:12:24
3475	7	590	2025-05-12 09:12:24	2025-05-12 09:12:24
3476	7	591	2025-05-12 09:12:24	2025-05-12 09:12:24
3477	7	319	2025-05-12 09:12:24	2025-05-12 09:12:24
3478	7	320	2025-05-12 09:12:24	2025-05-12 09:12:24
3479	7	321	2025-05-12 09:12:24	2025-05-12 09:12:24
3480	7	322	2025-05-12 09:12:24	2025-05-12 09:12:24
3481	7	323	2025-05-12 09:12:24	2025-05-12 09:12:24
3482	7	324	2025-05-12 09:12:24	2025-05-12 09:12:24
3483	7	325	2025-05-12 09:12:24	2025-05-12 09:12:24
3484	7	326	2025-05-12 09:12:24	2025-05-12 09:12:24
3485	7	327	2025-05-12 09:12:24	2025-05-12 09:12:24
3486	7	328	2025-05-12 09:12:24	2025-05-12 09:12:24
3487	7	676	2025-05-12 09:12:24	2025-05-12 09:12:24
3488	7	339	2025-05-12 09:12:24	2025-05-12 09:12:24
3489	7	385	2025-05-12 09:12:24	2025-05-12 09:12:24
3490	7	386	2025-05-12 09:12:24	2025-05-12 09:12:24
3491	7	387	2025-05-12 09:12:24	2025-05-12 09:12:24
3492	7	388	2025-05-12 09:12:24	2025-05-12 09:12:24
3493	7	389	2025-05-12 09:12:24	2025-05-12 09:12:24
3494	7	390	2025-05-12 09:12:24	2025-05-12 09:12:24
3495	7	391	2025-05-12 09:12:24	2025-05-12 09:12:24
3496	7	555	2025-05-12 09:12:24	2025-05-12 09:12:24
3497	7	556	2025-05-12 09:12:24	2025-05-12 09:12:24
3498	7	557	2025-05-12 09:12:24	2025-05-12 09:12:24
3499	7	455	2025-05-12 09:12:24	2025-05-12 09:12:24
3500	7	456	2025-05-12 09:12:24	2025-05-12 09:12:24
3501	7	457	2025-05-12 09:12:24	2025-05-12 09:12:24
3502	7	458	2025-05-12 09:12:24	2025-05-12 09:12:24
3503	7	459	2025-05-12 09:12:24	2025-05-12 09:12:24
3504	7	460	2025-05-12 09:12:24	2025-05-12 09:12:24
3505	7	461	2025-05-12 09:12:24	2025-05-12 09:12:24
3506	7	462	2025-05-12 09:12:24	2025-05-12 09:12:24
3507	7	463	2025-05-12 09:12:24	2025-05-12 09:12:24
3508	7	465	2025-05-12 09:12:24	2025-05-12 09:12:24
3509	7	466	2025-05-12 09:12:24	2025-05-12 09:12:24
3510	7	467	2025-05-12 09:12:24	2025-05-12 09:12:24
3511	7	468	2025-05-12 09:12:24	2025-05-12 09:12:24
3512	7	469	2025-05-12 09:12:24	2025-05-12 09:12:24
3513	7	470	2025-05-12 09:12:24	2025-05-12 09:12:24
3514	7	471	2025-05-12 09:12:24	2025-05-12 09:12:24
3515	7	472	2025-05-12 09:12:24	2025-05-12 09:12:24
3516	7	473	2025-05-12 09:12:24	2025-05-12 09:12:24
3517	7	474	2025-05-12 09:12:24	2025-05-12 09:12:24
3518	7	476	2025-05-12 09:12:24	2025-05-12 09:12:24
3519	7	478	2025-05-12 09:12:24	2025-05-12 09:12:24
3520	7	479	2025-05-12 09:12:24	2025-05-12 09:12:24
3521	7	475	2025-05-12 09:12:24	2025-05-12 09:12:24
3522	7	480	2025-05-12 09:12:24	2025-05-12 09:12:24
3523	7	481	2025-05-12 09:12:24	2025-05-12 09:12:24
3524	7	482	2025-05-12 09:12:24	2025-05-12 09:12:24
3525	7	483	2025-05-12 09:12:24	2025-05-12 09:12:24
3526	7	484	2025-05-12 09:12:24	2025-05-12 09:12:24
3527	7	485	2025-05-12 09:12:24	2025-05-12 09:12:24
3528	7	486	2025-05-12 09:12:24	2025-05-12 09:12:24
3529	7	576	2025-05-12 09:12:24	2025-05-12 09:12:24
3530	7	577	2025-05-12 09:12:24	2025-05-12 09:12:24
3531	7	578	2025-05-12 09:12:24	2025-05-12 09:12:24
3532	7	579	2025-05-12 09:12:24	2025-05-12 09:12:24
3533	7	580	2025-05-12 09:12:24	2025-05-12 09:12:24
3534	7	581	2025-05-12 09:12:24	2025-05-12 09:12:24
3535	7	582	2025-05-12 09:12:24	2025-05-12 09:12:24
3536	7	583	2025-05-12 09:12:24	2025-05-12 09:12:24
3537	7	25	2025-05-12 09:12:24	2025-05-12 09:12:24
3538	7	487	2025-05-12 09:12:24	2025-05-12 09:12:24
3539	7	488	2025-05-12 09:12:24	2025-05-12 09:12:24
3540	7	489	2025-05-12 09:12:24	2025-05-12 09:12:24
3541	7	490	2025-05-12 09:12:24	2025-05-12 09:12:24
3542	7	491	2025-05-12 09:12:24	2025-05-12 09:12:24
3543	7	551	2025-05-12 09:12:24	2025-05-12 09:12:24
3544	7	552	2025-05-12 09:12:24	2025-05-12 09:12:24
3545	7	568	2025-05-12 09:12:24	2025-05-12 09:12:24
3546	7	569	2025-05-12 09:12:24	2025-05-12 09:12:24
3547	7	570	2025-05-12 09:12:24	2025-05-12 09:12:24
3548	7	492	2025-05-12 09:12:24	2025-05-12 09:12:24
3549	7	493	2025-05-12 09:12:24	2025-05-12 09:12:24
3550	7	494	2025-05-12 09:12:24	2025-05-12 09:12:24
3551	7	495	2025-05-12 09:12:24	2025-05-12 09:12:24
3552	7	497	2025-05-12 09:12:24	2025-05-12 09:12:24
3553	7	496	2025-05-12 09:12:24	2025-05-12 09:12:24
3554	7	572	2025-05-12 09:12:24	2025-05-12 09:12:24
3555	7	573	2025-05-12 09:12:24	2025-05-12 09:12:24
3556	7	574	2025-05-12 09:12:24	2025-05-12 09:12:24
3557	7	575	2025-05-12 09:12:24	2025-05-12 09:12:24
3558	7	622	2025-05-12 09:12:24	2025-05-12 09:12:24
3559	7	378	2025-05-12 09:12:24	2025-05-12 09:12:24
3560	7	528	2025-05-12 09:12:24	2025-05-12 09:12:24
3561	7	595	2025-05-12 09:12:24	2025-05-12 09:12:24
3562	7	596	2025-05-12 09:12:24	2025-05-12 09:12:24
3563	7	597	2025-05-12 09:12:24	2025-05-12 09:12:24
3564	7	598	2025-05-12 09:12:24	2025-05-12 09:12:24
3565	7	599	2025-05-12 09:12:24	2025-05-12 09:12:24
3566	7	600	2025-05-12 09:12:24	2025-05-12 09:12:24
3567	7	601	2025-05-12 09:12:24	2025-05-12 09:12:24
3568	7	602	2025-05-12 09:12:24	2025-05-12 09:12:24
3569	7	603	2025-05-12 09:12:24	2025-05-12 09:12:24
3570	7	604	2025-05-12 09:12:24	2025-05-12 09:12:24
3571	7	605	2025-05-12 09:12:24	2025-05-12 09:12:24
3572	7	606	2025-05-12 09:12:24	2025-05-12 09:12:24
3573	7	607	2025-05-12 09:12:24	2025-05-12 09:12:24
3574	7	608	2025-05-12 09:12:24	2025-05-12 09:12:24
3575	7	609	2025-05-12 09:12:24	2025-05-12 09:12:24
3576	7	610	2025-05-12 09:12:24	2025-05-12 09:12:24
3577	7	611	2025-05-12 09:12:24	2025-05-12 09:12:24
3578	7	612	2025-05-12 09:12:24	2025-05-12 09:12:24
3579	7	613	2025-05-12 09:12:24	2025-05-12 09:12:24
3580	7	677	2025-05-12 09:12:24	2025-05-12 09:12:24
3581	7	678	2025-05-12 09:12:24	2025-05-12 09:12:24
3582	7	706	2025-05-12 09:12:24	2025-05-12 09:12:24
3583	7	707	2025-05-12 09:12:24	2025-05-12 09:12:24
3584	7	623	2025-05-12 09:12:24	2025-05-12 09:12:24
3585	7	624	2025-05-12 09:12:24	2025-05-12 09:12:24
3586	7	625	2025-05-12 09:12:24	2025-05-12 09:12:24
3587	7	626	2025-05-12 09:12:24	2025-05-12 09:12:24
3588	7	627	2025-05-12 09:12:24	2025-05-12 09:12:24
3589	7	628	2025-05-12 09:12:24	2025-05-12 09:12:24
3590	7	629	2025-05-12 09:12:24	2025-05-12 09:12:24
3591	7	630	2025-05-12 09:12:24	2025-05-12 09:12:24
3592	7	631	2025-05-12 09:12:24	2025-05-12 09:12:24
3593	7	632	2025-05-12 09:12:24	2025-05-12 09:12:24
3594	7	633	2025-05-12 09:12:24	2025-05-12 09:12:24
3595	7	634	2025-05-12 09:12:24	2025-05-12 09:12:24
3596	7	635	2025-05-12 09:12:24	2025-05-12 09:12:24
3597	7	636	2025-05-12 09:12:24	2025-05-12 09:12:24
3598	7	637	2025-05-12 09:12:24	2025-05-12 09:12:24
3599	7	638	2025-05-12 09:12:24	2025-05-12 09:12:24
3600	7	659	2025-05-12 09:12:24	2025-05-12 09:12:24
3601	7	639	2025-05-12 09:12:24	2025-05-12 09:12:24
3602	7	640	2025-05-12 09:12:24	2025-05-12 09:12:24
3603	7	641	2025-05-12 09:12:24	2025-05-12 09:12:24
3604	7	642	2025-05-12 09:12:24	2025-05-12 09:12:24
3605	7	643	2025-05-12 09:12:24	2025-05-12 09:12:24
3606	7	644	2025-05-12 09:12:24	2025-05-12 09:12:24
3607	7	645	2025-05-12 09:12:24	2025-05-12 09:12:24
3608	7	646	2025-05-12 09:12:24	2025-05-12 09:12:24
3609	7	700	2025-05-12 09:12:24	2025-05-12 09:12:24
3610	7	701	2025-05-12 09:12:24	2025-05-12 09:12:24
3611	7	702	2025-05-12 09:12:24	2025-05-12 09:12:24
3612	7	703	2025-05-12 09:12:24	2025-05-12 09:12:24
3613	7	704	2025-05-12 09:12:24	2025-05-12 09:12:24
3614	7	705	2025-05-12 09:12:24	2025-05-12 09:12:24
3615	7	26	2025-05-12 09:12:24	2025-05-12 09:12:24
3616	7	28	2025-05-12 09:12:24	2025-05-12 09:12:24
3617	7	29	2025-05-12 09:12:24	2025-05-12 09:12:24
3618	7	30	2025-05-12 09:12:24	2025-05-12 09:12:24
3619	7	31	2025-05-12 09:12:24	2025-05-12 09:12:24
3620	7	32	2025-05-12 09:12:24	2025-05-12 09:12:24
3621	7	33	2025-05-12 09:12:24	2025-05-12 09:12:24
3622	7	367	2025-05-12 09:12:24	2025-05-12 09:12:24
3623	7	368	2025-05-12 09:12:24	2025-05-12 09:12:24
3624	7	369	2025-05-12 09:12:24	2025-05-12 09:12:24
3625	7	370	2025-05-12 09:12:24	2025-05-12 09:12:24
3626	7	371	2025-05-12 09:12:24	2025-05-12 09:12:24
3627	7	373	2025-05-12 09:12:24	2025-05-12 09:12:24
3628	7	395	2025-05-12 09:12:24	2025-05-12 09:12:24
3629	7	39	2025-05-12 09:12:24	2025-05-12 09:12:24
3630	7	379	2025-05-12 09:12:24	2025-05-12 09:12:24
3631	7	380	2025-05-12 09:12:24	2025-05-12 09:12:24
3632	7	34	2025-05-12 09:12:24	2025-05-12 09:12:24
3633	7	35	2025-05-12 09:12:24	2025-05-12 09:12:24
3634	7	36	2025-05-12 09:12:24	2025-05-12 09:12:24
3635	7	37	2025-05-12 09:12:24	2025-05-12 09:12:24
3636	7	38	2025-05-12 09:12:24	2025-05-12 09:12:24
3637	7	424	2025-05-12 09:12:24	2025-05-12 09:12:24
3638	7	425	2025-05-12 09:12:24	2025-05-12 09:12:24
3639	7	427	2025-05-12 09:12:24	2025-05-12 09:12:24
3640	7	443	2025-05-12 09:12:24	2025-05-12 09:12:24
3641	7	449	2025-05-12 09:12:24	2025-05-12 09:12:24
3642	7	453	2025-05-12 09:12:24	2025-05-12 09:12:24
3643	7	454	2025-05-12 09:12:24	2025-05-12 09:12:24
3644	7	464	2025-05-12 09:12:24	2025-05-12 09:12:24
3645	7	450	2025-05-12 09:12:24	2025-05-12 09:12:24
3646	7	498	2025-05-12 09:12:24	2025-05-12 09:12:24
3647	7	499	2025-05-12 09:12:24	2025-05-12 09:12:24
3648	7	513	2025-05-12 09:12:24	2025-05-12 09:12:24
3649	7	514	2025-05-12 09:12:24	2025-05-12 09:12:24
3650	7	515	2025-05-12 09:12:24	2025-05-12 09:12:24
3651	7	516	2025-05-12 09:12:24	2025-05-12 09:12:24
3652	7	517	2025-05-12 09:12:24	2025-05-12 09:12:24
3653	7	518	2025-05-12 09:12:24	2025-05-12 09:12:24
3654	7	520	2025-05-12 09:12:24	2025-05-12 09:12:24
3655	7	521	2025-05-12 09:12:24	2025-05-12 09:12:24
3656	7	522	2025-05-12 09:12:24	2025-05-12 09:12:24
3657	7	523	2025-05-12 09:12:24	2025-05-12 09:12:24
3658	7	531	2025-05-12 09:12:24	2025-05-12 09:12:24
3659	7	547	2025-05-12 09:12:24	2025-05-12 09:12:24
3660	7	548	2025-05-12 09:12:24	2025-05-12 09:12:24
3661	7	549	2025-05-12 09:12:24	2025-05-12 09:12:24
3662	7	550	2025-05-12 09:12:24	2025-05-12 09:12:24
3663	7	553	2025-05-12 09:12:24	2025-05-12 09:12:24
3664	7	554	2025-05-12 09:12:24	2025-05-12 09:12:24
3665	7	586	2025-05-12 09:12:24	2025-05-12 09:12:24
3666	7	593	2025-05-12 09:12:24	2025-05-12 09:12:24
3667	7	652	2025-05-12 09:12:24	2025-05-12 09:12:24
3668	7	653	2025-05-12 09:12:24	2025-05-12 09:12:24
3669	7	654	2025-05-12 09:12:24	2025-05-12 09:12:24
3670	7	655	2025-05-12 09:12:24	2025-05-12 09:12:24
3671	7	656	2025-05-12 09:12:24	2025-05-12 09:12:24
3672	7	657	2025-05-12 09:12:24	2025-05-12 09:12:24
3673	7	658	2025-05-12 09:12:24	2025-05-12 09:12:24
3674	7	682	2025-05-12 09:12:24	2025-05-12 09:12:24
3675	7	683	2025-05-12 09:12:24	2025-05-12 09:12:24
3676	7	684	2025-05-12 09:12:24	2025-05-12 09:12:24
3677	7	685	2025-05-12 09:12:24	2025-05-12 09:12:24
3678	7	686	2025-05-12 09:12:24	2025-05-12 09:12:24
3679	7	687	2025-05-12 09:12:24	2025-05-12 09:12:24
3680	7	688	2025-05-12 09:12:24	2025-05-12 09:12:24
3681	7	27	2025-05-12 09:12:24	2025-05-12 09:12:24
3682	7	692	2025-05-12 09:12:24	2025-05-12 09:12:24
3683	7	40	2025-05-12 09:12:24	2025-05-12 09:12:24
3684	7	44	2025-05-12 09:12:24	2025-05-12 09:12:24
3685	7	45	2025-05-12 09:12:24	2025-05-12 09:12:24
3686	7	46	2025-05-12 09:12:24	2025-05-12 09:12:24
3687	7	47	2025-05-12 09:12:24	2025-05-12 09:12:24
3688	7	48	2025-05-12 09:12:24	2025-05-12 09:12:24
3689	7	49	2025-05-12 09:12:24	2025-05-12 09:12:24
3690	7	50	2025-05-12 09:12:24	2025-05-12 09:12:24
3691	7	51	2025-05-12 09:12:24	2025-05-12 09:12:24
3692	7	52	2025-05-12 09:12:24	2025-05-12 09:12:24
3693	7	372	2025-05-12 09:12:24	2025-05-12 09:12:24
3694	7	384	2025-05-12 09:12:24	2025-05-12 09:12:24
3695	7	41	2025-05-12 09:12:24	2025-05-12 09:12:24
3696	7	42	2025-05-12 09:12:24	2025-05-12 09:12:24
3697	7	43	2025-05-12 09:12:24	2025-05-12 09:12:24
3698	7	529	2025-05-12 09:12:24	2025-05-12 09:12:24
3699	7	526	2025-05-12 09:12:24	2025-05-12 09:12:24
3700	7	525	2025-05-12 09:12:24	2025-05-12 09:12:24
3701	7	527	2025-05-12 09:12:24	2025-05-12 09:12:24
3702	7	530	2025-05-12 09:12:24	2025-05-12 09:12:24
3703	7	519	2025-05-12 09:12:24	2025-05-12 09:12:24
3704	7	587	2025-05-12 09:12:24	2025-05-12 09:12:24
3705	7	592	2025-05-12 09:12:24	2025-05-12 09:12:24
3706	7	648	2025-05-12 09:12:24	2025-05-12 09:12:24
3707	7	524	2025-05-12 09:12:24	2025-05-12 09:12:24
3708	7	588	2025-05-12 09:12:24	2025-05-12 09:12:24
3709	7	616	2025-05-12 09:12:24	2025-05-12 09:12:24
3710	7	452	2025-05-12 09:12:24	2025-05-12 09:12:24
3711	7	589	2025-05-12 09:12:24	2025-05-12 09:12:24
3712	7	665	2025-05-12 09:12:24	2025-05-12 09:12:24
3713	7	693	2025-05-12 09:12:24	2025-05-12 09:12:24
3714	7	694	2025-05-12 09:12:24	2025-05-12 09:12:24
3715	7	695	2025-05-12 09:12:24	2025-05-12 09:12:24
3716	7	53	2025-05-12 09:12:24	2025-05-12 09:12:24
3717	7	54	2025-05-12 09:12:24	2025-05-12 09:12:24
3718	7	55	2025-05-12 09:12:24	2025-05-12 09:12:24
3719	7	56	2025-05-12 09:12:24	2025-05-12 09:12:24
3720	7	57	2025-05-12 09:12:24	2025-05-12 09:12:24
3721	7	58	2025-05-12 09:12:24	2025-05-12 09:12:24
3722	7	59	2025-05-12 09:12:24	2025-05-12 09:12:24
3723	7	60	2025-05-12 09:12:24	2025-05-12 09:12:24
3724	7	61	2025-05-12 09:12:24	2025-05-12 09:12:24
3725	7	62	2025-05-12 09:12:24	2025-05-12 09:12:24
3726	7	63	2025-05-12 09:12:24	2025-05-12 09:12:24
3727	7	64	2025-05-12 09:12:24	2025-05-12 09:12:24
3728	7	65	2025-05-12 09:12:24	2025-05-12 09:12:24
3729	7	66	2025-05-12 09:12:24	2025-05-12 09:12:24
3730	7	67	2025-05-12 09:12:24	2025-05-12 09:12:24
3731	7	68	2025-05-12 09:12:24	2025-05-12 09:12:24
3732	7	69	2025-05-12 09:12:24	2025-05-12 09:12:24
3733	7	70	2025-05-12 09:12:24	2025-05-12 09:12:24
3734	7	71	2025-05-12 09:12:24	2025-05-12 09:12:24
3735	7	72	2025-05-12 09:12:24	2025-05-12 09:12:24
3736	7	73	2025-05-12 09:12:24	2025-05-12 09:12:24
3737	7	74	2025-05-12 09:12:24	2025-05-12 09:12:24
3738	7	75	2025-05-12 09:12:24	2025-05-12 09:12:24
3739	7	76	2025-05-12 09:12:24	2025-05-12 09:12:24
3740	7	77	2025-05-12 09:12:24	2025-05-12 09:12:24
3741	7	432	2025-05-12 09:12:24	2025-05-12 09:12:24
3742	7	433	2025-05-12 09:12:24	2025-05-12 09:12:24
3743	7	434	2025-05-12 09:12:24	2025-05-12 09:12:24
3744	7	435	2025-05-12 09:12:24	2025-05-12 09:12:24
3745	7	436	2025-05-12 09:12:24	2025-05-12 09:12:24
3746	7	437	2025-05-12 09:12:24	2025-05-12 09:12:24
3747	7	438	2025-05-12 09:12:24	2025-05-12 09:12:24
3748	7	439	2025-05-12 09:12:24	2025-05-12 09:12:24
3749	7	440	2025-05-12 09:12:24	2025-05-12 09:12:24
3750	7	451	2025-05-12 09:12:24	2025-05-12 09:12:24
3751	7	477	2025-05-12 09:12:24	2025-05-12 09:12:24
3752	7	585	2025-05-12 09:12:24	2025-05-12 09:12:24
3753	7	669	2025-05-12 09:12:24	2025-05-12 09:12:24
3754	7	670	2025-05-12 09:12:24	2025-05-12 09:12:24
3755	7	671	2025-05-12 09:12:24	2025-05-12 09:12:24
3756	7	672	2025-05-12 09:12:24	2025-05-12 09:12:24
3757	7	680	2025-05-12 09:12:24	2025-05-12 09:12:24
3758	7	681	2025-05-12 09:12:24	2025-05-12 09:12:24
3759	7	689	2025-05-12 09:12:24	2025-05-12 09:12:24
3760	7	698	2025-05-12 09:12:24	2025-05-12 09:12:24
3761	7	699	2025-05-12 09:12:24	2025-05-12 09:12:24
3762	7	78	2025-05-12 09:12:24	2025-05-12 09:12:24
3763	7	79	2025-05-12 09:12:24	2025-05-12 09:12:24
3764	7	80	2025-05-12 09:12:24	2025-05-12 09:12:24
3765	7	81	2025-05-12 09:12:24	2025-05-12 09:12:24
3766	7	82	2025-05-12 09:12:24	2025-05-12 09:12:24
3767	7	83	2025-05-12 09:12:24	2025-05-12 09:12:24
3768	7	84	2025-05-12 09:12:24	2025-05-12 09:12:24
3769	7	85	2025-05-12 09:12:24	2025-05-12 09:12:24
3770	7	86	2025-05-12 09:12:24	2025-05-12 09:12:24
3771	7	87	2025-05-12 09:12:24	2025-05-12 09:12:24
3772	7	88	2025-05-12 09:12:24	2025-05-12 09:12:24
3773	7	89	2025-05-12 09:12:24	2025-05-12 09:12:24
3774	7	90	2025-05-12 09:12:24	2025-05-12 09:12:24
3775	7	91	2025-05-12 09:12:24	2025-05-12 09:12:24
3776	7	92	2025-05-12 09:12:24	2025-05-12 09:12:24
3777	7	93	2025-05-12 09:12:24	2025-05-12 09:12:24
3778	7	94	2025-05-12 09:12:24	2025-05-12 09:12:24
3779	7	374	2025-05-12 09:12:24	2025-05-12 09:12:24
3780	7	375	2025-05-12 09:12:24	2025-05-12 09:12:24
3781	7	393	2025-05-12 09:12:24	2025-05-12 09:12:24
3782	7	394	2025-05-12 09:12:24	2025-05-12 09:12:24
3783	7	397	2025-05-12 09:12:24	2025-05-12 09:12:24
3784	7	398	2025-05-12 09:12:24	2025-05-12 09:12:24
3785	7	541	2025-05-12 09:12:24	2025-05-12 09:12:24
3786	7	543	2025-05-12 09:12:24	2025-05-12 09:12:24
3787	7	545	2025-05-12 09:12:24	2025-05-12 09:12:24
3788	7	571	2025-05-12 09:12:24	2025-05-12 09:12:24
3789	7	95	2025-05-12 09:12:24	2025-05-12 09:12:24
3790	7	96	2025-05-12 09:12:24	2025-05-12 09:12:24
3791	7	97	2025-05-12 09:12:24	2025-05-12 09:12:24
3792	7	98	2025-05-12 09:12:24	2025-05-12 09:12:24
3793	7	99	2025-05-12 09:12:24	2025-05-12 09:12:24
3794	7	100	2025-05-12 09:12:24	2025-05-12 09:12:24
3795	7	101	2025-05-12 09:12:24	2025-05-12 09:12:24
3796	7	102	2025-05-12 09:12:24	2025-05-12 09:12:24
3797	7	103	2025-05-12 09:12:24	2025-05-12 09:12:24
3798	7	104	2025-05-12 09:12:24	2025-05-12 09:12:24
3799	7	361	2025-05-12 09:12:24	2025-05-12 09:12:24
3800	7	362	2025-05-12 09:12:24	2025-05-12 09:12:24
3801	7	363	2025-05-12 09:12:24	2025-05-12 09:12:24
3802	7	364	2025-05-12 09:12:24	2025-05-12 09:12:24
3803	7	366	2025-05-12 09:12:24	2025-05-12 09:12:24
3804	7	376	2025-05-12 09:12:24	2025-05-12 09:12:24
3805	7	377	2025-05-12 09:12:24	2025-05-12 09:12:24
3806	7	105	2025-05-12 09:12:24	2025-05-12 09:12:24
3807	7	106	2025-05-12 09:12:24	2025-05-12 09:12:24
3808	7	107	2025-05-12 09:12:24	2025-05-12 09:12:24
3809	7	108	2025-05-12 09:12:24	2025-05-12 09:12:24
3810	7	109	2025-05-12 09:12:24	2025-05-12 09:12:24
3811	7	110	2025-05-12 09:12:24	2025-05-12 09:12:24
3812	7	111	2025-05-12 09:12:24	2025-05-12 09:12:24
3813	7	112	2025-05-12 09:12:24	2025-05-12 09:12:24
3814	7	113	2025-05-12 09:12:24	2025-05-12 09:12:24
3815	7	114	2025-05-12 09:12:24	2025-05-12 09:12:24
3816	7	115	2025-05-12 09:12:24	2025-05-12 09:12:24
3817	7	116	2025-05-12 09:12:24	2025-05-12 09:12:24
3818	7	117	2025-05-12 09:12:24	2025-05-12 09:12:24
3819	7	428	2025-05-12 09:12:24	2025-05-12 09:12:24
3820	7	429	2025-05-12 09:12:24	2025-05-12 09:12:24
3821	7	430	2025-05-12 09:12:24	2025-05-12 09:12:24
3822	7	431	2025-05-12 09:12:24	2025-05-12 09:12:24
3823	7	444	2025-05-12 09:12:24	2025-05-12 09:12:24
3824	7	445	2025-05-12 09:12:24	2025-05-12 09:12:24
3825	7	446	2025-05-12 09:12:24	2025-05-12 09:12:24
3826	7	447	2025-05-12 09:12:24	2025-05-12 09:12:24
3827	7	507	2025-05-12 09:12:24	2025-05-12 09:12:24
3828	7	508	2025-05-12 09:12:24	2025-05-12 09:12:24
3829	7	532	2025-05-12 09:12:24	2025-05-12 09:12:24
3830	7	540	2025-05-12 09:12:24	2025-05-12 09:12:24
3831	7	542	2025-05-12 09:12:24	2025-05-12 09:12:24
3832	7	544	2025-05-12 09:12:24	2025-05-12 09:12:24
3833	7	564	2025-05-12 09:12:24	2025-05-12 09:12:24
3834	7	565	2025-05-12 09:12:24	2025-05-12 09:12:24
3835	7	566	2025-05-12 09:12:24	2025-05-12 09:12:24
3836	7	619	2025-05-12 09:12:24	2025-05-12 09:12:24
3837	7	620	2025-05-12 09:12:24	2025-05-12 09:12:24
3838	7	621	2025-05-12 09:12:24	2025-05-12 09:12:24
3839	7	649	2025-05-12 09:12:24	2025-05-12 09:12:24
3840	7	650	2025-05-12 09:12:24	2025-05-12 09:12:24
3841	7	651	2025-05-12 09:12:24	2025-05-12 09:12:24
3842	7	660	2025-05-12 09:12:24	2025-05-12 09:12:24
3843	7	661	2025-05-12 09:12:24	2025-05-12 09:12:24
3844	7	662	2025-05-12 09:12:24	2025-05-12 09:12:24
3845	7	663	2025-05-12 09:12:24	2025-05-12 09:12:24
3846	7	664	2025-05-12 09:12:24	2025-05-12 09:12:24
3847	7	666	2025-05-12 09:12:24	2025-05-12 09:12:24
3848	7	674	2025-05-12 09:12:24	2025-05-12 09:12:24
3849	7	675	2025-05-12 09:12:24	2025-05-12 09:12:24
3850	7	118	2025-05-12 09:12:24	2025-05-12 09:12:24
3851	7	119	2025-05-12 09:12:24	2025-05-12 09:12:24
3852	7	120	2025-05-12 09:12:24	2025-05-12 09:12:24
3853	7	121	2025-05-12 09:12:24	2025-05-12 09:12:24
3854	7	122	2025-05-12 09:12:24	2025-05-12 09:12:24
3855	7	123	2025-05-12 09:12:24	2025-05-12 09:12:24
3856	7	124	2025-05-12 09:12:24	2025-05-12 09:12:24
3857	7	125	2025-05-12 09:12:24	2025-05-12 09:12:24
3858	7	126	2025-05-12 09:12:24	2025-05-12 09:12:24
3859	7	127	2025-05-12 09:12:24	2025-05-12 09:12:24
3860	7	128	2025-05-12 09:12:24	2025-05-12 09:12:24
3861	7	129	2025-05-12 09:12:24	2025-05-12 09:12:24
3862	7	130	2025-05-12 09:12:24	2025-05-12 09:12:24
3863	7	329	2025-05-12 09:12:24	2025-05-12 09:12:24
3864	7	330	2025-05-12 09:12:24	2025-05-12 09:12:24
3865	7	331	2025-05-12 09:12:24	2025-05-12 09:12:24
3866	7	332	2025-05-12 09:12:24	2025-05-12 09:12:24
3867	7	333	2025-05-12 09:12:24	2025-05-12 09:12:24
3868	7	334	2025-05-12 09:12:24	2025-05-12 09:12:24
3869	7	340	2025-05-12 09:12:24	2025-05-12 09:12:24
3870	7	131	2025-05-12 09:12:24	2025-05-12 09:12:24
3871	7	132	2025-05-12 09:12:24	2025-05-12 09:12:24
3872	7	133	2025-05-12 09:12:24	2025-05-12 09:12:24
3873	7	134	2025-05-12 09:12:24	2025-05-12 09:12:24
3874	7	135	2025-05-12 09:12:24	2025-05-12 09:12:24
3875	7	136	2025-05-12 09:12:24	2025-05-12 09:12:24
3876	7	137	2025-05-12 09:12:24	2025-05-12 09:12:24
3877	7	138	2025-05-12 09:12:24	2025-05-12 09:12:24
3878	7	139	2025-05-12 09:12:24	2025-05-12 09:12:24
3879	7	140	2025-05-12 09:12:24	2025-05-12 09:12:24
3880	7	141	2025-05-12 09:12:24	2025-05-12 09:12:24
3881	7	142	2025-05-12 09:12:24	2025-05-12 09:12:24
3882	7	143	2025-05-12 09:12:24	2025-05-12 09:12:24
3883	7	144	2025-05-12 09:12:24	2025-05-12 09:12:24
3884	7	145	2025-05-12 09:12:24	2025-05-12 09:12:24
3885	7	146	2025-05-12 09:12:24	2025-05-12 09:12:24
3886	7	147	2025-05-12 09:12:24	2025-05-12 09:12:24
3887	7	148	2025-05-12 09:12:24	2025-05-12 09:12:24
3888	7	149	2025-05-12 09:12:24	2025-05-12 09:12:24
3889	7	150	2025-05-12 09:12:24	2025-05-12 09:12:24
3890	7	151	2025-05-12 09:12:24	2025-05-12 09:12:24
3891	7	152	2025-05-12 09:12:24	2025-05-12 09:12:24
3892	7	153	2025-05-12 09:12:24	2025-05-12 09:12:24
3893	7	154	2025-05-12 09:12:24	2025-05-12 09:12:24
3894	7	155	2025-05-12 09:12:24	2025-05-12 09:12:24
3895	7	156	2025-05-12 09:12:24	2025-05-12 09:12:24
3896	7	157	2025-05-12 09:12:24	2025-05-12 09:12:24
3897	7	158	2025-05-12 09:12:24	2025-05-12 09:12:24
3898	7	159	2025-05-12 09:12:24	2025-05-12 09:12:24
3899	7	160	2025-05-12 09:12:24	2025-05-12 09:12:24
3900	7	161	2025-05-12 09:12:24	2025-05-12 09:12:24
3901	7	162	2025-05-12 09:12:24	2025-05-12 09:12:24
3902	7	163	2025-05-12 09:12:24	2025-05-12 09:12:24
3903	7	164	2025-05-12 09:12:24	2025-05-12 09:12:24
3904	7	165	2025-05-12 09:12:24	2025-05-12 09:12:24
3905	7	166	2025-05-12 09:12:24	2025-05-12 09:12:24
3906	7	167	2025-05-12 09:12:24	2025-05-12 09:12:24
3907	7	168	2025-05-12 09:12:24	2025-05-12 09:12:24
3908	7	169	2025-05-12 09:12:24	2025-05-12 09:12:24
3909	7	170	2025-05-12 09:12:24	2025-05-12 09:12:24
3910	7	171	2025-05-12 09:12:24	2025-05-12 09:12:24
3911	7	172	2025-05-12 09:12:24	2025-05-12 09:12:24
3912	7	173	2025-05-12 09:12:24	2025-05-12 09:12:24
3913	7	426	2025-05-12 09:12:24	2025-05-12 09:12:24
3914	7	341	2025-05-12 09:12:24	2025-05-12 09:12:24
3915	7	342	2025-05-12 09:12:24	2025-05-12 09:12:24
3916	7	343	2025-05-12 09:12:24	2025-05-12 09:12:24
3917	7	346	2025-05-12 09:12:24	2025-05-12 09:12:24
3918	7	347	2025-05-12 09:12:24	2025-05-12 09:12:24
3919	7	348	2025-05-12 09:12:24	2025-05-12 09:12:24
3920	7	349	2025-05-12 09:12:24	2025-05-12 09:12:24
3921	7	536	2025-05-12 09:12:24	2025-05-12 09:12:24
3922	7	537	2025-05-12 09:12:24	2025-05-12 09:12:24
3923	7	538	2025-05-12 09:12:24	2025-05-12 09:12:24
3924	7	560	2025-05-12 09:12:24	2025-05-12 09:12:24
3925	7	561	2025-05-12 09:12:24	2025-05-12 09:12:24
3926	7	562	2025-05-12 09:12:24	2025-05-12 09:12:24
3927	7	563	2025-05-12 09:12:24	2025-05-12 09:12:24
3928	7	199	2025-05-12 09:12:24	2025-05-12 09:12:24
3929	7	690	2025-05-12 09:12:24	2025-05-12 09:12:24
3930	7	344	2025-05-12 09:12:24	2025-05-12 09:12:24
3931	7	345	2025-05-12 09:12:24	2025-05-12 09:12:24
3932	7	691	2025-05-12 09:12:24	2025-05-12 09:12:24
3933	7	696	2025-05-12 09:12:24	2025-05-12 09:12:24
3934	7	697	2025-05-12 09:12:24	2025-05-12 09:12:24
3935	7	174	2025-05-12 09:12:24	2025-05-12 09:12:24
3936	7	176	2025-05-12 09:12:24	2025-05-12 09:12:24
3937	7	177	2025-05-12 09:12:24	2025-05-12 09:12:24
3938	7	178	2025-05-12 09:12:24	2025-05-12 09:12:24
3939	7	179	2025-05-12 09:12:24	2025-05-12 09:12:24
3940	7	180	2025-05-12 09:12:24	2025-05-12 09:12:24
3941	7	181	2025-05-12 09:12:24	2025-05-12 09:12:24
3942	7	182	2025-05-12 09:12:24	2025-05-12 09:12:24
3943	7	183	2025-05-12 09:12:24	2025-05-12 09:12:24
3944	7	184	2025-05-12 09:12:24	2025-05-12 09:12:24
3945	7	185	2025-05-12 09:12:24	2025-05-12 09:12:24
3946	7	186	2025-05-12 09:12:24	2025-05-12 09:12:24
3947	7	187	2025-05-12 09:12:24	2025-05-12 09:12:24
3948	7	188	2025-05-12 09:12:24	2025-05-12 09:12:24
3949	7	189	2025-05-12 09:12:24	2025-05-12 09:12:24
3950	7	190	2025-05-12 09:12:24	2025-05-12 09:12:24
3951	7	191	2025-05-12 09:12:24	2025-05-12 09:12:24
3952	7	192	2025-05-12 09:12:24	2025-05-12 09:12:24
3953	7	193	2025-05-12 09:12:24	2025-05-12 09:12:24
3954	7	194	2025-05-12 09:12:24	2025-05-12 09:12:24
3955	7	195	2025-05-12 09:12:24	2025-05-12 09:12:24
3956	7	196	2025-05-12 09:12:24	2025-05-12 09:12:24
3957	7	197	2025-05-12 09:12:24	2025-05-12 09:12:24
3958	7	198	2025-05-12 09:12:24	2025-05-12 09:12:24
3959	7	200	2025-05-12 09:12:24	2025-05-12 09:12:24
3960	7	201	2025-05-12 09:12:24	2025-05-12 09:12:24
3961	7	202	2025-05-12 09:12:24	2025-05-12 09:12:24
3962	7	203	2025-05-12 09:12:24	2025-05-12 09:12:24
3963	7	204	2025-05-12 09:12:24	2025-05-12 09:12:24
3964	7	205	2025-05-12 09:12:24	2025-05-12 09:12:24
3965	7	206	2025-05-12 09:12:24	2025-05-12 09:12:24
3966	7	207	2025-05-12 09:12:24	2025-05-12 09:12:24
3967	7	208	2025-05-12 09:12:24	2025-05-12 09:12:24
3968	7	209	2025-05-12 09:12:24	2025-05-12 09:12:24
3969	7	210	2025-05-12 09:12:25	2025-05-12 09:12:25
3970	7	211	2025-05-12 09:12:25	2025-05-12 09:12:25
3971	7	212	2025-05-12 09:12:25	2025-05-12 09:12:25
3972	7	213	2025-05-12 09:12:25	2025-05-12 09:12:25
3973	7	215	2025-05-12 09:12:25	2025-05-12 09:12:25
3974	7	335	2025-05-12 09:12:25	2025-05-12 09:12:25
3975	7	336	2025-05-12 09:12:25	2025-05-12 09:12:25
3976	7	337	2025-05-12 09:12:25	2025-05-12 09:12:25
3977	7	338	2025-05-12 09:12:25	2025-05-12 09:12:25
3978	7	381	2025-05-12 09:12:25	2025-05-12 09:12:25
3979	7	382	2025-05-12 09:12:25	2025-05-12 09:12:25
3980	7	383	2025-05-12 09:12:25	2025-05-12 09:12:25
3981	7	175	2025-05-12 09:12:25	2025-05-12 09:12:25
3982	7	214	2025-05-12 09:12:25	2025-05-12 09:12:25
3983	7	216	2025-05-12 09:12:25	2025-05-12 09:12:25
3984	7	217	2025-05-12 09:12:25	2025-05-12 09:12:25
3985	7	218	2025-05-12 09:12:25	2025-05-12 09:12:25
3986	7	219	2025-05-12 09:12:25	2025-05-12 09:12:25
3987	7	220	2025-05-12 09:12:25	2025-05-12 09:12:25
3988	7	221	2025-05-12 09:12:25	2025-05-12 09:12:25
3989	7	222	2025-05-12 09:12:25	2025-05-12 09:12:25
3990	7	223	2025-05-12 09:12:25	2025-05-12 09:12:25
3991	7	533	2025-05-12 09:12:25	2025-05-12 09:12:25
3992	7	534	2025-05-12 09:12:25	2025-05-12 09:12:25
3993	7	539	2025-05-12 09:12:25	2025-05-12 09:12:25
3994	7	535	2025-05-12 09:12:25	2025-05-12 09:12:25
3995	7	558	2025-05-12 09:12:25	2025-05-12 09:12:25
3996	7	559	2025-05-12 09:12:25	2025-05-12 09:12:25
3997	7	647	2025-05-12 09:12:25	2025-05-12 09:12:25
3998	7	667	2025-05-12 09:12:25	2025-05-12 09:12:25
3999	7	668	2025-05-12 09:12:25	2025-05-12 09:12:25
4000	7	673	2025-05-12 09:12:25	2025-05-12 09:12:25
4001	8	14	2025-07-10 21:02:55	2025-07-10 21:02:55
4002	8	15	2025-07-10 21:02:55	2025-07-10 21:02:55
4003	8	16	2025-07-10 21:02:55	2025-07-10 21:02:55
4004	8	17	2025-07-10 21:02:55	2025-07-10 21:02:55
4005	8	18	2025-07-10 21:02:55	2025-07-10 21:02:55
4006	8	19	2025-07-10 21:02:55	2025-07-10 21:02:55
4007	8	20	2025-07-10 21:02:55	2025-07-10 21:02:55
4008	8	21	2025-07-10 21:02:55	2025-07-10 21:02:55
4009	8	22	2025-07-10 21:02:55	2025-07-10 21:02:55
4010	8	23	2025-07-10 21:02:55	2025-07-10 21:02:55
4011	8	24	2025-07-10 21:02:55	2025-07-10 21:02:55
4012	8	448	2025-07-10 21:02:55	2025-07-10 21:02:55
4013	8	441	2025-07-10 21:02:55	2025-07-10 21:02:55
4014	8	442	2025-07-10 21:02:55	2025-07-10 21:02:55
4015	8	546	2025-07-10 21:02:55	2025-07-10 21:02:55
4016	8	584	2025-07-10 21:02:55	2025-07-10 21:02:55
4017	8	614	2025-07-10 21:02:55	2025-07-10 21:02:55
4018	8	615	2025-07-10 21:02:55	2025-07-10 21:02:55
4019	8	617	2025-07-10 21:02:55	2025-07-10 21:02:55
4020	8	618	2025-07-10 21:02:55	2025-07-10 21:02:55
4021	8	224	2025-07-10 21:02:55	2025-07-10 21:02:55
4022	8	225	2025-07-10 21:02:55	2025-07-10 21:02:55
4023	8	226	2025-07-10 21:02:55	2025-07-10 21:02:55
4024	8	227	2025-07-10 21:02:55	2025-07-10 21:02:55
4025	8	228	2025-07-10 21:02:55	2025-07-10 21:02:55
4026	8	229	2025-07-10 21:02:55	2025-07-10 21:02:55
4027	8	230	2025-07-10 21:02:55	2025-07-10 21:02:55
4028	8	231	2025-07-10 21:02:55	2025-07-10 21:02:55
4029	8	232	2025-07-10 21:02:55	2025-07-10 21:02:55
4030	8	233	2025-07-10 21:02:55	2025-07-10 21:02:55
4031	8	359	2025-07-10 21:02:55	2025-07-10 21:02:55
4032	8	360	2025-07-10 21:02:55	2025-07-10 21:02:55
4033	8	234	2025-07-10 21:02:55	2025-07-10 21:02:55
4034	8	235	2025-07-10 21:02:55	2025-07-10 21:02:55
4035	8	236	2025-07-10 21:02:55	2025-07-10 21:02:55
4036	8	237	2025-07-10 21:02:55	2025-07-10 21:02:55
4037	8	238	2025-07-10 21:02:55	2025-07-10 21:02:55
4038	8	239	2025-07-10 21:02:55	2025-07-10 21:02:55
4039	8	240	2025-07-10 21:02:55	2025-07-10 21:02:55
4040	8	241	2025-07-10 21:02:55	2025-07-10 21:02:55
4041	8	242	2025-07-10 21:02:55	2025-07-10 21:02:55
4042	8	243	2025-07-10 21:02:55	2025-07-10 21:02:55
4043	8	244	2025-07-10 21:02:55	2025-07-10 21:02:55
4044	8	245	2025-07-10 21:02:55	2025-07-10 21:02:55
4045	8	246	2025-07-10 21:02:55	2025-07-10 21:02:55
4046	8	247	2025-07-10 21:02:55	2025-07-10 21:02:55
4047	8	248	2025-07-10 21:02:55	2025-07-10 21:02:55
4048	8	249	2025-07-10 21:02:55	2025-07-10 21:02:55
4049	8	250	2025-07-10 21:02:55	2025-07-10 21:02:55
4050	8	251	2025-07-10 21:02:55	2025-07-10 21:02:55
4051	8	252	2025-07-10 21:02:55	2025-07-10 21:02:55
4052	8	253	2025-07-10 21:02:55	2025-07-10 21:02:55
4053	8	254	2025-07-10 21:02:55	2025-07-10 21:02:55
4054	8	255	2025-07-10 21:02:55	2025-07-10 21:02:55
4055	8	256	2025-07-10 21:02:55	2025-07-10 21:02:55
4056	8	257	2025-07-10 21:02:55	2025-07-10 21:02:55
4057	8	258	2025-07-10 21:02:55	2025-07-10 21:02:55
4058	8	259	2025-07-10 21:02:55	2025-07-10 21:02:55
4059	8	260	2025-07-10 21:02:55	2025-07-10 21:02:55
4060	8	261	2025-07-10 21:02:55	2025-07-10 21:02:55
4061	8	262	2025-07-10 21:02:55	2025-07-10 21:02:55
4062	8	263	2025-07-10 21:02:55	2025-07-10 21:02:55
4063	8	264	2025-07-10 21:02:55	2025-07-10 21:02:55
4064	8	509	2025-07-10 21:02:55	2025-07-10 21:02:55
4065	8	265	2025-07-10 21:02:55	2025-07-10 21:02:55
4066	8	266	2025-07-10 21:02:55	2025-07-10 21:02:55
4067	8	267	2025-07-10 21:02:55	2025-07-10 21:02:55
4068	8	268	2025-07-10 21:02:55	2025-07-10 21:02:55
4069	8	269	2025-07-10 21:02:55	2025-07-10 21:02:55
4070	8	270	2025-07-10 21:02:55	2025-07-10 21:02:55
4071	8	271	2025-07-10 21:02:55	2025-07-10 21:02:55
4072	8	272	2025-07-10 21:02:55	2025-07-10 21:02:55
4073	8	273	2025-07-10 21:02:55	2025-07-10 21:02:55
4074	8	274	2025-07-10 21:02:55	2025-07-10 21:02:55
4075	8	275	2025-07-10 21:02:55	2025-07-10 21:02:55
4076	8	276	2025-07-10 21:02:55	2025-07-10 21:02:55
4077	8	277	2025-07-10 21:02:55	2025-07-10 21:02:55
4078	8	278	2025-07-10 21:02:55	2025-07-10 21:02:55
4079	8	279	2025-07-10 21:02:55	2025-07-10 21:02:55
4080	8	280	2025-07-10 21:02:55	2025-07-10 21:02:55
4081	8	281	2025-07-10 21:02:55	2025-07-10 21:02:55
4082	8	282	2025-07-10 21:02:55	2025-07-10 21:02:55
4083	8	283	2025-07-10 21:02:55	2025-07-10 21:02:55
4084	8	284	2025-07-10 21:02:55	2025-07-10 21:02:55
4085	8	285	2025-07-10 21:02:55	2025-07-10 21:02:55
4086	8	286	2025-07-10 21:02:55	2025-07-10 21:02:55
4087	8	287	2025-07-10 21:02:55	2025-07-10 21:02:55
4088	8	288	2025-07-10 21:02:55	2025-07-10 21:02:55
4089	8	289	2025-07-10 21:02:55	2025-07-10 21:02:55
4090	8	294	2025-07-10 21:02:55	2025-07-10 21:02:55
4091	8	295	2025-07-10 21:02:55	2025-07-10 21:02:55
4092	8	296	2025-07-10 21:02:55	2025-07-10 21:02:55
4093	8	297	2025-07-10 21:02:55	2025-07-10 21:02:55
4094	8	500	2025-07-10 21:02:55	2025-07-10 21:02:55
4095	8	501	2025-07-10 21:02:55	2025-07-10 21:02:55
4096	8	502	2025-07-10 21:02:55	2025-07-10 21:02:55
4097	8	510	2025-07-10 21:02:55	2025-07-10 21:02:55
4098	8	511	2025-07-10 21:02:55	2025-07-10 21:02:55
4099	8	512	2025-07-10 21:02:55	2025-07-10 21:02:55
4100	8	567	2025-07-10 21:02:55	2025-07-10 21:02:55
4101	8	594	2025-07-10 21:02:55	2025-07-10 21:02:55
4102	8	679	2025-07-10 21:02:55	2025-07-10 21:02:55
4103	8	298	2025-07-10 21:02:55	2025-07-10 21:02:55
4104	8	299	2025-07-10 21:02:55	2025-07-10 21:02:55
4105	8	300	2025-07-10 21:02:55	2025-07-10 21:02:55
4106	8	310	2025-07-10 21:02:55	2025-07-10 21:02:55
4107	8	311	2025-07-10 21:02:55	2025-07-10 21:02:55
4108	8	312	2025-07-10 21:02:55	2025-07-10 21:02:55
4109	8	313	2025-07-10 21:02:55	2025-07-10 21:02:55
4110	8	314	2025-07-10 21:02:55	2025-07-10 21:02:55
4111	8	315	2025-07-10 21:02:55	2025-07-10 21:02:55
4112	8	316	2025-07-10 21:02:55	2025-07-10 21:02:55
4113	8	317	2025-07-10 21:02:55	2025-07-10 21:02:55
4114	8	318	2025-07-10 21:02:55	2025-07-10 21:02:55
4115	8	358	2025-07-10 21:02:55	2025-07-10 21:02:55
4116	8	365	2025-07-10 21:02:55	2025-07-10 21:02:55
4117	8	350	2025-07-10 21:02:55	2025-07-10 21:02:55
4118	8	351	2025-07-10 21:02:55	2025-07-10 21:02:55
4119	8	352	2025-07-10 21:02:55	2025-07-10 21:02:55
4120	8	353	2025-07-10 21:02:55	2025-07-10 21:02:55
4121	8	354	2025-07-10 21:02:55	2025-07-10 21:02:55
4122	8	355	2025-07-10 21:02:55	2025-07-10 21:02:55
4123	8	356	2025-07-10 21:02:55	2025-07-10 21:02:55
4124	8	357	2025-07-10 21:02:55	2025-07-10 21:02:55
4125	8	392	2025-07-10 21:02:55	2025-07-10 21:02:55
4126	8	396	2025-07-10 21:02:55	2025-07-10 21:02:55
4127	8	301	2025-07-10 21:02:55	2025-07-10 21:02:55
4128	8	302	2025-07-10 21:02:55	2025-07-10 21:02:55
4129	8	303	2025-07-10 21:02:55	2025-07-10 21:02:55
4130	8	304	2025-07-10 21:02:55	2025-07-10 21:02:55
4131	8	305	2025-07-10 21:02:55	2025-07-10 21:02:55
4132	8	306	2025-07-10 21:02:55	2025-07-10 21:02:55
4133	8	307	2025-07-10 21:02:55	2025-07-10 21:02:55
4134	8	308	2025-07-10 21:02:55	2025-07-10 21:02:55
4135	8	309	2025-07-10 21:02:55	2025-07-10 21:02:55
4136	8	590	2025-07-10 21:02:55	2025-07-10 21:02:55
4137	8	591	2025-07-10 21:02:55	2025-07-10 21:02:55
4138	8	319	2025-07-10 21:02:55	2025-07-10 21:02:55
4139	8	320	2025-07-10 21:02:55	2025-07-10 21:02:55
4140	8	321	2025-07-10 21:02:55	2025-07-10 21:02:55
4141	8	322	2025-07-10 21:02:55	2025-07-10 21:02:55
4142	8	323	2025-07-10 21:02:55	2025-07-10 21:02:55
4143	8	324	2025-07-10 21:02:55	2025-07-10 21:02:55
4144	8	325	2025-07-10 21:02:55	2025-07-10 21:02:55
4145	8	326	2025-07-10 21:02:55	2025-07-10 21:02:55
4146	8	327	2025-07-10 21:02:55	2025-07-10 21:02:55
4147	8	328	2025-07-10 21:02:55	2025-07-10 21:02:55
4148	8	676	2025-07-10 21:02:55	2025-07-10 21:02:55
4149	8	339	2025-07-10 21:02:55	2025-07-10 21:02:55
4150	8	385	2025-07-10 21:02:55	2025-07-10 21:02:55
4151	8	386	2025-07-10 21:02:55	2025-07-10 21:02:55
4152	8	387	2025-07-10 21:02:55	2025-07-10 21:02:55
4153	8	388	2025-07-10 21:02:55	2025-07-10 21:02:55
4154	8	389	2025-07-10 21:02:55	2025-07-10 21:02:55
4155	8	390	2025-07-10 21:02:55	2025-07-10 21:02:55
4156	8	391	2025-07-10 21:02:55	2025-07-10 21:02:55
4157	8	555	2025-07-10 21:02:55	2025-07-10 21:02:55
4158	8	556	2025-07-10 21:02:55	2025-07-10 21:02:55
4159	8	557	2025-07-10 21:02:55	2025-07-10 21:02:55
4160	8	455	2025-07-10 21:02:55	2025-07-10 21:02:55
4161	8	456	2025-07-10 21:02:55	2025-07-10 21:02:55
4162	8	457	2025-07-10 21:02:55	2025-07-10 21:02:55
4163	8	458	2025-07-10 21:02:55	2025-07-10 21:02:55
4164	8	459	2025-07-10 21:02:55	2025-07-10 21:02:55
4165	8	460	2025-07-10 21:02:55	2025-07-10 21:02:55
4166	8	461	2025-07-10 21:02:55	2025-07-10 21:02:55
4167	8	462	2025-07-10 21:02:55	2025-07-10 21:02:55
4168	8	463	2025-07-10 21:02:55	2025-07-10 21:02:55
4169	8	465	2025-07-10 21:02:55	2025-07-10 21:02:55
4170	8	466	2025-07-10 21:02:55	2025-07-10 21:02:55
4171	8	467	2025-07-10 21:02:55	2025-07-10 21:02:55
4172	8	468	2025-07-10 21:02:55	2025-07-10 21:02:55
4173	8	469	2025-07-10 21:02:55	2025-07-10 21:02:55
4174	8	470	2025-07-10 21:02:55	2025-07-10 21:02:55
4175	8	471	2025-07-10 21:02:55	2025-07-10 21:02:55
4176	8	472	2025-07-10 21:02:55	2025-07-10 21:02:55
4177	8	473	2025-07-10 21:02:55	2025-07-10 21:02:55
4178	8	474	2025-07-10 21:02:55	2025-07-10 21:02:55
4179	8	476	2025-07-10 21:02:55	2025-07-10 21:02:55
4180	8	478	2025-07-10 21:02:55	2025-07-10 21:02:55
4181	8	479	2025-07-10 21:02:55	2025-07-10 21:02:55
4182	8	475	2025-07-10 21:02:55	2025-07-10 21:02:55
4183	8	480	2025-07-10 21:02:55	2025-07-10 21:02:55
4184	8	481	2025-07-10 21:02:55	2025-07-10 21:02:55
4185	8	482	2025-07-10 21:02:55	2025-07-10 21:02:55
4186	8	483	2025-07-10 21:02:55	2025-07-10 21:02:55
4187	8	484	2025-07-10 21:02:55	2025-07-10 21:02:55
4188	8	485	2025-07-10 21:02:55	2025-07-10 21:02:55
4189	8	486	2025-07-10 21:02:55	2025-07-10 21:02:55
4190	8	576	2025-07-10 21:02:55	2025-07-10 21:02:55
4191	8	577	2025-07-10 21:02:55	2025-07-10 21:02:55
4192	8	578	2025-07-10 21:02:55	2025-07-10 21:02:55
4193	8	579	2025-07-10 21:02:55	2025-07-10 21:02:55
4194	8	580	2025-07-10 21:02:55	2025-07-10 21:02:55
4195	8	581	2025-07-10 21:02:55	2025-07-10 21:02:55
4196	8	582	2025-07-10 21:02:55	2025-07-10 21:02:55
4197	8	583	2025-07-10 21:02:55	2025-07-10 21:02:55
4198	8	25	2025-07-10 21:02:55	2025-07-10 21:02:55
4199	8	487	2025-07-10 21:02:55	2025-07-10 21:02:55
4200	8	488	2025-07-10 21:02:55	2025-07-10 21:02:55
4201	8	489	2025-07-10 21:02:55	2025-07-10 21:02:55
4202	8	490	2025-07-10 21:02:55	2025-07-10 21:02:55
4203	8	491	2025-07-10 21:02:55	2025-07-10 21:02:55
4204	8	551	2025-07-10 21:02:55	2025-07-10 21:02:55
4205	8	552	2025-07-10 21:02:55	2025-07-10 21:02:55
4206	8	568	2025-07-10 21:02:55	2025-07-10 21:02:55
4207	8	569	2025-07-10 21:02:55	2025-07-10 21:02:55
4208	8	570	2025-07-10 21:02:55	2025-07-10 21:02:55
4209	8	492	2025-07-10 21:02:55	2025-07-10 21:02:55
4210	8	493	2025-07-10 21:02:55	2025-07-10 21:02:55
4211	8	494	2025-07-10 21:02:55	2025-07-10 21:02:55
4212	8	495	2025-07-10 21:02:55	2025-07-10 21:02:55
4213	8	497	2025-07-10 21:02:55	2025-07-10 21:02:55
4214	8	496	2025-07-10 21:02:55	2025-07-10 21:02:55
4215	8	572	2025-07-10 21:02:55	2025-07-10 21:02:55
4216	8	573	2025-07-10 21:02:55	2025-07-10 21:02:55
4217	8	574	2025-07-10 21:02:55	2025-07-10 21:02:55
4218	8	575	2025-07-10 21:02:55	2025-07-10 21:02:55
4219	8	622	2025-07-10 21:02:55	2025-07-10 21:02:55
4220	8	378	2025-07-10 21:02:55	2025-07-10 21:02:55
4221	8	528	2025-07-10 21:02:55	2025-07-10 21:02:55
4222	8	595	2025-07-10 21:02:55	2025-07-10 21:02:55
4223	8	596	2025-07-10 21:02:55	2025-07-10 21:02:55
4224	8	597	2025-07-10 21:02:55	2025-07-10 21:02:55
4225	8	598	2025-07-10 21:02:55	2025-07-10 21:02:55
4226	8	599	2025-07-10 21:02:55	2025-07-10 21:02:55
4227	8	600	2025-07-10 21:02:55	2025-07-10 21:02:55
4228	8	601	2025-07-10 21:02:55	2025-07-10 21:02:55
4229	8	602	2025-07-10 21:02:55	2025-07-10 21:02:55
4230	8	603	2025-07-10 21:02:55	2025-07-10 21:02:55
4231	8	604	2025-07-10 21:02:55	2025-07-10 21:02:55
4232	8	605	2025-07-10 21:02:55	2025-07-10 21:02:55
4233	8	606	2025-07-10 21:02:55	2025-07-10 21:02:55
4234	8	607	2025-07-10 21:02:55	2025-07-10 21:02:55
4235	8	608	2025-07-10 21:02:55	2025-07-10 21:02:55
4236	8	609	2025-07-10 21:02:55	2025-07-10 21:02:55
4237	8	610	2025-07-10 21:02:55	2025-07-10 21:02:55
4238	8	611	2025-07-10 21:02:55	2025-07-10 21:02:55
4239	8	612	2025-07-10 21:02:55	2025-07-10 21:02:55
4240	8	613	2025-07-10 21:02:55	2025-07-10 21:02:55
4241	8	677	2025-07-10 21:02:55	2025-07-10 21:02:55
4242	8	678	2025-07-10 21:02:55	2025-07-10 21:02:55
4243	8	706	2025-07-10 21:02:55	2025-07-10 21:02:55
4244	8	707	2025-07-10 21:02:55	2025-07-10 21:02:55
4245	8	623	2025-07-10 21:02:55	2025-07-10 21:02:55
4246	8	624	2025-07-10 21:02:55	2025-07-10 21:02:55
4247	8	625	2025-07-10 21:02:55	2025-07-10 21:02:55
4248	8	626	2025-07-10 21:02:55	2025-07-10 21:02:55
4249	8	627	2025-07-10 21:02:55	2025-07-10 21:02:55
4250	8	628	2025-07-10 21:02:55	2025-07-10 21:02:55
4251	8	629	2025-07-10 21:02:55	2025-07-10 21:02:55
4252	8	630	2025-07-10 21:02:55	2025-07-10 21:02:55
4253	8	631	2025-07-10 21:02:55	2025-07-10 21:02:55
4254	8	632	2025-07-10 21:02:55	2025-07-10 21:02:55
4255	8	633	2025-07-10 21:02:55	2025-07-10 21:02:55
4256	8	634	2025-07-10 21:02:55	2025-07-10 21:02:55
4257	8	635	2025-07-10 21:02:55	2025-07-10 21:02:55
4258	8	636	2025-07-10 21:02:55	2025-07-10 21:02:55
4259	8	637	2025-07-10 21:02:55	2025-07-10 21:02:55
4260	8	638	2025-07-10 21:02:55	2025-07-10 21:02:55
4261	8	659	2025-07-10 21:02:55	2025-07-10 21:02:55
4262	8	639	2025-07-10 21:02:55	2025-07-10 21:02:55
4263	8	640	2025-07-10 21:02:55	2025-07-10 21:02:55
4264	8	641	2025-07-10 21:02:55	2025-07-10 21:02:55
4265	8	642	2025-07-10 21:02:55	2025-07-10 21:02:55
4266	8	643	2025-07-10 21:02:55	2025-07-10 21:02:55
4267	8	644	2025-07-10 21:02:55	2025-07-10 21:02:55
4268	8	645	2025-07-10 21:02:55	2025-07-10 21:02:55
4269	8	646	2025-07-10 21:02:55	2025-07-10 21:02:55
4270	8	700	2025-07-10 21:02:55	2025-07-10 21:02:55
4271	8	701	2025-07-10 21:02:55	2025-07-10 21:02:55
4272	8	702	2025-07-10 21:02:55	2025-07-10 21:02:55
4273	8	703	2025-07-10 21:02:55	2025-07-10 21:02:55
4274	8	704	2025-07-10 21:02:55	2025-07-10 21:02:55
4275	8	705	2025-07-10 21:02:55	2025-07-10 21:02:55
4276	8	26	2025-07-10 21:02:55	2025-07-10 21:02:55
4277	8	28	2025-07-10 21:02:55	2025-07-10 21:02:55
4278	8	29	2025-07-10 21:02:55	2025-07-10 21:02:55
4279	8	30	2025-07-10 21:02:55	2025-07-10 21:02:55
4280	8	31	2025-07-10 21:02:55	2025-07-10 21:02:55
4281	8	32	2025-07-10 21:02:55	2025-07-10 21:02:55
4282	8	33	2025-07-10 21:02:55	2025-07-10 21:02:55
4283	8	367	2025-07-10 21:02:55	2025-07-10 21:02:55
4284	8	368	2025-07-10 21:02:55	2025-07-10 21:02:55
4285	8	369	2025-07-10 21:02:55	2025-07-10 21:02:55
4286	8	370	2025-07-10 21:02:55	2025-07-10 21:02:55
4287	8	371	2025-07-10 21:02:55	2025-07-10 21:02:55
4288	8	373	2025-07-10 21:02:55	2025-07-10 21:02:55
4289	8	395	2025-07-10 21:02:55	2025-07-10 21:02:55
4290	8	39	2025-07-10 21:02:55	2025-07-10 21:02:55
4291	8	379	2025-07-10 21:02:55	2025-07-10 21:02:55
4292	8	380	2025-07-10 21:02:55	2025-07-10 21:02:55
4293	8	34	2025-07-10 21:02:55	2025-07-10 21:02:55
4294	8	35	2025-07-10 21:02:55	2025-07-10 21:02:55
4295	8	36	2025-07-10 21:02:55	2025-07-10 21:02:55
4296	8	37	2025-07-10 21:02:55	2025-07-10 21:02:55
4297	8	38	2025-07-10 21:02:55	2025-07-10 21:02:55
4298	8	424	2025-07-10 21:02:55	2025-07-10 21:02:55
4299	8	425	2025-07-10 21:02:55	2025-07-10 21:02:55
4300	8	427	2025-07-10 21:02:55	2025-07-10 21:02:55
4301	8	443	2025-07-10 21:02:55	2025-07-10 21:02:55
4302	8	449	2025-07-10 21:02:55	2025-07-10 21:02:55
4303	8	453	2025-07-10 21:02:55	2025-07-10 21:02:55
4304	8	454	2025-07-10 21:02:55	2025-07-10 21:02:55
4305	8	464	2025-07-10 21:02:55	2025-07-10 21:02:55
4306	8	450	2025-07-10 21:02:55	2025-07-10 21:02:55
4307	8	498	2025-07-10 21:02:55	2025-07-10 21:02:55
4308	8	499	2025-07-10 21:02:55	2025-07-10 21:02:55
4309	8	513	2025-07-10 21:02:55	2025-07-10 21:02:55
4310	8	514	2025-07-10 21:02:55	2025-07-10 21:02:55
4311	8	515	2025-07-10 21:02:55	2025-07-10 21:02:55
4312	8	516	2025-07-10 21:02:55	2025-07-10 21:02:55
4313	8	517	2025-07-10 21:02:55	2025-07-10 21:02:55
4314	8	518	2025-07-10 21:02:55	2025-07-10 21:02:55
4315	8	520	2025-07-10 21:02:55	2025-07-10 21:02:55
4316	8	521	2025-07-10 21:02:55	2025-07-10 21:02:55
4317	8	522	2025-07-10 21:02:55	2025-07-10 21:02:55
4318	8	523	2025-07-10 21:02:55	2025-07-10 21:02:55
4319	8	531	2025-07-10 21:02:55	2025-07-10 21:02:55
4320	8	547	2025-07-10 21:02:55	2025-07-10 21:02:55
4321	8	548	2025-07-10 21:02:55	2025-07-10 21:02:55
4322	8	549	2025-07-10 21:02:55	2025-07-10 21:02:55
4323	8	550	2025-07-10 21:02:55	2025-07-10 21:02:55
4324	8	553	2025-07-10 21:02:55	2025-07-10 21:02:55
4325	8	554	2025-07-10 21:02:55	2025-07-10 21:02:55
4326	8	586	2025-07-10 21:02:55	2025-07-10 21:02:55
4327	8	593	2025-07-10 21:02:55	2025-07-10 21:02:55
4328	8	652	2025-07-10 21:02:55	2025-07-10 21:02:55
4329	8	653	2025-07-10 21:02:55	2025-07-10 21:02:55
4330	8	654	2025-07-10 21:02:55	2025-07-10 21:02:55
4331	8	655	2025-07-10 21:02:55	2025-07-10 21:02:55
4332	8	656	2025-07-10 21:02:55	2025-07-10 21:02:55
4333	8	657	2025-07-10 21:02:55	2025-07-10 21:02:55
4334	8	658	2025-07-10 21:02:55	2025-07-10 21:02:55
4335	8	682	2025-07-10 21:02:55	2025-07-10 21:02:55
4336	8	683	2025-07-10 21:02:55	2025-07-10 21:02:55
4337	8	684	2025-07-10 21:02:55	2025-07-10 21:02:55
4338	8	685	2025-07-10 21:02:55	2025-07-10 21:02:55
4339	8	686	2025-07-10 21:02:55	2025-07-10 21:02:55
4340	8	687	2025-07-10 21:02:55	2025-07-10 21:02:55
4341	8	688	2025-07-10 21:02:55	2025-07-10 21:02:55
4342	8	27	2025-07-10 21:02:55	2025-07-10 21:02:55
4343	8	692	2025-07-10 21:02:55	2025-07-10 21:02:55
4344	8	708	2025-07-10 21:02:55	2025-07-10 21:02:55
4345	8	40	2025-07-10 21:02:55	2025-07-10 21:02:55
4346	8	44	2025-07-10 21:02:55	2025-07-10 21:02:55
4347	8	45	2025-07-10 21:02:55	2025-07-10 21:02:55
4348	8	46	2025-07-10 21:02:55	2025-07-10 21:02:55
4349	8	47	2025-07-10 21:02:55	2025-07-10 21:02:55
4350	8	48	2025-07-10 21:02:55	2025-07-10 21:02:55
4351	8	49	2025-07-10 21:02:55	2025-07-10 21:02:55
4352	8	50	2025-07-10 21:02:55	2025-07-10 21:02:55
4353	8	51	2025-07-10 21:02:55	2025-07-10 21:02:55
4354	8	52	2025-07-10 21:02:55	2025-07-10 21:02:55
4355	8	372	2025-07-10 21:02:55	2025-07-10 21:02:55
4356	8	384	2025-07-10 21:02:55	2025-07-10 21:02:55
4357	8	41	2025-07-10 21:02:55	2025-07-10 21:02:55
4358	8	42	2025-07-10 21:02:55	2025-07-10 21:02:55
4359	8	43	2025-07-10 21:02:55	2025-07-10 21:02:55
4360	8	529	2025-07-10 21:02:55	2025-07-10 21:02:55
4361	8	526	2025-07-10 21:02:55	2025-07-10 21:02:55
4362	8	525	2025-07-10 21:02:55	2025-07-10 21:02:55
4363	8	527	2025-07-10 21:02:55	2025-07-10 21:02:55
4364	8	530	2025-07-10 21:02:55	2025-07-10 21:02:55
4365	8	519	2025-07-10 21:02:55	2025-07-10 21:02:55
4366	8	587	2025-07-10 21:02:55	2025-07-10 21:02:55
4367	8	592	2025-07-10 21:02:55	2025-07-10 21:02:55
4368	8	648	2025-07-10 21:02:55	2025-07-10 21:02:55
4369	8	524	2025-07-10 21:02:55	2025-07-10 21:02:55
4370	8	588	2025-07-10 21:02:55	2025-07-10 21:02:55
4371	8	616	2025-07-10 21:02:55	2025-07-10 21:02:55
4372	8	452	2025-07-10 21:02:55	2025-07-10 21:02:55
4373	8	589	2025-07-10 21:02:55	2025-07-10 21:02:55
4374	8	665	2025-07-10 21:02:55	2025-07-10 21:02:55
4375	8	693	2025-07-10 21:02:55	2025-07-10 21:02:55
4376	8	694	2025-07-10 21:02:55	2025-07-10 21:02:55
4377	8	695	2025-07-10 21:02:55	2025-07-10 21:02:55
4378	8	53	2025-07-10 21:02:55	2025-07-10 21:02:55
4379	8	54	2025-07-10 21:02:55	2025-07-10 21:02:55
4380	8	55	2025-07-10 21:02:55	2025-07-10 21:02:55
4381	8	56	2025-07-10 21:02:55	2025-07-10 21:02:55
4382	8	57	2025-07-10 21:02:55	2025-07-10 21:02:55
4383	8	58	2025-07-10 21:02:55	2025-07-10 21:02:55
4384	8	59	2025-07-10 21:02:55	2025-07-10 21:02:55
4385	8	60	2025-07-10 21:02:55	2025-07-10 21:02:55
4386	8	61	2025-07-10 21:02:55	2025-07-10 21:02:55
4387	8	62	2025-07-10 21:02:55	2025-07-10 21:02:55
4388	8	63	2025-07-10 21:02:55	2025-07-10 21:02:55
4389	8	64	2025-07-10 21:02:55	2025-07-10 21:02:55
4390	8	65	2025-07-10 21:02:55	2025-07-10 21:02:55
4391	8	66	2025-07-10 21:02:55	2025-07-10 21:02:55
4392	8	67	2025-07-10 21:02:55	2025-07-10 21:02:55
4393	8	68	2025-07-10 21:02:55	2025-07-10 21:02:55
4394	8	69	2025-07-10 21:02:55	2025-07-10 21:02:55
4395	8	70	2025-07-10 21:02:55	2025-07-10 21:02:55
4396	8	71	2025-07-10 21:02:55	2025-07-10 21:02:55
4397	8	72	2025-07-10 21:02:55	2025-07-10 21:02:55
4398	8	73	2025-07-10 21:02:55	2025-07-10 21:02:55
4399	8	74	2025-07-10 21:02:55	2025-07-10 21:02:55
4400	8	75	2025-07-10 21:02:55	2025-07-10 21:02:55
4401	8	76	2025-07-10 21:02:55	2025-07-10 21:02:55
4402	8	77	2025-07-10 21:02:55	2025-07-10 21:02:55
4403	8	432	2025-07-10 21:02:55	2025-07-10 21:02:55
4404	8	433	2025-07-10 21:02:55	2025-07-10 21:02:55
4405	8	434	2025-07-10 21:02:55	2025-07-10 21:02:55
4406	8	435	2025-07-10 21:02:55	2025-07-10 21:02:55
4407	8	436	2025-07-10 21:02:55	2025-07-10 21:02:55
4408	8	437	2025-07-10 21:02:55	2025-07-10 21:02:55
4409	8	438	2025-07-10 21:02:55	2025-07-10 21:02:55
4410	8	439	2025-07-10 21:02:55	2025-07-10 21:02:55
4411	8	440	2025-07-10 21:02:55	2025-07-10 21:02:55
4412	8	451	2025-07-10 21:02:56	2025-07-10 21:02:56
4413	8	477	2025-07-10 21:02:56	2025-07-10 21:02:56
4414	8	585	2025-07-10 21:02:56	2025-07-10 21:02:56
4415	8	669	2025-07-10 21:02:56	2025-07-10 21:02:56
4416	8	670	2025-07-10 21:02:56	2025-07-10 21:02:56
4417	8	671	2025-07-10 21:02:56	2025-07-10 21:02:56
4418	8	672	2025-07-10 21:02:56	2025-07-10 21:02:56
4419	8	680	2025-07-10 21:02:56	2025-07-10 21:02:56
4420	8	681	2025-07-10 21:02:56	2025-07-10 21:02:56
4421	8	689	2025-07-10 21:02:56	2025-07-10 21:02:56
4422	8	698	2025-07-10 21:02:56	2025-07-10 21:02:56
4423	8	699	2025-07-10 21:02:56	2025-07-10 21:02:56
4424	8	78	2025-07-10 21:02:56	2025-07-10 21:02:56
4425	8	79	2025-07-10 21:02:56	2025-07-10 21:02:56
4426	8	80	2025-07-10 21:02:56	2025-07-10 21:02:56
4427	8	81	2025-07-10 21:02:56	2025-07-10 21:02:56
4428	8	82	2025-07-10 21:02:56	2025-07-10 21:02:56
4429	8	83	2025-07-10 21:02:56	2025-07-10 21:02:56
4430	8	84	2025-07-10 21:02:56	2025-07-10 21:02:56
4431	8	85	2025-07-10 21:02:56	2025-07-10 21:02:56
4432	8	86	2025-07-10 21:02:56	2025-07-10 21:02:56
4433	8	87	2025-07-10 21:02:56	2025-07-10 21:02:56
4434	8	88	2025-07-10 21:02:56	2025-07-10 21:02:56
4435	8	89	2025-07-10 21:02:56	2025-07-10 21:02:56
4436	8	90	2025-07-10 21:02:56	2025-07-10 21:02:56
4437	8	91	2025-07-10 21:02:56	2025-07-10 21:02:56
4438	8	92	2025-07-10 21:02:56	2025-07-10 21:02:56
4439	8	93	2025-07-10 21:02:56	2025-07-10 21:02:56
4440	8	94	2025-07-10 21:02:56	2025-07-10 21:02:56
4441	8	374	2025-07-10 21:02:56	2025-07-10 21:02:56
4442	8	375	2025-07-10 21:02:56	2025-07-10 21:02:56
4443	8	393	2025-07-10 21:02:56	2025-07-10 21:02:56
4444	8	394	2025-07-10 21:02:56	2025-07-10 21:02:56
4445	8	397	2025-07-10 21:02:56	2025-07-10 21:02:56
4446	8	398	2025-07-10 21:02:56	2025-07-10 21:02:56
4447	8	541	2025-07-10 21:02:56	2025-07-10 21:02:56
4448	8	543	2025-07-10 21:02:56	2025-07-10 21:02:56
4449	8	545	2025-07-10 21:02:56	2025-07-10 21:02:56
4450	8	571	2025-07-10 21:02:56	2025-07-10 21:02:56
4451	8	95	2025-07-10 21:02:56	2025-07-10 21:02:56
4452	8	96	2025-07-10 21:02:56	2025-07-10 21:02:56
4453	8	97	2025-07-10 21:02:56	2025-07-10 21:02:56
4454	8	98	2025-07-10 21:02:56	2025-07-10 21:02:56
4455	8	99	2025-07-10 21:02:56	2025-07-10 21:02:56
4456	8	100	2025-07-10 21:02:56	2025-07-10 21:02:56
4457	8	101	2025-07-10 21:02:56	2025-07-10 21:02:56
4458	8	102	2025-07-10 21:02:56	2025-07-10 21:02:56
4459	8	103	2025-07-10 21:02:56	2025-07-10 21:02:56
4460	8	104	2025-07-10 21:02:56	2025-07-10 21:02:56
4461	8	361	2025-07-10 21:02:56	2025-07-10 21:02:56
4462	8	362	2025-07-10 21:02:56	2025-07-10 21:02:56
4463	8	363	2025-07-10 21:02:56	2025-07-10 21:02:56
4464	8	364	2025-07-10 21:02:56	2025-07-10 21:02:56
4465	8	366	2025-07-10 21:02:56	2025-07-10 21:02:56
4466	8	376	2025-07-10 21:02:56	2025-07-10 21:02:56
4467	8	377	2025-07-10 21:02:56	2025-07-10 21:02:56
4468	8	105	2025-07-10 21:02:56	2025-07-10 21:02:56
4469	8	106	2025-07-10 21:02:56	2025-07-10 21:02:56
4470	8	107	2025-07-10 21:02:56	2025-07-10 21:02:56
4471	8	108	2025-07-10 21:02:56	2025-07-10 21:02:56
4472	8	109	2025-07-10 21:02:56	2025-07-10 21:02:56
4473	8	110	2025-07-10 21:02:56	2025-07-10 21:02:56
4474	8	111	2025-07-10 21:02:56	2025-07-10 21:02:56
4475	8	112	2025-07-10 21:02:56	2025-07-10 21:02:56
4476	8	113	2025-07-10 21:02:56	2025-07-10 21:02:56
4477	8	114	2025-07-10 21:02:56	2025-07-10 21:02:56
4478	8	115	2025-07-10 21:02:56	2025-07-10 21:02:56
4479	8	116	2025-07-10 21:02:56	2025-07-10 21:02:56
4480	8	117	2025-07-10 21:02:56	2025-07-10 21:02:56
4481	8	428	2025-07-10 21:02:56	2025-07-10 21:02:56
4482	8	429	2025-07-10 21:02:56	2025-07-10 21:02:56
4483	8	430	2025-07-10 21:02:56	2025-07-10 21:02:56
4484	8	431	2025-07-10 21:02:56	2025-07-10 21:02:56
4485	8	444	2025-07-10 21:02:56	2025-07-10 21:02:56
4486	8	445	2025-07-10 21:02:56	2025-07-10 21:02:56
4487	8	446	2025-07-10 21:02:56	2025-07-10 21:02:56
4488	8	447	2025-07-10 21:02:56	2025-07-10 21:02:56
4489	8	507	2025-07-10 21:02:56	2025-07-10 21:02:56
4490	8	508	2025-07-10 21:02:56	2025-07-10 21:02:56
4491	8	532	2025-07-10 21:02:56	2025-07-10 21:02:56
4492	8	540	2025-07-10 21:02:56	2025-07-10 21:02:56
4493	8	542	2025-07-10 21:02:56	2025-07-10 21:02:56
4494	8	544	2025-07-10 21:02:56	2025-07-10 21:02:56
4495	8	564	2025-07-10 21:02:56	2025-07-10 21:02:56
4496	8	565	2025-07-10 21:02:56	2025-07-10 21:02:56
4497	8	566	2025-07-10 21:02:56	2025-07-10 21:02:56
4498	8	619	2025-07-10 21:02:56	2025-07-10 21:02:56
4499	8	620	2025-07-10 21:02:56	2025-07-10 21:02:56
4500	8	621	2025-07-10 21:02:56	2025-07-10 21:02:56
4501	8	649	2025-07-10 21:02:56	2025-07-10 21:02:56
4502	8	650	2025-07-10 21:02:56	2025-07-10 21:02:56
4503	8	651	2025-07-10 21:02:56	2025-07-10 21:02:56
4504	8	660	2025-07-10 21:02:56	2025-07-10 21:02:56
4505	8	661	2025-07-10 21:02:56	2025-07-10 21:02:56
4506	8	662	2025-07-10 21:02:56	2025-07-10 21:02:56
4507	8	663	2025-07-10 21:02:56	2025-07-10 21:02:56
4508	8	664	2025-07-10 21:02:56	2025-07-10 21:02:56
4509	8	666	2025-07-10 21:02:56	2025-07-10 21:02:56
4510	8	674	2025-07-10 21:02:56	2025-07-10 21:02:56
4511	8	675	2025-07-10 21:02:56	2025-07-10 21:02:56
4512	8	118	2025-07-10 21:02:56	2025-07-10 21:02:56
4513	8	119	2025-07-10 21:02:56	2025-07-10 21:02:56
4514	8	120	2025-07-10 21:02:56	2025-07-10 21:02:56
4515	8	121	2025-07-10 21:02:56	2025-07-10 21:02:56
4516	8	122	2025-07-10 21:02:56	2025-07-10 21:02:56
4517	8	123	2025-07-10 21:02:56	2025-07-10 21:02:56
4518	8	124	2025-07-10 21:02:56	2025-07-10 21:02:56
4519	8	125	2025-07-10 21:02:56	2025-07-10 21:02:56
4520	8	126	2025-07-10 21:02:56	2025-07-10 21:02:56
4521	8	127	2025-07-10 21:02:56	2025-07-10 21:02:56
4522	8	128	2025-07-10 21:02:56	2025-07-10 21:02:56
4523	8	129	2025-07-10 21:02:56	2025-07-10 21:02:56
4524	8	130	2025-07-10 21:02:56	2025-07-10 21:02:56
4525	8	329	2025-07-10 21:02:56	2025-07-10 21:02:56
4526	8	330	2025-07-10 21:02:56	2025-07-10 21:02:56
4527	8	331	2025-07-10 21:02:56	2025-07-10 21:02:56
4528	8	332	2025-07-10 21:02:56	2025-07-10 21:02:56
4529	8	333	2025-07-10 21:02:56	2025-07-10 21:02:56
4530	8	334	2025-07-10 21:02:56	2025-07-10 21:02:56
4531	8	340	2025-07-10 21:02:56	2025-07-10 21:02:56
4532	8	131	2025-07-10 21:02:56	2025-07-10 21:02:56
4533	8	132	2025-07-10 21:02:56	2025-07-10 21:02:56
4534	8	133	2025-07-10 21:02:56	2025-07-10 21:02:56
4535	8	134	2025-07-10 21:02:56	2025-07-10 21:02:56
4536	8	135	2025-07-10 21:02:56	2025-07-10 21:02:56
4537	8	136	2025-07-10 21:02:56	2025-07-10 21:02:56
4538	8	137	2025-07-10 21:02:56	2025-07-10 21:02:56
4539	8	138	2025-07-10 21:02:56	2025-07-10 21:02:56
4540	8	139	2025-07-10 21:02:56	2025-07-10 21:02:56
4541	8	140	2025-07-10 21:02:56	2025-07-10 21:02:56
4542	8	141	2025-07-10 21:02:56	2025-07-10 21:02:56
4543	8	142	2025-07-10 21:02:56	2025-07-10 21:02:56
4544	8	143	2025-07-10 21:02:56	2025-07-10 21:02:56
4545	8	144	2025-07-10 21:02:56	2025-07-10 21:02:56
4546	8	145	2025-07-10 21:02:56	2025-07-10 21:02:56
4547	8	146	2025-07-10 21:02:56	2025-07-10 21:02:56
4548	8	147	2025-07-10 21:02:56	2025-07-10 21:02:56
4549	8	148	2025-07-10 21:02:56	2025-07-10 21:02:56
4550	8	149	2025-07-10 21:02:56	2025-07-10 21:02:56
4551	8	150	2025-07-10 21:02:56	2025-07-10 21:02:56
4552	8	151	2025-07-10 21:02:56	2025-07-10 21:02:56
4553	8	152	2025-07-10 21:02:56	2025-07-10 21:02:56
4554	8	153	2025-07-10 21:02:56	2025-07-10 21:02:56
4555	8	154	2025-07-10 21:02:56	2025-07-10 21:02:56
4556	8	155	2025-07-10 21:02:56	2025-07-10 21:02:56
4557	8	156	2025-07-10 21:02:56	2025-07-10 21:02:56
4558	8	157	2025-07-10 21:02:56	2025-07-10 21:02:56
4559	8	158	2025-07-10 21:02:56	2025-07-10 21:02:56
4560	8	159	2025-07-10 21:02:56	2025-07-10 21:02:56
4561	8	160	2025-07-10 21:02:56	2025-07-10 21:02:56
4562	8	161	2025-07-10 21:02:56	2025-07-10 21:02:56
4563	8	162	2025-07-10 21:02:56	2025-07-10 21:02:56
4564	8	163	2025-07-10 21:02:56	2025-07-10 21:02:56
4565	8	164	2025-07-10 21:02:56	2025-07-10 21:02:56
4566	8	165	2025-07-10 21:02:56	2025-07-10 21:02:56
4567	8	166	2025-07-10 21:02:56	2025-07-10 21:02:56
4568	8	167	2025-07-10 21:02:56	2025-07-10 21:02:56
4569	8	168	2025-07-10 21:02:56	2025-07-10 21:02:56
4570	8	169	2025-07-10 21:02:56	2025-07-10 21:02:56
4571	8	170	2025-07-10 21:02:56	2025-07-10 21:02:56
4572	8	171	2025-07-10 21:02:56	2025-07-10 21:02:56
4573	8	172	2025-07-10 21:02:56	2025-07-10 21:02:56
4574	8	173	2025-07-10 21:02:56	2025-07-10 21:02:56
4575	8	426	2025-07-10 21:02:56	2025-07-10 21:02:56
4576	8	341	2025-07-10 21:02:56	2025-07-10 21:02:56
4577	8	342	2025-07-10 21:02:56	2025-07-10 21:02:56
4578	8	343	2025-07-10 21:02:56	2025-07-10 21:02:56
4579	8	346	2025-07-10 21:02:56	2025-07-10 21:02:56
4580	8	347	2025-07-10 21:02:56	2025-07-10 21:02:56
4581	8	348	2025-07-10 21:02:56	2025-07-10 21:02:56
4582	8	349	2025-07-10 21:02:56	2025-07-10 21:02:56
4583	8	536	2025-07-10 21:02:56	2025-07-10 21:02:56
4584	8	537	2025-07-10 21:02:56	2025-07-10 21:02:56
4585	8	538	2025-07-10 21:02:56	2025-07-10 21:02:56
4586	8	560	2025-07-10 21:02:56	2025-07-10 21:02:56
4587	8	561	2025-07-10 21:02:56	2025-07-10 21:02:56
4588	8	562	2025-07-10 21:02:56	2025-07-10 21:02:56
4589	8	563	2025-07-10 21:02:56	2025-07-10 21:02:56
4590	8	199	2025-07-10 21:02:56	2025-07-10 21:02:56
4591	8	690	2025-07-10 21:02:56	2025-07-10 21:02:56
4592	8	344	2025-07-10 21:02:56	2025-07-10 21:02:56
4593	8	345	2025-07-10 21:02:56	2025-07-10 21:02:56
4594	8	691	2025-07-10 21:02:56	2025-07-10 21:02:56
4595	8	696	2025-07-10 21:02:56	2025-07-10 21:02:56
4596	8	697	2025-07-10 21:02:56	2025-07-10 21:02:56
4597	8	174	2025-07-10 21:02:56	2025-07-10 21:02:56
4598	8	176	2025-07-10 21:02:56	2025-07-10 21:02:56
4599	8	177	2025-07-10 21:02:56	2025-07-10 21:02:56
4600	8	178	2025-07-10 21:02:56	2025-07-10 21:02:56
4601	8	179	2025-07-10 21:02:56	2025-07-10 21:02:56
4602	8	180	2025-07-10 21:02:56	2025-07-10 21:02:56
4603	8	181	2025-07-10 21:02:56	2025-07-10 21:02:56
4604	8	182	2025-07-10 21:02:56	2025-07-10 21:02:56
4605	8	183	2025-07-10 21:02:56	2025-07-10 21:02:56
4606	8	184	2025-07-10 21:02:56	2025-07-10 21:02:56
4607	8	185	2025-07-10 21:02:56	2025-07-10 21:02:56
4608	8	186	2025-07-10 21:02:56	2025-07-10 21:02:56
4609	8	187	2025-07-10 21:02:56	2025-07-10 21:02:56
4610	8	188	2025-07-10 21:02:56	2025-07-10 21:02:56
4611	8	189	2025-07-10 21:02:56	2025-07-10 21:02:56
4612	8	190	2025-07-10 21:02:56	2025-07-10 21:02:56
4613	8	191	2025-07-10 21:02:56	2025-07-10 21:02:56
4614	8	192	2025-07-10 21:02:56	2025-07-10 21:02:56
4615	8	193	2025-07-10 21:02:56	2025-07-10 21:02:56
4616	8	194	2025-07-10 21:02:56	2025-07-10 21:02:56
4617	8	195	2025-07-10 21:02:56	2025-07-10 21:02:56
4618	8	196	2025-07-10 21:02:56	2025-07-10 21:02:56
4619	8	197	2025-07-10 21:02:56	2025-07-10 21:02:56
4620	8	198	2025-07-10 21:02:56	2025-07-10 21:02:56
4621	8	200	2025-07-10 21:02:56	2025-07-10 21:02:56
4622	8	201	2025-07-10 21:02:56	2025-07-10 21:02:56
4623	8	202	2025-07-10 21:02:56	2025-07-10 21:02:56
4624	8	203	2025-07-10 21:02:56	2025-07-10 21:02:56
4625	8	204	2025-07-10 21:02:56	2025-07-10 21:02:56
4626	8	205	2025-07-10 21:02:56	2025-07-10 21:02:56
4627	8	206	2025-07-10 21:02:56	2025-07-10 21:02:56
4628	8	207	2025-07-10 21:02:56	2025-07-10 21:02:56
4629	8	208	2025-07-10 21:02:56	2025-07-10 21:02:56
4630	8	209	2025-07-10 21:02:56	2025-07-10 21:02:56
4631	8	210	2025-07-10 21:02:56	2025-07-10 21:02:56
4632	8	211	2025-07-10 21:02:56	2025-07-10 21:02:56
4633	8	212	2025-07-10 21:02:56	2025-07-10 21:02:56
4634	8	213	2025-07-10 21:02:56	2025-07-10 21:02:56
4635	8	215	2025-07-10 21:02:56	2025-07-10 21:02:56
4636	8	335	2025-07-10 21:02:56	2025-07-10 21:02:56
4637	8	336	2025-07-10 21:02:56	2025-07-10 21:02:56
4638	8	337	2025-07-10 21:02:56	2025-07-10 21:02:56
4639	8	338	2025-07-10 21:02:56	2025-07-10 21:02:56
4640	8	381	2025-07-10 21:02:56	2025-07-10 21:02:56
4641	8	382	2025-07-10 21:02:56	2025-07-10 21:02:56
4642	8	383	2025-07-10 21:02:56	2025-07-10 21:02:56
4643	8	175	2025-07-10 21:02:56	2025-07-10 21:02:56
4644	8	214	2025-07-10 21:02:56	2025-07-10 21:02:56
4645	8	216	2025-07-10 21:02:56	2025-07-10 21:02:56
4646	8	217	2025-07-10 21:02:56	2025-07-10 21:02:56
4647	8	218	2025-07-10 21:02:56	2025-07-10 21:02:56
4648	8	219	2025-07-10 21:02:56	2025-07-10 21:02:56
4649	8	220	2025-07-10 21:02:56	2025-07-10 21:02:56
4650	8	221	2025-07-10 21:02:56	2025-07-10 21:02:56
4651	8	222	2025-07-10 21:02:56	2025-07-10 21:02:56
4652	8	223	2025-07-10 21:02:56	2025-07-10 21:02:56
4653	8	533	2025-07-10 21:02:56	2025-07-10 21:02:56
4654	8	534	2025-07-10 21:02:56	2025-07-10 21:02:56
4655	8	539	2025-07-10 21:02:56	2025-07-10 21:02:56
4656	8	535	2025-07-10 21:02:56	2025-07-10 21:02:56
4657	8	558	2025-07-10 21:02:56	2025-07-10 21:02:56
4658	8	559	2025-07-10 21:02:56	2025-07-10 21:02:56
4659	8	647	2025-07-10 21:02:56	2025-07-10 21:02:56
4660	8	667	2025-07-10 21:02:56	2025-07-10 21:02:56
4661	8	668	2025-07-10 21:02:56	2025-07-10 21:02:56
4662	8	673	2025-07-10 21:02:56	2025-07-10 21:02:56
4663	9	14	2025-08-21 11:14:03	2025-08-21 11:14:03
4664	9	15	2025-08-21 11:14:03	2025-08-21 11:14:03
4665	9	16	2025-08-21 11:14:03	2025-08-21 11:14:03
4666	9	17	2025-08-21 11:14:03	2025-08-21 11:14:03
4667	9	18	2025-08-21 11:14:03	2025-08-21 11:14:03
4668	9	19	2025-08-21 11:14:03	2025-08-21 11:14:03
4669	9	20	2025-08-21 11:14:03	2025-08-21 11:14:03
4670	9	21	2025-08-21 11:14:03	2025-08-21 11:14:03
4671	9	22	2025-08-21 11:14:03	2025-08-21 11:14:03
4672	9	23	2025-08-21 11:14:03	2025-08-21 11:14:03
4673	9	24	2025-08-21 11:14:03	2025-08-21 11:14:03
4674	9	448	2025-08-21 11:14:03	2025-08-21 11:14:03
4675	9	441	2025-08-21 11:14:03	2025-08-21 11:14:03
4676	9	442	2025-08-21 11:14:03	2025-08-21 11:14:03
4677	9	546	2025-08-21 11:14:03	2025-08-21 11:14:03
4678	9	584	2025-08-21 11:14:03	2025-08-21 11:14:03
4679	9	614	2025-08-21 11:14:03	2025-08-21 11:14:03
4680	9	615	2025-08-21 11:14:03	2025-08-21 11:14:03
4681	9	617	2025-08-21 11:14:03	2025-08-21 11:14:03
4682	9	618	2025-08-21 11:14:03	2025-08-21 11:14:03
4683	9	224	2025-08-21 11:14:03	2025-08-21 11:14:03
4684	9	225	2025-08-21 11:14:03	2025-08-21 11:14:03
4685	9	226	2025-08-21 11:14:03	2025-08-21 11:14:03
4686	9	227	2025-08-21 11:14:03	2025-08-21 11:14:03
4687	9	228	2025-08-21 11:14:03	2025-08-21 11:14:03
4688	9	229	2025-08-21 11:14:03	2025-08-21 11:14:03
4689	9	230	2025-08-21 11:14:03	2025-08-21 11:14:03
4690	9	231	2025-08-21 11:14:03	2025-08-21 11:14:03
4691	9	232	2025-08-21 11:14:03	2025-08-21 11:14:03
4692	9	233	2025-08-21 11:14:03	2025-08-21 11:14:03
4693	9	359	2025-08-21 11:14:03	2025-08-21 11:14:03
4694	9	360	2025-08-21 11:14:03	2025-08-21 11:14:03
4695	9	234	2025-08-21 11:14:03	2025-08-21 11:14:03
4696	9	235	2025-08-21 11:14:03	2025-08-21 11:14:03
4697	9	236	2025-08-21 11:14:03	2025-08-21 11:14:03
4698	9	237	2025-08-21 11:14:03	2025-08-21 11:14:03
4699	9	238	2025-08-21 11:14:03	2025-08-21 11:14:03
4700	9	239	2025-08-21 11:14:03	2025-08-21 11:14:03
4701	9	240	2025-08-21 11:14:03	2025-08-21 11:14:03
4702	9	241	2025-08-21 11:14:03	2025-08-21 11:14:03
4703	9	242	2025-08-21 11:14:03	2025-08-21 11:14:03
4704	9	243	2025-08-21 11:14:03	2025-08-21 11:14:03
4705	9	244	2025-08-21 11:14:03	2025-08-21 11:14:03
4706	9	245	2025-08-21 11:14:03	2025-08-21 11:14:03
4707	9	246	2025-08-21 11:14:03	2025-08-21 11:14:03
4708	9	247	2025-08-21 11:14:03	2025-08-21 11:14:03
4709	9	248	2025-08-21 11:14:03	2025-08-21 11:14:03
4710	9	249	2025-08-21 11:14:03	2025-08-21 11:14:03
4711	9	250	2025-08-21 11:14:03	2025-08-21 11:14:03
4712	9	251	2025-08-21 11:14:03	2025-08-21 11:14:03
4713	9	252	2025-08-21 11:14:03	2025-08-21 11:14:03
4714	9	253	2025-08-21 11:14:03	2025-08-21 11:14:03
4715	9	254	2025-08-21 11:14:03	2025-08-21 11:14:03
4716	9	255	2025-08-21 11:14:03	2025-08-21 11:14:03
4717	9	256	2025-08-21 11:14:03	2025-08-21 11:14:03
4718	9	257	2025-08-21 11:14:03	2025-08-21 11:14:03
4719	9	258	2025-08-21 11:14:03	2025-08-21 11:14:03
4720	9	259	2025-08-21 11:14:03	2025-08-21 11:14:03
4721	9	260	2025-08-21 11:14:03	2025-08-21 11:14:03
4722	9	261	2025-08-21 11:14:03	2025-08-21 11:14:03
4723	9	262	2025-08-21 11:14:03	2025-08-21 11:14:03
4724	9	263	2025-08-21 11:14:03	2025-08-21 11:14:03
4725	9	264	2025-08-21 11:14:03	2025-08-21 11:14:03
4726	9	509	2025-08-21 11:14:03	2025-08-21 11:14:03
4727	9	265	2025-08-21 11:14:03	2025-08-21 11:14:03
4728	9	266	2025-08-21 11:14:03	2025-08-21 11:14:03
4729	9	267	2025-08-21 11:14:03	2025-08-21 11:14:03
4730	9	268	2025-08-21 11:14:03	2025-08-21 11:14:03
4731	9	269	2025-08-21 11:14:03	2025-08-21 11:14:03
4732	9	270	2025-08-21 11:14:03	2025-08-21 11:14:03
4733	9	271	2025-08-21 11:14:03	2025-08-21 11:14:03
4734	9	272	2025-08-21 11:14:03	2025-08-21 11:14:03
4735	9	273	2025-08-21 11:14:03	2025-08-21 11:14:03
4736	9	274	2025-08-21 11:14:03	2025-08-21 11:14:03
4737	9	275	2025-08-21 11:14:03	2025-08-21 11:14:03
4738	9	276	2025-08-21 11:14:03	2025-08-21 11:14:03
4739	9	277	2025-08-21 11:14:03	2025-08-21 11:14:03
4740	9	278	2025-08-21 11:14:03	2025-08-21 11:14:03
4741	9	279	2025-08-21 11:14:03	2025-08-21 11:14:03
4742	9	280	2025-08-21 11:14:03	2025-08-21 11:14:03
4743	9	281	2025-08-21 11:14:03	2025-08-21 11:14:03
4744	9	282	2025-08-21 11:14:03	2025-08-21 11:14:03
4745	9	283	2025-08-21 11:14:03	2025-08-21 11:14:03
4746	9	284	2025-08-21 11:14:03	2025-08-21 11:14:03
4747	9	285	2025-08-21 11:14:03	2025-08-21 11:14:03
4748	9	286	2025-08-21 11:14:03	2025-08-21 11:14:03
4749	9	287	2025-08-21 11:14:03	2025-08-21 11:14:03
4750	9	288	2025-08-21 11:14:03	2025-08-21 11:14:03
4751	9	289	2025-08-21 11:14:03	2025-08-21 11:14:03
4752	9	294	2025-08-21 11:14:03	2025-08-21 11:14:03
4753	9	295	2025-08-21 11:14:03	2025-08-21 11:14:03
4754	9	296	2025-08-21 11:14:03	2025-08-21 11:14:03
4755	9	297	2025-08-21 11:14:03	2025-08-21 11:14:03
4756	9	500	2025-08-21 11:14:03	2025-08-21 11:14:03
4757	9	501	2025-08-21 11:14:03	2025-08-21 11:14:03
4758	9	502	2025-08-21 11:14:03	2025-08-21 11:14:03
4759	9	510	2025-08-21 11:14:03	2025-08-21 11:14:03
4760	9	511	2025-08-21 11:14:03	2025-08-21 11:14:03
4761	9	512	2025-08-21 11:14:03	2025-08-21 11:14:03
4762	9	567	2025-08-21 11:14:03	2025-08-21 11:14:03
4763	9	594	2025-08-21 11:14:03	2025-08-21 11:14:03
4764	9	679	2025-08-21 11:14:03	2025-08-21 11:14:03
4765	9	709	2025-08-21 11:14:03	2025-08-21 11:14:03
4766	9	298	2025-08-21 11:14:03	2025-08-21 11:14:03
4767	9	299	2025-08-21 11:14:03	2025-08-21 11:14:03
4768	9	300	2025-08-21 11:14:03	2025-08-21 11:14:03
4769	9	310	2025-08-21 11:14:03	2025-08-21 11:14:03
4770	9	311	2025-08-21 11:14:03	2025-08-21 11:14:03
4771	9	312	2025-08-21 11:14:03	2025-08-21 11:14:03
4772	9	313	2025-08-21 11:14:03	2025-08-21 11:14:03
4773	9	314	2025-08-21 11:14:03	2025-08-21 11:14:03
4774	9	315	2025-08-21 11:14:03	2025-08-21 11:14:03
4775	9	316	2025-08-21 11:14:03	2025-08-21 11:14:03
4776	9	317	2025-08-21 11:14:03	2025-08-21 11:14:03
4777	9	318	2025-08-21 11:14:03	2025-08-21 11:14:03
4778	9	358	2025-08-21 11:14:03	2025-08-21 11:14:03
4779	9	365	2025-08-21 11:14:03	2025-08-21 11:14:03
4780	9	350	2025-08-21 11:14:03	2025-08-21 11:14:03
4781	9	351	2025-08-21 11:14:03	2025-08-21 11:14:03
4782	9	352	2025-08-21 11:14:03	2025-08-21 11:14:03
4783	9	353	2025-08-21 11:14:03	2025-08-21 11:14:03
4784	9	354	2025-08-21 11:14:03	2025-08-21 11:14:03
4785	9	355	2025-08-21 11:14:03	2025-08-21 11:14:03
4786	9	356	2025-08-21 11:14:03	2025-08-21 11:14:03
4787	9	357	2025-08-21 11:14:03	2025-08-21 11:14:03
4788	9	392	2025-08-21 11:14:03	2025-08-21 11:14:03
4789	9	396	2025-08-21 11:14:03	2025-08-21 11:14:03
4790	9	301	2025-08-21 11:14:03	2025-08-21 11:14:03
4791	9	302	2025-08-21 11:14:03	2025-08-21 11:14:03
4792	9	303	2025-08-21 11:14:03	2025-08-21 11:14:03
4793	9	304	2025-08-21 11:14:03	2025-08-21 11:14:03
4794	9	305	2025-08-21 11:14:03	2025-08-21 11:14:03
4795	9	306	2025-08-21 11:14:03	2025-08-21 11:14:03
4796	9	307	2025-08-21 11:14:03	2025-08-21 11:14:03
4797	9	308	2025-08-21 11:14:03	2025-08-21 11:14:03
4798	9	309	2025-08-21 11:14:03	2025-08-21 11:14:03
4799	9	590	2025-08-21 11:14:03	2025-08-21 11:14:03
4800	9	591	2025-08-21 11:14:03	2025-08-21 11:14:03
4801	9	319	2025-08-21 11:14:03	2025-08-21 11:14:03
4802	9	320	2025-08-21 11:14:03	2025-08-21 11:14:03
4803	9	321	2025-08-21 11:14:03	2025-08-21 11:14:03
4804	9	322	2025-08-21 11:14:03	2025-08-21 11:14:03
4805	9	323	2025-08-21 11:14:03	2025-08-21 11:14:03
4806	9	324	2025-08-21 11:14:03	2025-08-21 11:14:03
4807	9	325	2025-08-21 11:14:03	2025-08-21 11:14:03
4808	9	326	2025-08-21 11:14:03	2025-08-21 11:14:03
4809	9	327	2025-08-21 11:14:03	2025-08-21 11:14:03
4810	9	328	2025-08-21 11:14:03	2025-08-21 11:14:03
4811	9	676	2025-08-21 11:14:03	2025-08-21 11:14:03
4812	9	339	2025-08-21 11:14:03	2025-08-21 11:14:03
4813	9	385	2025-08-21 11:14:03	2025-08-21 11:14:03
4814	9	386	2025-08-21 11:14:03	2025-08-21 11:14:03
4815	9	387	2025-08-21 11:14:03	2025-08-21 11:14:03
4816	9	388	2025-08-21 11:14:03	2025-08-21 11:14:03
4817	9	389	2025-08-21 11:14:03	2025-08-21 11:14:03
4818	9	390	2025-08-21 11:14:03	2025-08-21 11:14:03
4819	9	391	2025-08-21 11:14:03	2025-08-21 11:14:03
4820	9	555	2025-08-21 11:14:03	2025-08-21 11:14:03
4821	9	556	2025-08-21 11:14:03	2025-08-21 11:14:03
4822	9	557	2025-08-21 11:14:03	2025-08-21 11:14:03
4823	9	455	2025-08-21 11:14:03	2025-08-21 11:14:03
4824	9	456	2025-08-21 11:14:03	2025-08-21 11:14:03
4825	9	457	2025-08-21 11:14:03	2025-08-21 11:14:03
4826	9	458	2025-08-21 11:14:03	2025-08-21 11:14:03
4827	9	459	2025-08-21 11:14:03	2025-08-21 11:14:03
4828	9	460	2025-08-21 11:14:03	2025-08-21 11:14:03
4829	9	461	2025-08-21 11:14:03	2025-08-21 11:14:03
4830	9	462	2025-08-21 11:14:03	2025-08-21 11:14:03
4831	9	463	2025-08-21 11:14:03	2025-08-21 11:14:03
4832	9	465	2025-08-21 11:14:03	2025-08-21 11:14:03
4833	9	466	2025-08-21 11:14:03	2025-08-21 11:14:03
4834	9	467	2025-08-21 11:14:03	2025-08-21 11:14:03
4835	9	468	2025-08-21 11:14:03	2025-08-21 11:14:03
4836	9	469	2025-08-21 11:14:03	2025-08-21 11:14:03
4837	9	470	2025-08-21 11:14:03	2025-08-21 11:14:03
4838	9	471	2025-08-21 11:14:03	2025-08-21 11:14:03
4839	9	472	2025-08-21 11:14:03	2025-08-21 11:14:03
4840	9	473	2025-08-21 11:14:03	2025-08-21 11:14:03
4841	9	474	2025-08-21 11:14:03	2025-08-21 11:14:03
4842	9	476	2025-08-21 11:14:03	2025-08-21 11:14:03
4843	9	478	2025-08-21 11:14:03	2025-08-21 11:14:03
4844	9	479	2025-08-21 11:14:03	2025-08-21 11:14:03
4845	9	475	2025-08-21 11:14:03	2025-08-21 11:14:03
4846	9	710	2025-08-21 11:14:03	2025-08-21 11:14:03
4847	9	714	2025-08-21 11:14:03	2025-08-21 11:14:03
4848	9	715	2025-08-21 11:14:03	2025-08-21 11:14:03
4849	9	716	2025-08-21 11:14:03	2025-08-21 11:14:03
4850	9	717	2025-08-21 11:14:03	2025-08-21 11:14:03
4851	9	718	2025-08-21 11:14:03	2025-08-21 11:14:03
4852	9	719	2025-08-21 11:14:03	2025-08-21 11:14:03
4853	9	720	2025-08-21 11:14:03	2025-08-21 11:14:03
4854	9	721	2025-08-21 11:14:03	2025-08-21 11:14:03
4855	9	722	2025-08-21 11:14:03	2025-08-21 11:14:03
4856	9	723	2025-08-21 11:14:03	2025-08-21 11:14:03
4857	9	724	2025-08-21 11:14:03	2025-08-21 11:14:03
4858	9	725	2025-08-21 11:14:03	2025-08-21 11:14:03
4859	9	726	2025-08-21 11:14:03	2025-08-21 11:14:03
4860	9	727	2025-08-21 11:14:03	2025-08-21 11:14:03
4861	9	728	2025-08-21 11:14:03	2025-08-21 11:14:03
4862	9	729	2025-08-21 11:14:03	2025-08-21 11:14:03
4863	9	25	2025-08-21 11:14:03	2025-08-21 11:14:03
4864	9	487	2025-08-21 11:14:03	2025-08-21 11:14:03
4865	9	488	2025-08-21 11:14:03	2025-08-21 11:14:03
4866	9	489	2025-08-21 11:14:03	2025-08-21 11:14:03
4867	9	490	2025-08-21 11:14:03	2025-08-21 11:14:03
4868	9	491	2025-08-21 11:14:03	2025-08-21 11:14:03
4869	9	551	2025-08-21 11:14:03	2025-08-21 11:14:03
4870	9	552	2025-08-21 11:14:03	2025-08-21 11:14:03
4871	9	568	2025-08-21 11:14:03	2025-08-21 11:14:03
4872	9	569	2025-08-21 11:14:03	2025-08-21 11:14:03
4873	9	570	2025-08-21 11:14:03	2025-08-21 11:14:03
4874	9	492	2025-08-21 11:14:03	2025-08-21 11:14:03
4875	9	493	2025-08-21 11:14:03	2025-08-21 11:14:03
4876	9	494	2025-08-21 11:14:03	2025-08-21 11:14:03
4877	9	495	2025-08-21 11:14:03	2025-08-21 11:14:03
4878	9	497	2025-08-21 11:14:03	2025-08-21 11:14:03
4879	9	496	2025-08-21 11:14:03	2025-08-21 11:14:03
4880	9	572	2025-08-21 11:14:03	2025-08-21 11:14:03
4881	9	573	2025-08-21 11:14:03	2025-08-21 11:14:03
4882	9	574	2025-08-21 11:14:03	2025-08-21 11:14:03
4883	9	575	2025-08-21 11:14:03	2025-08-21 11:14:03
4884	9	622	2025-08-21 11:14:03	2025-08-21 11:14:03
4885	9	378	2025-08-21 11:14:03	2025-08-21 11:14:03
4886	9	528	2025-08-21 11:14:03	2025-08-21 11:14:03
4887	9	595	2025-08-21 11:14:03	2025-08-21 11:14:03
4888	9	596	2025-08-21 11:14:03	2025-08-21 11:14:03
4889	9	597	2025-08-21 11:14:03	2025-08-21 11:14:03
4890	9	598	2025-08-21 11:14:03	2025-08-21 11:14:03
4891	9	599	2025-08-21 11:14:03	2025-08-21 11:14:03
4892	9	600	2025-08-21 11:14:03	2025-08-21 11:14:03
4893	9	601	2025-08-21 11:14:03	2025-08-21 11:14:03
4894	9	602	2025-08-21 11:14:03	2025-08-21 11:14:03
4895	9	603	2025-08-21 11:14:03	2025-08-21 11:14:03
4896	9	604	2025-08-21 11:14:03	2025-08-21 11:14:03
4897	9	605	2025-08-21 11:14:03	2025-08-21 11:14:03
4898	9	606	2025-08-21 11:14:03	2025-08-21 11:14:03
4899	9	607	2025-08-21 11:14:03	2025-08-21 11:14:03
4900	9	608	2025-08-21 11:14:03	2025-08-21 11:14:03
4901	9	609	2025-08-21 11:14:03	2025-08-21 11:14:03
4902	9	610	2025-08-21 11:14:03	2025-08-21 11:14:03
4903	9	611	2025-08-21 11:14:03	2025-08-21 11:14:03
4904	9	612	2025-08-21 11:14:03	2025-08-21 11:14:03
4905	9	613	2025-08-21 11:14:03	2025-08-21 11:14:03
4906	9	677	2025-08-21 11:14:03	2025-08-21 11:14:03
4907	9	678	2025-08-21 11:14:03	2025-08-21 11:14:03
4908	9	706	2025-08-21 11:14:03	2025-08-21 11:14:03
4909	9	707	2025-08-21 11:14:03	2025-08-21 11:14:03
4910	9	623	2025-08-21 11:14:03	2025-08-21 11:14:03
4911	9	624	2025-08-21 11:14:03	2025-08-21 11:14:03
4912	9	625	2025-08-21 11:14:03	2025-08-21 11:14:03
4913	9	626	2025-08-21 11:14:03	2025-08-21 11:14:03
4914	9	627	2025-08-21 11:14:03	2025-08-21 11:14:03
4915	9	628	2025-08-21 11:14:03	2025-08-21 11:14:03
4916	9	629	2025-08-21 11:14:03	2025-08-21 11:14:03
4917	9	630	2025-08-21 11:14:03	2025-08-21 11:14:03
4918	9	631	2025-08-21 11:14:03	2025-08-21 11:14:03
4919	9	632	2025-08-21 11:14:03	2025-08-21 11:14:03
4920	9	633	2025-08-21 11:14:03	2025-08-21 11:14:03
4921	9	634	2025-08-21 11:14:03	2025-08-21 11:14:03
4922	9	635	2025-08-21 11:14:03	2025-08-21 11:14:03
4923	9	636	2025-08-21 11:14:03	2025-08-21 11:14:03
4924	9	637	2025-08-21 11:14:03	2025-08-21 11:14:03
4925	9	638	2025-08-21 11:14:03	2025-08-21 11:14:03
4926	9	659	2025-08-21 11:14:03	2025-08-21 11:14:03
4927	9	639	2025-08-21 11:14:03	2025-08-21 11:14:03
4928	9	640	2025-08-21 11:14:03	2025-08-21 11:14:03
4929	9	641	2025-08-21 11:14:03	2025-08-21 11:14:03
4930	9	642	2025-08-21 11:14:03	2025-08-21 11:14:03
4931	9	643	2025-08-21 11:14:03	2025-08-21 11:14:03
4932	9	644	2025-08-21 11:14:03	2025-08-21 11:14:03
4933	9	645	2025-08-21 11:14:03	2025-08-21 11:14:03
4934	9	646	2025-08-21 11:14:03	2025-08-21 11:14:03
4935	9	700	2025-08-21 11:14:03	2025-08-21 11:14:03
4936	9	701	2025-08-21 11:14:03	2025-08-21 11:14:03
4937	9	702	2025-08-21 11:14:03	2025-08-21 11:14:03
4938	9	703	2025-08-21 11:14:03	2025-08-21 11:14:03
4939	9	704	2025-08-21 11:14:03	2025-08-21 11:14:03
4940	9	705	2025-08-21 11:14:03	2025-08-21 11:14:03
4941	9	26	2025-08-21 11:14:03	2025-08-21 11:14:03
4942	9	28	2025-08-21 11:14:03	2025-08-21 11:14:03
4943	9	29	2025-08-21 11:14:03	2025-08-21 11:14:03
4944	9	30	2025-08-21 11:14:03	2025-08-21 11:14:03
4945	9	31	2025-08-21 11:14:03	2025-08-21 11:14:03
4946	9	32	2025-08-21 11:14:03	2025-08-21 11:14:03
4947	9	33	2025-08-21 11:14:03	2025-08-21 11:14:03
4948	9	367	2025-08-21 11:14:03	2025-08-21 11:14:03
4949	9	368	2025-08-21 11:14:03	2025-08-21 11:14:03
4950	9	369	2025-08-21 11:14:03	2025-08-21 11:14:03
4951	9	370	2025-08-21 11:14:03	2025-08-21 11:14:03
4952	9	371	2025-08-21 11:14:03	2025-08-21 11:14:03
4953	9	373	2025-08-21 11:14:03	2025-08-21 11:14:03
4954	9	395	2025-08-21 11:14:03	2025-08-21 11:14:03
4955	9	39	2025-08-21 11:14:03	2025-08-21 11:14:03
4956	9	379	2025-08-21 11:14:03	2025-08-21 11:14:03
4957	9	380	2025-08-21 11:14:03	2025-08-21 11:14:03
4958	9	34	2025-08-21 11:14:03	2025-08-21 11:14:03
4959	9	35	2025-08-21 11:14:03	2025-08-21 11:14:03
4960	9	36	2025-08-21 11:14:03	2025-08-21 11:14:03
4961	9	37	2025-08-21 11:14:03	2025-08-21 11:14:03
4962	9	38	2025-08-21 11:14:03	2025-08-21 11:14:03
4963	9	424	2025-08-21 11:14:03	2025-08-21 11:14:03
4964	9	425	2025-08-21 11:14:03	2025-08-21 11:14:03
4965	9	427	2025-08-21 11:14:04	2025-08-21 11:14:04
4966	9	443	2025-08-21 11:14:04	2025-08-21 11:14:04
4967	9	449	2025-08-21 11:14:04	2025-08-21 11:14:04
4968	9	453	2025-08-21 11:14:04	2025-08-21 11:14:04
4969	9	454	2025-08-21 11:14:04	2025-08-21 11:14:04
4970	9	464	2025-08-21 11:14:04	2025-08-21 11:14:04
4971	9	450	2025-08-21 11:14:04	2025-08-21 11:14:04
4972	9	498	2025-08-21 11:14:04	2025-08-21 11:14:04
4973	9	499	2025-08-21 11:14:04	2025-08-21 11:14:04
4974	9	513	2025-08-21 11:14:04	2025-08-21 11:14:04
4975	9	514	2025-08-21 11:14:04	2025-08-21 11:14:04
4976	9	515	2025-08-21 11:14:04	2025-08-21 11:14:04
4977	9	516	2025-08-21 11:14:04	2025-08-21 11:14:04
4978	9	517	2025-08-21 11:14:04	2025-08-21 11:14:04
4979	9	518	2025-08-21 11:14:04	2025-08-21 11:14:04
4980	9	520	2025-08-21 11:14:04	2025-08-21 11:14:04
4981	9	521	2025-08-21 11:14:04	2025-08-21 11:14:04
4982	9	522	2025-08-21 11:14:04	2025-08-21 11:14:04
4983	9	523	2025-08-21 11:14:04	2025-08-21 11:14:04
4984	9	531	2025-08-21 11:14:04	2025-08-21 11:14:04
4985	9	547	2025-08-21 11:14:04	2025-08-21 11:14:04
4986	9	548	2025-08-21 11:14:04	2025-08-21 11:14:04
4987	9	549	2025-08-21 11:14:04	2025-08-21 11:14:04
4988	9	550	2025-08-21 11:14:04	2025-08-21 11:14:04
4989	9	553	2025-08-21 11:14:04	2025-08-21 11:14:04
4990	9	554	2025-08-21 11:14:04	2025-08-21 11:14:04
4991	9	586	2025-08-21 11:14:04	2025-08-21 11:14:04
4992	9	593	2025-08-21 11:14:04	2025-08-21 11:14:04
4993	9	652	2025-08-21 11:14:04	2025-08-21 11:14:04
4994	9	653	2025-08-21 11:14:04	2025-08-21 11:14:04
4995	9	654	2025-08-21 11:14:04	2025-08-21 11:14:04
4996	9	655	2025-08-21 11:14:04	2025-08-21 11:14:04
4997	9	656	2025-08-21 11:14:04	2025-08-21 11:14:04
4998	9	657	2025-08-21 11:14:04	2025-08-21 11:14:04
4999	9	658	2025-08-21 11:14:04	2025-08-21 11:14:04
5000	9	682	2025-08-21 11:14:04	2025-08-21 11:14:04
5001	9	683	2025-08-21 11:14:04	2025-08-21 11:14:04
5002	9	684	2025-08-21 11:14:04	2025-08-21 11:14:04
5003	9	685	2025-08-21 11:14:04	2025-08-21 11:14:04
5004	9	686	2025-08-21 11:14:04	2025-08-21 11:14:04
5005	9	687	2025-08-21 11:14:04	2025-08-21 11:14:04
5006	9	688	2025-08-21 11:14:04	2025-08-21 11:14:04
5007	9	27	2025-08-21 11:14:04	2025-08-21 11:14:04
5008	9	692	2025-08-21 11:14:04	2025-08-21 11:14:04
5009	9	708	2025-08-21 11:14:04	2025-08-21 11:14:04
5010	9	40	2025-08-21 11:14:04	2025-08-21 11:14:04
5011	9	44	2025-08-21 11:14:04	2025-08-21 11:14:04
5012	9	45	2025-08-21 11:14:04	2025-08-21 11:14:04
5013	9	46	2025-08-21 11:14:04	2025-08-21 11:14:04
5014	9	47	2025-08-21 11:14:04	2025-08-21 11:14:04
5015	9	48	2025-08-21 11:14:04	2025-08-21 11:14:04
5016	9	49	2025-08-21 11:14:04	2025-08-21 11:14:04
5017	9	50	2025-08-21 11:14:04	2025-08-21 11:14:04
5018	9	51	2025-08-21 11:14:04	2025-08-21 11:14:04
5019	9	52	2025-08-21 11:14:04	2025-08-21 11:14:04
5020	9	372	2025-08-21 11:14:04	2025-08-21 11:14:04
5021	9	384	2025-08-21 11:14:04	2025-08-21 11:14:04
5022	9	41	2025-08-21 11:14:04	2025-08-21 11:14:04
5023	9	42	2025-08-21 11:14:04	2025-08-21 11:14:04
5024	9	43	2025-08-21 11:14:04	2025-08-21 11:14:04
5025	9	529	2025-08-21 11:14:04	2025-08-21 11:14:04
5026	9	526	2025-08-21 11:14:04	2025-08-21 11:14:04
5027	9	525	2025-08-21 11:14:04	2025-08-21 11:14:04
5028	9	527	2025-08-21 11:14:04	2025-08-21 11:14:04
5029	9	530	2025-08-21 11:14:04	2025-08-21 11:14:04
5030	9	519	2025-08-21 11:14:04	2025-08-21 11:14:04
5031	9	587	2025-08-21 11:14:04	2025-08-21 11:14:04
5032	9	592	2025-08-21 11:14:04	2025-08-21 11:14:04
5033	9	648	2025-08-21 11:14:04	2025-08-21 11:14:04
5034	9	524	2025-08-21 11:14:04	2025-08-21 11:14:04
5035	9	588	2025-08-21 11:14:04	2025-08-21 11:14:04
5036	9	616	2025-08-21 11:14:04	2025-08-21 11:14:04
5037	9	452	2025-08-21 11:14:04	2025-08-21 11:14:04
5038	9	589	2025-08-21 11:14:04	2025-08-21 11:14:04
5039	9	665	2025-08-21 11:14:04	2025-08-21 11:14:04
5040	9	693	2025-08-21 11:14:04	2025-08-21 11:14:04
5041	9	694	2025-08-21 11:14:04	2025-08-21 11:14:04
5042	9	695	2025-08-21 11:14:04	2025-08-21 11:14:04
5043	9	53	2025-08-21 11:14:04	2025-08-21 11:14:04
5044	9	54	2025-08-21 11:14:04	2025-08-21 11:14:04
5045	9	55	2025-08-21 11:14:04	2025-08-21 11:14:04
5046	9	56	2025-08-21 11:14:04	2025-08-21 11:14:04
5047	9	57	2025-08-21 11:14:04	2025-08-21 11:14:04
5048	9	58	2025-08-21 11:14:04	2025-08-21 11:14:04
5049	9	59	2025-08-21 11:14:04	2025-08-21 11:14:04
5050	9	60	2025-08-21 11:14:04	2025-08-21 11:14:04
5051	9	61	2025-08-21 11:14:04	2025-08-21 11:14:04
5052	9	62	2025-08-21 11:14:04	2025-08-21 11:14:04
5053	9	63	2025-08-21 11:14:04	2025-08-21 11:14:04
5054	9	64	2025-08-21 11:14:04	2025-08-21 11:14:04
5055	9	65	2025-08-21 11:14:04	2025-08-21 11:14:04
5056	9	66	2025-08-21 11:14:04	2025-08-21 11:14:04
5057	9	67	2025-08-21 11:14:04	2025-08-21 11:14:04
5058	9	68	2025-08-21 11:14:04	2025-08-21 11:14:04
5059	9	69	2025-08-21 11:14:04	2025-08-21 11:14:04
5060	9	70	2025-08-21 11:14:04	2025-08-21 11:14:04
5061	9	71	2025-08-21 11:14:04	2025-08-21 11:14:04
5062	9	72	2025-08-21 11:14:04	2025-08-21 11:14:04
5063	9	73	2025-08-21 11:14:04	2025-08-21 11:14:04
5064	9	74	2025-08-21 11:14:04	2025-08-21 11:14:04
5065	9	75	2025-08-21 11:14:04	2025-08-21 11:14:04
5066	9	76	2025-08-21 11:14:04	2025-08-21 11:14:04
5067	9	77	2025-08-21 11:14:04	2025-08-21 11:14:04
5068	9	432	2025-08-21 11:14:04	2025-08-21 11:14:04
5069	9	433	2025-08-21 11:14:04	2025-08-21 11:14:04
5070	9	434	2025-08-21 11:14:04	2025-08-21 11:14:04
5071	9	435	2025-08-21 11:14:04	2025-08-21 11:14:04
5072	9	436	2025-08-21 11:14:04	2025-08-21 11:14:04
5073	9	437	2025-08-21 11:14:04	2025-08-21 11:14:04
5074	9	438	2025-08-21 11:14:04	2025-08-21 11:14:04
5075	9	439	2025-08-21 11:14:04	2025-08-21 11:14:04
5076	9	440	2025-08-21 11:14:04	2025-08-21 11:14:04
5077	9	451	2025-08-21 11:14:04	2025-08-21 11:14:04
5078	9	477	2025-08-21 11:14:04	2025-08-21 11:14:04
5079	9	585	2025-08-21 11:14:04	2025-08-21 11:14:04
5080	9	669	2025-08-21 11:14:04	2025-08-21 11:14:04
5081	9	670	2025-08-21 11:14:04	2025-08-21 11:14:04
5082	9	671	2025-08-21 11:14:04	2025-08-21 11:14:04
5083	9	672	2025-08-21 11:14:04	2025-08-21 11:14:04
5084	9	680	2025-08-21 11:14:04	2025-08-21 11:14:04
5085	9	681	2025-08-21 11:14:04	2025-08-21 11:14:04
5086	9	689	2025-08-21 11:14:04	2025-08-21 11:14:04
5087	9	698	2025-08-21 11:14:04	2025-08-21 11:14:04
5088	9	699	2025-08-21 11:14:04	2025-08-21 11:14:04
5089	9	711	2025-08-21 11:14:04	2025-08-21 11:14:04
5090	9	712	2025-08-21 11:14:04	2025-08-21 11:14:04
5091	9	713	2025-08-21 11:14:04	2025-08-21 11:14:04
5092	9	78	2025-08-21 11:14:04	2025-08-21 11:14:04
5093	9	79	2025-08-21 11:14:04	2025-08-21 11:14:04
5094	9	80	2025-08-21 11:14:04	2025-08-21 11:14:04
5095	9	81	2025-08-21 11:14:04	2025-08-21 11:14:04
5096	9	82	2025-08-21 11:14:04	2025-08-21 11:14:04
5097	9	83	2025-08-21 11:14:04	2025-08-21 11:14:04
5098	9	84	2025-08-21 11:14:04	2025-08-21 11:14:04
5099	9	85	2025-08-21 11:14:04	2025-08-21 11:14:04
5100	9	86	2025-08-21 11:14:04	2025-08-21 11:14:04
5101	9	87	2025-08-21 11:14:04	2025-08-21 11:14:04
5102	9	88	2025-08-21 11:14:04	2025-08-21 11:14:04
5103	9	89	2025-08-21 11:14:04	2025-08-21 11:14:04
5104	9	90	2025-08-21 11:14:04	2025-08-21 11:14:04
5105	9	91	2025-08-21 11:14:04	2025-08-21 11:14:04
5106	9	92	2025-08-21 11:14:04	2025-08-21 11:14:04
5107	9	93	2025-08-21 11:14:04	2025-08-21 11:14:04
5108	9	94	2025-08-21 11:14:04	2025-08-21 11:14:04
5109	9	374	2025-08-21 11:14:04	2025-08-21 11:14:04
5110	9	375	2025-08-21 11:14:04	2025-08-21 11:14:04
5111	9	393	2025-08-21 11:14:04	2025-08-21 11:14:04
5112	9	394	2025-08-21 11:14:04	2025-08-21 11:14:04
5113	9	397	2025-08-21 11:14:04	2025-08-21 11:14:04
5114	9	398	2025-08-21 11:14:04	2025-08-21 11:14:04
5115	9	541	2025-08-21 11:14:04	2025-08-21 11:14:04
5116	9	543	2025-08-21 11:14:04	2025-08-21 11:14:04
5117	9	545	2025-08-21 11:14:04	2025-08-21 11:14:04
5118	9	571	2025-08-21 11:14:04	2025-08-21 11:14:04
5119	9	95	2025-08-21 11:14:04	2025-08-21 11:14:04
5120	9	96	2025-08-21 11:14:04	2025-08-21 11:14:04
5121	9	97	2025-08-21 11:14:04	2025-08-21 11:14:04
5122	9	98	2025-08-21 11:14:04	2025-08-21 11:14:04
5123	9	99	2025-08-21 11:14:04	2025-08-21 11:14:04
5124	9	100	2025-08-21 11:14:04	2025-08-21 11:14:04
5125	9	101	2025-08-21 11:14:04	2025-08-21 11:14:04
5126	9	102	2025-08-21 11:14:04	2025-08-21 11:14:04
5127	9	103	2025-08-21 11:14:04	2025-08-21 11:14:04
5128	9	104	2025-08-21 11:14:04	2025-08-21 11:14:04
5129	9	361	2025-08-21 11:14:04	2025-08-21 11:14:04
5130	9	362	2025-08-21 11:14:04	2025-08-21 11:14:04
5131	9	363	2025-08-21 11:14:04	2025-08-21 11:14:04
5132	9	364	2025-08-21 11:14:04	2025-08-21 11:14:04
5133	9	366	2025-08-21 11:14:04	2025-08-21 11:14:04
5134	9	376	2025-08-21 11:14:04	2025-08-21 11:14:04
5135	9	377	2025-08-21 11:14:04	2025-08-21 11:14:04
5136	9	105	2025-08-21 11:14:04	2025-08-21 11:14:04
5137	9	106	2025-08-21 11:14:04	2025-08-21 11:14:04
5138	9	107	2025-08-21 11:14:04	2025-08-21 11:14:04
5139	9	108	2025-08-21 11:14:04	2025-08-21 11:14:04
5140	9	109	2025-08-21 11:14:04	2025-08-21 11:14:04
5141	9	110	2025-08-21 11:14:04	2025-08-21 11:14:04
5142	9	111	2025-08-21 11:14:04	2025-08-21 11:14:04
5143	9	112	2025-08-21 11:14:04	2025-08-21 11:14:04
5144	9	113	2025-08-21 11:14:04	2025-08-21 11:14:04
5145	9	114	2025-08-21 11:14:04	2025-08-21 11:14:04
5146	9	115	2025-08-21 11:14:04	2025-08-21 11:14:04
5147	9	116	2025-08-21 11:14:04	2025-08-21 11:14:04
5148	9	117	2025-08-21 11:14:04	2025-08-21 11:14:04
5149	9	428	2025-08-21 11:14:04	2025-08-21 11:14:04
5150	9	429	2025-08-21 11:14:04	2025-08-21 11:14:04
5151	9	430	2025-08-21 11:14:04	2025-08-21 11:14:04
5152	9	431	2025-08-21 11:14:04	2025-08-21 11:14:04
5153	9	444	2025-08-21 11:14:04	2025-08-21 11:14:04
5154	9	445	2025-08-21 11:14:04	2025-08-21 11:14:04
5155	9	446	2025-08-21 11:14:04	2025-08-21 11:14:04
5156	9	447	2025-08-21 11:14:04	2025-08-21 11:14:04
5157	9	507	2025-08-21 11:14:04	2025-08-21 11:14:04
5158	9	508	2025-08-21 11:14:04	2025-08-21 11:14:04
5159	9	532	2025-08-21 11:14:04	2025-08-21 11:14:04
5160	9	540	2025-08-21 11:14:04	2025-08-21 11:14:04
5161	9	542	2025-08-21 11:14:04	2025-08-21 11:14:04
5162	9	544	2025-08-21 11:14:04	2025-08-21 11:14:04
5163	9	564	2025-08-21 11:14:04	2025-08-21 11:14:04
5164	9	565	2025-08-21 11:14:04	2025-08-21 11:14:04
5165	9	566	2025-08-21 11:14:04	2025-08-21 11:14:04
5166	9	619	2025-08-21 11:14:04	2025-08-21 11:14:04
5167	9	620	2025-08-21 11:14:04	2025-08-21 11:14:04
5168	9	621	2025-08-21 11:14:04	2025-08-21 11:14:04
5169	9	649	2025-08-21 11:14:04	2025-08-21 11:14:04
5170	9	650	2025-08-21 11:14:04	2025-08-21 11:14:04
5171	9	651	2025-08-21 11:14:04	2025-08-21 11:14:04
5172	9	660	2025-08-21 11:14:04	2025-08-21 11:14:04
5173	9	661	2025-08-21 11:14:04	2025-08-21 11:14:04
5174	9	662	2025-08-21 11:14:04	2025-08-21 11:14:04
5175	9	663	2025-08-21 11:14:04	2025-08-21 11:14:04
5176	9	664	2025-08-21 11:14:04	2025-08-21 11:14:04
5177	9	666	2025-08-21 11:14:04	2025-08-21 11:14:04
5178	9	674	2025-08-21 11:14:04	2025-08-21 11:14:04
5179	9	675	2025-08-21 11:14:04	2025-08-21 11:14:04
5180	9	118	2025-08-21 11:14:04	2025-08-21 11:14:04
5181	9	119	2025-08-21 11:14:04	2025-08-21 11:14:04
5182	9	120	2025-08-21 11:14:04	2025-08-21 11:14:04
5183	9	121	2025-08-21 11:14:04	2025-08-21 11:14:04
5184	9	122	2025-08-21 11:14:04	2025-08-21 11:14:04
5185	9	123	2025-08-21 11:14:04	2025-08-21 11:14:04
5186	9	124	2025-08-21 11:14:04	2025-08-21 11:14:04
5187	9	125	2025-08-21 11:14:04	2025-08-21 11:14:04
5188	9	126	2025-08-21 11:14:04	2025-08-21 11:14:04
5189	9	127	2025-08-21 11:14:04	2025-08-21 11:14:04
5190	9	128	2025-08-21 11:14:04	2025-08-21 11:14:04
5191	9	129	2025-08-21 11:14:04	2025-08-21 11:14:04
5192	9	130	2025-08-21 11:14:04	2025-08-21 11:14:04
5193	9	329	2025-08-21 11:14:04	2025-08-21 11:14:04
5194	9	330	2025-08-21 11:14:04	2025-08-21 11:14:04
5195	9	331	2025-08-21 11:14:04	2025-08-21 11:14:04
5196	9	332	2025-08-21 11:14:04	2025-08-21 11:14:04
5197	9	333	2025-08-21 11:14:04	2025-08-21 11:14:04
5198	9	334	2025-08-21 11:14:04	2025-08-21 11:14:04
5199	9	340	2025-08-21 11:14:04	2025-08-21 11:14:04
5200	9	131	2025-08-21 11:14:04	2025-08-21 11:14:04
5201	9	132	2025-08-21 11:14:04	2025-08-21 11:14:04
5202	9	133	2025-08-21 11:14:04	2025-08-21 11:14:04
5203	9	134	2025-08-21 11:14:04	2025-08-21 11:14:04
5204	9	135	2025-08-21 11:14:04	2025-08-21 11:14:04
5205	9	136	2025-08-21 11:14:04	2025-08-21 11:14:04
5206	9	137	2025-08-21 11:14:04	2025-08-21 11:14:04
5207	9	138	2025-08-21 11:14:04	2025-08-21 11:14:04
5208	9	139	2025-08-21 11:14:04	2025-08-21 11:14:04
5209	9	140	2025-08-21 11:14:04	2025-08-21 11:14:04
5210	9	141	2025-08-21 11:14:04	2025-08-21 11:14:04
5211	9	142	2025-08-21 11:14:04	2025-08-21 11:14:04
5212	9	143	2025-08-21 11:14:04	2025-08-21 11:14:04
5213	9	144	2025-08-21 11:14:04	2025-08-21 11:14:04
5214	9	145	2025-08-21 11:14:04	2025-08-21 11:14:04
5215	9	146	2025-08-21 11:14:04	2025-08-21 11:14:04
5216	9	147	2025-08-21 11:14:04	2025-08-21 11:14:04
5217	9	148	2025-08-21 11:14:04	2025-08-21 11:14:04
5218	9	149	2025-08-21 11:14:04	2025-08-21 11:14:04
5219	9	150	2025-08-21 11:14:04	2025-08-21 11:14:04
5220	9	151	2025-08-21 11:14:04	2025-08-21 11:14:04
5221	9	152	2025-08-21 11:14:04	2025-08-21 11:14:04
5222	9	153	2025-08-21 11:14:04	2025-08-21 11:14:04
5223	9	154	2025-08-21 11:14:04	2025-08-21 11:14:04
5224	9	155	2025-08-21 11:14:04	2025-08-21 11:14:04
5225	9	156	2025-08-21 11:14:04	2025-08-21 11:14:04
5226	9	157	2025-08-21 11:14:04	2025-08-21 11:14:04
5227	9	158	2025-08-21 11:14:04	2025-08-21 11:14:04
5228	9	159	2025-08-21 11:14:04	2025-08-21 11:14:04
5229	9	160	2025-08-21 11:14:04	2025-08-21 11:14:04
5230	9	161	2025-08-21 11:14:04	2025-08-21 11:14:04
5231	9	162	2025-08-21 11:14:04	2025-08-21 11:14:04
5232	9	163	2025-08-21 11:14:04	2025-08-21 11:14:04
5233	9	164	2025-08-21 11:14:04	2025-08-21 11:14:04
5234	9	165	2025-08-21 11:14:04	2025-08-21 11:14:04
5235	9	166	2025-08-21 11:14:04	2025-08-21 11:14:04
5236	9	167	2025-08-21 11:14:04	2025-08-21 11:14:04
5237	9	168	2025-08-21 11:14:04	2025-08-21 11:14:04
5238	9	169	2025-08-21 11:14:04	2025-08-21 11:14:04
5239	9	170	2025-08-21 11:14:04	2025-08-21 11:14:04
5240	9	171	2025-08-21 11:14:04	2025-08-21 11:14:04
5241	9	172	2025-08-21 11:14:04	2025-08-21 11:14:04
5242	9	173	2025-08-21 11:14:04	2025-08-21 11:14:04
5243	9	426	2025-08-21 11:14:04	2025-08-21 11:14:04
5244	9	341	2025-08-21 11:14:04	2025-08-21 11:14:04
5245	9	342	2025-08-21 11:14:04	2025-08-21 11:14:04
5246	9	343	2025-08-21 11:14:04	2025-08-21 11:14:04
5247	9	346	2025-08-21 11:14:04	2025-08-21 11:14:04
5248	9	347	2025-08-21 11:14:04	2025-08-21 11:14:04
5249	9	348	2025-08-21 11:14:04	2025-08-21 11:14:04
5250	9	349	2025-08-21 11:14:04	2025-08-21 11:14:04
5251	9	536	2025-08-21 11:14:04	2025-08-21 11:14:04
5252	9	537	2025-08-21 11:14:04	2025-08-21 11:14:04
5253	9	538	2025-08-21 11:14:04	2025-08-21 11:14:04
5254	9	560	2025-08-21 11:14:04	2025-08-21 11:14:04
5255	9	561	2025-08-21 11:14:04	2025-08-21 11:14:04
5256	9	562	2025-08-21 11:14:04	2025-08-21 11:14:04
5257	9	563	2025-08-21 11:14:04	2025-08-21 11:14:04
5258	9	199	2025-08-21 11:14:04	2025-08-21 11:14:04
5259	9	690	2025-08-21 11:14:04	2025-08-21 11:14:04
5260	9	344	2025-08-21 11:14:04	2025-08-21 11:14:04
5261	9	345	2025-08-21 11:14:04	2025-08-21 11:14:04
5262	9	691	2025-08-21 11:14:04	2025-08-21 11:14:04
5263	9	696	2025-08-21 11:14:04	2025-08-21 11:14:04
5264	9	697	2025-08-21 11:14:04	2025-08-21 11:14:04
5265	9	174	2025-08-21 11:14:04	2025-08-21 11:14:04
5266	9	176	2025-08-21 11:14:04	2025-08-21 11:14:04
5267	9	177	2025-08-21 11:14:04	2025-08-21 11:14:04
5268	9	178	2025-08-21 11:14:04	2025-08-21 11:14:04
5269	9	179	2025-08-21 11:14:04	2025-08-21 11:14:04
5270	9	180	2025-08-21 11:14:04	2025-08-21 11:14:04
5271	9	181	2025-08-21 11:14:04	2025-08-21 11:14:04
5272	9	182	2025-08-21 11:14:04	2025-08-21 11:14:04
5273	9	183	2025-08-21 11:14:04	2025-08-21 11:14:04
5274	9	184	2025-08-21 11:14:04	2025-08-21 11:14:04
5275	9	185	2025-08-21 11:14:04	2025-08-21 11:14:04
5276	9	186	2025-08-21 11:14:04	2025-08-21 11:14:04
5277	9	187	2025-08-21 11:14:04	2025-08-21 11:14:04
5278	9	188	2025-08-21 11:14:04	2025-08-21 11:14:04
5279	9	189	2025-08-21 11:14:04	2025-08-21 11:14:04
5280	9	190	2025-08-21 11:14:04	2025-08-21 11:14:04
5281	9	191	2025-08-21 11:14:04	2025-08-21 11:14:04
5282	9	192	2025-08-21 11:14:04	2025-08-21 11:14:04
5283	9	193	2025-08-21 11:14:04	2025-08-21 11:14:04
5284	9	194	2025-08-21 11:14:04	2025-08-21 11:14:04
5285	9	195	2025-08-21 11:14:04	2025-08-21 11:14:04
5286	9	196	2025-08-21 11:14:04	2025-08-21 11:14:04
5287	9	197	2025-08-21 11:14:04	2025-08-21 11:14:04
5288	9	198	2025-08-21 11:14:04	2025-08-21 11:14:04
5289	9	200	2025-08-21 11:14:04	2025-08-21 11:14:04
5290	9	201	2025-08-21 11:14:04	2025-08-21 11:14:04
5291	9	202	2025-08-21 11:14:04	2025-08-21 11:14:04
5292	9	203	2025-08-21 11:14:04	2025-08-21 11:14:04
5293	9	204	2025-08-21 11:14:04	2025-08-21 11:14:04
5294	9	205	2025-08-21 11:14:04	2025-08-21 11:14:04
5295	9	206	2025-08-21 11:14:04	2025-08-21 11:14:04
5296	9	207	2025-08-21 11:14:04	2025-08-21 11:14:04
5297	9	208	2025-08-21 11:14:04	2025-08-21 11:14:04
5298	9	209	2025-08-21 11:14:04	2025-08-21 11:14:04
5299	9	210	2025-08-21 11:14:04	2025-08-21 11:14:04
5300	9	211	2025-08-21 11:14:04	2025-08-21 11:14:04
5301	9	212	2025-08-21 11:14:04	2025-08-21 11:14:04
5302	9	213	2025-08-21 11:14:04	2025-08-21 11:14:04
5303	9	215	2025-08-21 11:14:04	2025-08-21 11:14:04
5304	9	335	2025-08-21 11:14:04	2025-08-21 11:14:04
5305	9	336	2025-08-21 11:14:04	2025-08-21 11:14:04
5306	9	337	2025-08-21 11:14:04	2025-08-21 11:14:04
5307	9	338	2025-08-21 11:14:04	2025-08-21 11:14:04
5308	9	381	2025-08-21 11:14:04	2025-08-21 11:14:04
5309	9	382	2025-08-21 11:14:04	2025-08-21 11:14:04
5310	9	383	2025-08-21 11:14:04	2025-08-21 11:14:04
5311	9	175	2025-08-21 11:14:04	2025-08-21 11:14:04
5312	9	214	2025-08-21 11:14:04	2025-08-21 11:14:04
5313	9	216	2025-08-21 11:14:04	2025-08-21 11:14:04
5314	9	217	2025-08-21 11:14:04	2025-08-21 11:14:04
5315	9	218	2025-08-21 11:14:04	2025-08-21 11:14:04
5316	9	219	2025-08-21 11:14:04	2025-08-21 11:14:04
5317	9	220	2025-08-21 11:14:04	2025-08-21 11:14:04
5318	9	221	2025-08-21 11:14:04	2025-08-21 11:14:04
5319	9	222	2025-08-21 11:14:04	2025-08-21 11:14:04
5320	9	223	2025-08-21 11:14:04	2025-08-21 11:14:04
5321	9	533	2025-08-21 11:14:04	2025-08-21 11:14:04
5322	9	534	2025-08-21 11:14:04	2025-08-21 11:14:04
5323	9	539	2025-08-21 11:14:04	2025-08-21 11:14:04
5324	9	535	2025-08-21 11:14:04	2025-08-21 11:14:04
5325	9	558	2025-08-21 11:14:04	2025-08-21 11:14:04
5326	9	559	2025-08-21 11:14:04	2025-08-21 11:14:04
5327	9	647	2025-08-21 11:14:04	2025-08-21 11:14:04
5328	9	667	2025-08-21 11:14:04	2025-08-21 11:14:04
5329	9	668	2025-08-21 11:14:04	2025-08-21 11:14:04
5330	9	673	2025-08-21 11:14:04	2025-08-21 11:14:04
5331	10	14	2025-12-20 18:38:33	2025-12-20 18:38:33
5332	10	15	2025-12-20 18:38:33	2025-12-20 18:38:33
5333	10	16	2025-12-20 18:38:33	2025-12-20 18:38:33
5334	10	17	2025-12-20 18:38:33	2025-12-20 18:38:33
5335	10	18	2025-12-20 18:38:33	2025-12-20 18:38:33
5336	10	19	2025-12-20 18:38:33	2025-12-20 18:38:33
5337	10	20	2025-12-20 18:38:33	2025-12-20 18:38:33
5338	10	21	2025-12-20 18:38:33	2025-12-20 18:38:33
5339	10	22	2025-12-20 18:38:33	2025-12-20 18:38:33
5340	10	23	2025-12-20 18:38:33	2025-12-20 18:38:33
5341	10	24	2025-12-20 18:38:33	2025-12-20 18:38:33
5342	10	448	2025-12-20 18:38:33	2025-12-20 18:38:33
5343	10	441	2025-12-20 18:38:33	2025-12-20 18:38:33
5344	10	442	2025-12-20 18:38:33	2025-12-20 18:38:33
5345	10	546	2025-12-20 18:38:33	2025-12-20 18:38:33
5346	10	584	2025-12-20 18:38:33	2025-12-20 18:38:33
5347	10	614	2025-12-20 18:38:33	2025-12-20 18:38:33
5348	10	615	2025-12-20 18:38:33	2025-12-20 18:38:33
5349	10	617	2025-12-20 18:38:33	2025-12-20 18:38:33
5350	10	618	2025-12-20 18:38:33	2025-12-20 18:38:33
5351	10	224	2025-12-20 18:38:33	2025-12-20 18:38:33
5352	10	225	2025-12-20 18:38:33	2025-12-20 18:38:33
5353	10	226	2025-12-20 18:38:33	2025-12-20 18:38:33
5354	10	227	2025-12-20 18:38:33	2025-12-20 18:38:33
5355	10	228	2025-12-20 18:38:33	2025-12-20 18:38:33
5356	10	229	2025-12-20 18:38:33	2025-12-20 18:38:33
5357	10	230	2025-12-20 18:38:33	2025-12-20 18:38:33
5358	10	231	2025-12-20 18:38:33	2025-12-20 18:38:33
5359	10	232	2025-12-20 18:38:33	2025-12-20 18:38:33
5360	10	233	2025-12-20 18:38:33	2025-12-20 18:38:33
5361	10	359	2025-12-20 18:38:33	2025-12-20 18:38:33
5362	10	360	2025-12-20 18:38:33	2025-12-20 18:38:33
5363	10	234	2025-12-20 18:38:33	2025-12-20 18:38:33
5364	10	235	2025-12-20 18:38:33	2025-12-20 18:38:33
5365	10	236	2025-12-20 18:38:33	2025-12-20 18:38:33
5366	10	237	2025-12-20 18:38:33	2025-12-20 18:38:33
5367	10	238	2025-12-20 18:38:33	2025-12-20 18:38:33
5368	10	239	2025-12-20 18:38:33	2025-12-20 18:38:33
5369	10	240	2025-12-20 18:38:33	2025-12-20 18:38:33
5370	10	241	2025-12-20 18:38:33	2025-12-20 18:38:33
5371	10	242	2025-12-20 18:38:33	2025-12-20 18:38:33
5372	10	243	2025-12-20 18:38:33	2025-12-20 18:38:33
5373	10	244	2025-12-20 18:38:33	2025-12-20 18:38:33
5374	10	245	2025-12-20 18:38:33	2025-12-20 18:38:33
5375	10	246	2025-12-20 18:38:33	2025-12-20 18:38:33
5376	10	247	2025-12-20 18:38:33	2025-12-20 18:38:33
5377	10	248	2025-12-20 18:38:33	2025-12-20 18:38:33
5378	10	249	2025-12-20 18:38:33	2025-12-20 18:38:33
5379	10	250	2025-12-20 18:38:33	2025-12-20 18:38:33
5380	10	251	2025-12-20 18:38:33	2025-12-20 18:38:33
5381	10	252	2025-12-20 18:38:33	2025-12-20 18:38:33
5382	10	253	2025-12-20 18:38:33	2025-12-20 18:38:33
5383	10	254	2025-12-20 18:38:33	2025-12-20 18:38:33
5384	10	255	2025-12-20 18:38:33	2025-12-20 18:38:33
5385	10	256	2025-12-20 18:38:33	2025-12-20 18:38:33
5386	10	257	2025-12-20 18:38:33	2025-12-20 18:38:33
5387	10	258	2025-12-20 18:38:33	2025-12-20 18:38:33
5388	10	259	2025-12-20 18:38:33	2025-12-20 18:38:33
5389	10	260	2025-12-20 18:38:33	2025-12-20 18:38:33
5390	10	261	2025-12-20 18:38:33	2025-12-20 18:38:33
5391	10	262	2025-12-20 18:38:33	2025-12-20 18:38:33
5392	10	263	2025-12-20 18:38:33	2025-12-20 18:38:33
5393	10	264	2025-12-20 18:38:33	2025-12-20 18:38:33
5394	10	509	2025-12-20 18:38:33	2025-12-20 18:38:33
5395	10	265	2025-12-20 18:38:33	2025-12-20 18:38:33
5396	10	266	2025-12-20 18:38:33	2025-12-20 18:38:33
5397	10	267	2025-12-20 18:38:33	2025-12-20 18:38:33
5398	10	268	2025-12-20 18:38:33	2025-12-20 18:38:33
5399	10	269	2025-12-20 18:38:33	2025-12-20 18:38:33
5400	10	270	2025-12-20 18:38:33	2025-12-20 18:38:33
5401	10	271	2025-12-20 18:38:33	2025-12-20 18:38:33
5402	10	272	2025-12-20 18:38:33	2025-12-20 18:38:33
5403	10	273	2025-12-20 18:38:33	2025-12-20 18:38:33
5404	10	274	2025-12-20 18:38:33	2025-12-20 18:38:33
5405	10	275	2025-12-20 18:38:33	2025-12-20 18:38:33
5406	10	276	2025-12-20 18:38:33	2025-12-20 18:38:33
5407	10	277	2025-12-20 18:38:33	2025-12-20 18:38:33
5408	10	278	2025-12-20 18:38:33	2025-12-20 18:38:33
5409	10	279	2025-12-20 18:38:33	2025-12-20 18:38:33
5410	10	280	2025-12-20 18:38:33	2025-12-20 18:38:33
5411	10	281	2025-12-20 18:38:33	2025-12-20 18:38:33
5412	10	282	2025-12-20 18:38:33	2025-12-20 18:38:33
5413	10	283	2025-12-20 18:38:33	2025-12-20 18:38:33
5414	10	284	2025-12-20 18:38:33	2025-12-20 18:38:33
5415	10	285	2025-12-20 18:38:33	2025-12-20 18:38:33
5416	10	286	2025-12-20 18:38:33	2025-12-20 18:38:33
5417	10	287	2025-12-20 18:38:33	2025-12-20 18:38:33
5418	10	288	2025-12-20 18:38:33	2025-12-20 18:38:33
5419	10	289	2025-12-20 18:38:33	2025-12-20 18:38:33
5420	10	294	2025-12-20 18:38:33	2025-12-20 18:38:33
5421	10	295	2025-12-20 18:38:33	2025-12-20 18:38:33
5422	10	296	2025-12-20 18:38:33	2025-12-20 18:38:33
5423	10	297	2025-12-20 18:38:33	2025-12-20 18:38:33
5424	10	500	2025-12-20 18:38:33	2025-12-20 18:38:33
5425	10	501	2025-12-20 18:38:33	2025-12-20 18:38:33
5426	10	502	2025-12-20 18:38:33	2025-12-20 18:38:33
5427	10	510	2025-12-20 18:38:33	2025-12-20 18:38:33
5428	10	511	2025-12-20 18:38:33	2025-12-20 18:38:33
5429	10	512	2025-12-20 18:38:33	2025-12-20 18:38:33
5430	10	567	2025-12-20 18:38:33	2025-12-20 18:38:33
5431	10	594	2025-12-20 18:38:33	2025-12-20 18:38:33
5432	10	679	2025-12-20 18:38:33	2025-12-20 18:38:33
5433	10	709	2025-12-20 18:38:33	2025-12-20 18:38:33
5434	10	298	2025-12-20 18:38:33	2025-12-20 18:38:33
5435	10	299	2025-12-20 18:38:33	2025-12-20 18:38:33
5436	10	300	2025-12-20 18:38:33	2025-12-20 18:38:33
5437	10	310	2025-12-20 18:38:33	2025-12-20 18:38:33
5438	10	311	2025-12-20 18:38:33	2025-12-20 18:38:33
5439	10	312	2025-12-20 18:38:33	2025-12-20 18:38:33
5440	10	313	2025-12-20 18:38:33	2025-12-20 18:38:33
5441	10	314	2025-12-20 18:38:33	2025-12-20 18:38:33
5442	10	315	2025-12-20 18:38:33	2025-12-20 18:38:33
5443	10	316	2025-12-20 18:38:33	2025-12-20 18:38:33
5444	10	317	2025-12-20 18:38:34	2025-12-20 18:38:34
5445	10	318	2025-12-20 18:38:34	2025-12-20 18:38:34
5446	10	358	2025-12-20 18:38:34	2025-12-20 18:38:34
5447	10	365	2025-12-20 18:38:34	2025-12-20 18:38:34
5448	10	350	2025-12-20 18:38:34	2025-12-20 18:38:34
5449	10	351	2025-12-20 18:38:34	2025-12-20 18:38:34
5450	10	352	2025-12-20 18:38:34	2025-12-20 18:38:34
5451	10	353	2025-12-20 18:38:34	2025-12-20 18:38:34
5452	10	354	2025-12-20 18:38:34	2025-12-20 18:38:34
5453	10	355	2025-12-20 18:38:34	2025-12-20 18:38:34
5454	10	356	2025-12-20 18:38:34	2025-12-20 18:38:34
5455	10	357	2025-12-20 18:38:34	2025-12-20 18:38:34
5456	10	392	2025-12-20 18:38:34	2025-12-20 18:38:34
5457	10	396	2025-12-20 18:38:34	2025-12-20 18:38:34
5458	10	301	2025-12-20 18:38:34	2025-12-20 18:38:34
5459	10	302	2025-12-20 18:38:34	2025-12-20 18:38:34
5460	10	303	2025-12-20 18:38:34	2025-12-20 18:38:34
5461	10	304	2025-12-20 18:38:34	2025-12-20 18:38:34
5462	10	305	2025-12-20 18:38:34	2025-12-20 18:38:34
5463	10	306	2025-12-20 18:38:34	2025-12-20 18:38:34
5464	10	307	2025-12-20 18:38:34	2025-12-20 18:38:34
5465	10	308	2025-12-20 18:38:34	2025-12-20 18:38:34
5466	10	309	2025-12-20 18:38:34	2025-12-20 18:38:34
5467	10	590	2025-12-20 18:38:34	2025-12-20 18:38:34
5468	10	591	2025-12-20 18:38:34	2025-12-20 18:38:34
5469	10	319	2025-12-20 18:38:34	2025-12-20 18:38:34
5470	10	320	2025-12-20 18:38:34	2025-12-20 18:38:34
5471	10	321	2025-12-20 18:38:34	2025-12-20 18:38:34
5472	10	322	2025-12-20 18:38:34	2025-12-20 18:38:34
5473	10	323	2025-12-20 18:38:34	2025-12-20 18:38:34
5474	10	324	2025-12-20 18:38:34	2025-12-20 18:38:34
5475	10	325	2025-12-20 18:38:34	2025-12-20 18:38:34
5476	10	326	2025-12-20 18:38:34	2025-12-20 18:38:34
5477	10	327	2025-12-20 18:38:34	2025-12-20 18:38:34
5478	10	328	2025-12-20 18:38:34	2025-12-20 18:38:34
5479	10	676	2025-12-20 18:38:34	2025-12-20 18:38:34
5480	10	339	2025-12-20 18:38:34	2025-12-20 18:38:34
5481	10	385	2025-12-20 18:38:34	2025-12-20 18:38:34
5482	10	386	2025-12-20 18:38:34	2025-12-20 18:38:34
5483	10	387	2025-12-20 18:38:34	2025-12-20 18:38:34
5484	10	388	2025-12-20 18:38:34	2025-12-20 18:38:34
5485	10	389	2025-12-20 18:38:34	2025-12-20 18:38:34
5486	10	390	2025-12-20 18:38:34	2025-12-20 18:38:34
5487	10	391	2025-12-20 18:38:34	2025-12-20 18:38:34
5488	10	555	2025-12-20 18:38:34	2025-12-20 18:38:34
5489	10	556	2025-12-20 18:38:34	2025-12-20 18:38:34
5490	10	557	2025-12-20 18:38:34	2025-12-20 18:38:34
5491	10	455	2025-12-20 18:38:34	2025-12-20 18:38:34
5492	10	456	2025-12-20 18:38:34	2025-12-20 18:38:34
5493	10	457	2025-12-20 18:38:34	2025-12-20 18:38:34
5494	10	458	2025-12-20 18:38:34	2025-12-20 18:38:34
5495	10	459	2025-12-20 18:38:34	2025-12-20 18:38:34
5496	10	460	2025-12-20 18:38:34	2025-12-20 18:38:34
5497	10	461	2025-12-20 18:38:34	2025-12-20 18:38:34
5498	10	462	2025-12-20 18:38:34	2025-12-20 18:38:34
5499	10	463	2025-12-20 18:38:34	2025-12-20 18:38:34
5500	10	465	2025-12-20 18:38:34	2025-12-20 18:38:34
5501	10	466	2025-12-20 18:38:34	2025-12-20 18:38:34
5502	10	467	2025-12-20 18:38:34	2025-12-20 18:38:34
5503	10	468	2025-12-20 18:38:34	2025-12-20 18:38:34
5504	10	469	2025-12-20 18:38:34	2025-12-20 18:38:34
5505	10	470	2025-12-20 18:38:34	2025-12-20 18:38:34
5506	10	471	2025-12-20 18:38:34	2025-12-20 18:38:34
5507	10	472	2025-12-20 18:38:34	2025-12-20 18:38:34
5508	10	473	2025-12-20 18:38:34	2025-12-20 18:38:34
5509	10	474	2025-12-20 18:38:34	2025-12-20 18:38:34
5510	10	476	2025-12-20 18:38:34	2025-12-20 18:38:34
5511	10	478	2025-12-20 18:38:34	2025-12-20 18:38:34
5512	10	479	2025-12-20 18:38:34	2025-12-20 18:38:34
5513	10	475	2025-12-20 18:38:34	2025-12-20 18:38:34
5514	10	710	2025-12-20 18:38:34	2025-12-20 18:38:34
5515	10	714	2025-12-20 18:38:34	2025-12-20 18:38:34
5516	10	715	2025-12-20 18:38:34	2025-12-20 18:38:34
5517	10	716	2025-12-20 18:38:34	2025-12-20 18:38:34
5518	10	717	2025-12-20 18:38:34	2025-12-20 18:38:34
5519	10	718	2025-12-20 18:38:34	2025-12-20 18:38:34
5520	10	719	2025-12-20 18:38:34	2025-12-20 18:38:34
5521	10	720	2025-12-20 18:38:34	2025-12-20 18:38:34
5522	10	721	2025-12-20 18:38:34	2025-12-20 18:38:34
5523	10	722	2025-12-20 18:38:34	2025-12-20 18:38:34
5524	10	723	2025-12-20 18:38:34	2025-12-20 18:38:34
5525	10	724	2025-12-20 18:38:34	2025-12-20 18:38:34
5526	10	725	2025-12-20 18:38:34	2025-12-20 18:38:34
5527	10	726	2025-12-20 18:38:34	2025-12-20 18:38:34
5528	10	727	2025-12-20 18:38:34	2025-12-20 18:38:34
5529	10	728	2025-12-20 18:38:34	2025-12-20 18:38:34
5530	10	729	2025-12-20 18:38:34	2025-12-20 18:38:34
5531	10	736	2025-12-20 18:38:34	2025-12-20 18:38:34
5532	10	737	2025-12-20 18:38:34	2025-12-20 18:38:34
5533	10	738	2025-12-20 18:38:34	2025-12-20 18:38:34
5534	10	739	2025-12-20 18:38:34	2025-12-20 18:38:34
5535	10	740	2025-12-20 18:38:34	2025-12-20 18:38:34
5536	10	25	2025-12-20 18:38:34	2025-12-20 18:38:34
5537	10	487	2025-12-20 18:38:34	2025-12-20 18:38:34
5538	10	488	2025-12-20 18:38:34	2025-12-20 18:38:34
5539	10	489	2025-12-20 18:38:34	2025-12-20 18:38:34
5540	10	490	2025-12-20 18:38:34	2025-12-20 18:38:34
5541	10	491	2025-12-20 18:38:34	2025-12-20 18:38:34
5542	10	551	2025-12-20 18:38:34	2025-12-20 18:38:34
5543	10	552	2025-12-20 18:38:34	2025-12-20 18:38:34
5544	10	568	2025-12-20 18:38:34	2025-12-20 18:38:34
5545	10	569	2025-12-20 18:38:34	2025-12-20 18:38:34
5546	10	570	2025-12-20 18:38:34	2025-12-20 18:38:34
5547	10	492	2025-12-20 18:38:34	2025-12-20 18:38:34
5548	10	493	2025-12-20 18:38:34	2025-12-20 18:38:34
5549	10	494	2025-12-20 18:38:34	2025-12-20 18:38:34
5550	10	495	2025-12-20 18:38:34	2025-12-20 18:38:34
5551	10	497	2025-12-20 18:38:34	2025-12-20 18:38:34
5552	10	496	2025-12-20 18:38:34	2025-12-20 18:38:34
5553	10	572	2025-12-20 18:38:34	2025-12-20 18:38:34
5554	10	573	2025-12-20 18:38:34	2025-12-20 18:38:34
5555	10	574	2025-12-20 18:38:34	2025-12-20 18:38:34
5556	10	575	2025-12-20 18:38:34	2025-12-20 18:38:34
5557	10	622	2025-12-20 18:38:34	2025-12-20 18:38:34
5558	10	378	2025-12-20 18:38:34	2025-12-20 18:38:34
5559	10	528	2025-12-20 18:38:34	2025-12-20 18:38:34
5560	10	595	2025-12-20 18:38:34	2025-12-20 18:38:34
5561	10	596	2025-12-20 18:38:34	2025-12-20 18:38:34
5562	10	597	2025-12-20 18:38:34	2025-12-20 18:38:34
5563	10	598	2025-12-20 18:38:34	2025-12-20 18:38:34
5564	10	599	2025-12-20 18:38:34	2025-12-20 18:38:34
5565	10	600	2025-12-20 18:38:34	2025-12-20 18:38:34
5566	10	601	2025-12-20 18:38:34	2025-12-20 18:38:34
5567	10	602	2025-12-20 18:38:34	2025-12-20 18:38:34
5568	10	603	2025-12-20 18:38:34	2025-12-20 18:38:34
5569	10	604	2025-12-20 18:38:34	2025-12-20 18:38:34
5570	10	605	2025-12-20 18:38:34	2025-12-20 18:38:34
5571	10	606	2025-12-20 18:38:34	2025-12-20 18:38:34
5572	10	607	2025-12-20 18:38:34	2025-12-20 18:38:34
5573	10	608	2025-12-20 18:38:34	2025-12-20 18:38:34
5574	10	609	2025-12-20 18:38:34	2025-12-20 18:38:34
5575	10	610	2025-12-20 18:38:34	2025-12-20 18:38:34
5576	10	611	2025-12-20 18:38:34	2025-12-20 18:38:34
5577	10	612	2025-12-20 18:38:34	2025-12-20 18:38:34
5578	10	613	2025-12-20 18:38:34	2025-12-20 18:38:34
5579	10	677	2025-12-20 18:38:34	2025-12-20 18:38:34
5580	10	678	2025-12-20 18:38:34	2025-12-20 18:38:34
5581	10	706	2025-12-20 18:38:34	2025-12-20 18:38:34
5582	10	707	2025-12-20 18:38:34	2025-12-20 18:38:34
5583	10	623	2025-12-20 18:38:34	2025-12-20 18:38:34
5584	10	624	2025-12-20 18:38:34	2025-12-20 18:38:34
5585	10	625	2025-12-20 18:38:34	2025-12-20 18:38:34
5586	10	626	2025-12-20 18:38:34	2025-12-20 18:38:34
5587	10	627	2025-12-20 18:38:34	2025-12-20 18:38:34
5588	10	628	2025-12-20 18:38:34	2025-12-20 18:38:34
5589	10	629	2025-12-20 18:38:34	2025-12-20 18:38:34
5590	10	630	2025-12-20 18:38:34	2025-12-20 18:38:34
5591	10	631	2025-12-20 18:38:34	2025-12-20 18:38:34
5592	10	632	2025-12-20 18:38:34	2025-12-20 18:38:34
5593	10	633	2025-12-20 18:38:34	2025-12-20 18:38:34
5594	10	634	2025-12-20 18:38:34	2025-12-20 18:38:34
5595	10	635	2025-12-20 18:38:34	2025-12-20 18:38:34
5596	10	636	2025-12-20 18:38:34	2025-12-20 18:38:34
5597	10	637	2025-12-20 18:38:34	2025-12-20 18:38:34
5598	10	638	2025-12-20 18:38:34	2025-12-20 18:38:34
5599	10	659	2025-12-20 18:38:34	2025-12-20 18:38:34
5600	10	639	2025-12-20 18:38:34	2025-12-20 18:38:34
5601	10	640	2025-12-20 18:38:34	2025-12-20 18:38:34
5602	10	641	2025-12-20 18:38:34	2025-12-20 18:38:34
5603	10	642	2025-12-20 18:38:34	2025-12-20 18:38:34
5604	10	643	2025-12-20 18:38:34	2025-12-20 18:38:34
5605	10	644	2025-12-20 18:38:34	2025-12-20 18:38:34
5606	10	645	2025-12-20 18:38:34	2025-12-20 18:38:34
5607	10	646	2025-12-20 18:38:34	2025-12-20 18:38:34
5608	10	700	2025-12-20 18:38:34	2025-12-20 18:38:34
5609	10	701	2025-12-20 18:38:34	2025-12-20 18:38:34
5610	10	702	2025-12-20 18:38:34	2025-12-20 18:38:34
5611	10	703	2025-12-20 18:38:34	2025-12-20 18:38:34
5612	10	704	2025-12-20 18:38:34	2025-12-20 18:38:34
5613	10	705	2025-12-20 18:38:34	2025-12-20 18:38:34
5614	10	26	2025-12-20 18:38:34	2025-12-20 18:38:34
5615	10	28	2025-12-20 18:38:34	2025-12-20 18:38:34
5616	10	29	2025-12-20 18:38:34	2025-12-20 18:38:34
5617	10	30	2025-12-20 18:38:34	2025-12-20 18:38:34
5618	10	31	2025-12-20 18:38:34	2025-12-20 18:38:34
5619	10	32	2025-12-20 18:38:34	2025-12-20 18:38:34
5620	10	33	2025-12-20 18:38:34	2025-12-20 18:38:34
5621	10	367	2025-12-20 18:38:34	2025-12-20 18:38:34
5622	10	368	2025-12-20 18:38:34	2025-12-20 18:38:34
5623	10	369	2025-12-20 18:38:34	2025-12-20 18:38:34
5624	10	370	2025-12-20 18:38:34	2025-12-20 18:38:34
5625	10	371	2025-12-20 18:38:34	2025-12-20 18:38:34
5626	10	373	2025-12-20 18:38:34	2025-12-20 18:38:34
5627	10	395	2025-12-20 18:38:34	2025-12-20 18:38:34
5628	10	39	2025-12-20 18:38:34	2025-12-20 18:38:34
5629	10	379	2025-12-20 18:38:34	2025-12-20 18:38:34
5630	10	380	2025-12-20 18:38:34	2025-12-20 18:38:34
5631	10	34	2025-12-20 18:38:34	2025-12-20 18:38:34
5632	10	35	2025-12-20 18:38:34	2025-12-20 18:38:34
5633	10	36	2025-12-20 18:38:34	2025-12-20 18:38:34
5634	10	37	2025-12-20 18:38:34	2025-12-20 18:38:34
5635	10	38	2025-12-20 18:38:34	2025-12-20 18:38:34
5636	10	424	2025-12-20 18:38:34	2025-12-20 18:38:34
5637	10	425	2025-12-20 18:38:34	2025-12-20 18:38:34
5638	10	427	2025-12-20 18:38:34	2025-12-20 18:38:34
5639	10	443	2025-12-20 18:38:34	2025-12-20 18:38:34
5640	10	449	2025-12-20 18:38:34	2025-12-20 18:38:34
5641	10	453	2025-12-20 18:38:34	2025-12-20 18:38:34
5642	10	454	2025-12-20 18:38:34	2025-12-20 18:38:34
5643	10	464	2025-12-20 18:38:34	2025-12-20 18:38:34
5644	10	450	2025-12-20 18:38:34	2025-12-20 18:38:34
5645	10	498	2025-12-20 18:38:34	2025-12-20 18:38:34
5646	10	499	2025-12-20 18:38:34	2025-12-20 18:38:34
5647	10	513	2025-12-20 18:38:34	2025-12-20 18:38:34
5648	10	514	2025-12-20 18:38:34	2025-12-20 18:38:34
5649	10	515	2025-12-20 18:38:34	2025-12-20 18:38:34
5650	10	516	2025-12-20 18:38:34	2025-12-20 18:38:34
5651	10	517	2025-12-20 18:38:34	2025-12-20 18:38:34
5652	10	518	2025-12-20 18:38:34	2025-12-20 18:38:34
5653	10	520	2025-12-20 18:38:34	2025-12-20 18:38:34
5654	10	521	2025-12-20 18:38:34	2025-12-20 18:38:34
5655	10	522	2025-12-20 18:38:34	2025-12-20 18:38:34
5656	10	523	2025-12-20 18:38:34	2025-12-20 18:38:34
5657	10	531	2025-12-20 18:38:34	2025-12-20 18:38:34
5658	10	547	2025-12-20 18:38:34	2025-12-20 18:38:34
5659	10	548	2025-12-20 18:38:34	2025-12-20 18:38:34
5660	10	549	2025-12-20 18:38:34	2025-12-20 18:38:34
5661	10	550	2025-12-20 18:38:34	2025-12-20 18:38:34
5662	10	553	2025-12-20 18:38:34	2025-12-20 18:38:34
5663	10	554	2025-12-20 18:38:34	2025-12-20 18:38:34
5664	10	586	2025-12-20 18:38:34	2025-12-20 18:38:34
5665	10	593	2025-12-20 18:38:34	2025-12-20 18:38:34
5666	10	652	2025-12-20 18:38:34	2025-12-20 18:38:34
5667	10	653	2025-12-20 18:38:34	2025-12-20 18:38:34
5668	10	654	2025-12-20 18:38:34	2025-12-20 18:38:34
5669	10	655	2025-12-20 18:38:34	2025-12-20 18:38:34
5670	10	656	2025-12-20 18:38:34	2025-12-20 18:38:34
5671	10	657	2025-12-20 18:38:34	2025-12-20 18:38:34
5672	10	658	2025-12-20 18:38:34	2025-12-20 18:38:34
5673	10	682	2025-12-20 18:38:34	2025-12-20 18:38:34
5674	10	683	2025-12-20 18:38:34	2025-12-20 18:38:34
5675	10	684	2025-12-20 18:38:34	2025-12-20 18:38:34
5676	10	685	2025-12-20 18:38:34	2025-12-20 18:38:34
5677	10	686	2025-12-20 18:38:34	2025-12-20 18:38:34
5678	10	687	2025-12-20 18:38:34	2025-12-20 18:38:34
5679	10	688	2025-12-20 18:38:34	2025-12-20 18:38:34
5680	10	27	2025-12-20 18:38:34	2025-12-20 18:38:34
5681	10	692	2025-12-20 18:38:34	2025-12-20 18:38:34
5682	10	708	2025-12-20 18:38:34	2025-12-20 18:38:34
5683	10	731	2025-12-20 18:38:34	2025-12-20 18:38:34
5684	10	732	2025-12-20 18:38:34	2025-12-20 18:38:34
5685	10	40	2025-12-20 18:38:34	2025-12-20 18:38:34
5686	10	44	2025-12-20 18:38:34	2025-12-20 18:38:34
5687	10	45	2025-12-20 18:38:34	2025-12-20 18:38:34
5688	10	46	2025-12-20 18:38:34	2025-12-20 18:38:34
5689	10	47	2025-12-20 18:38:34	2025-12-20 18:38:34
5690	10	48	2025-12-20 18:38:34	2025-12-20 18:38:34
5691	10	49	2025-12-20 18:38:34	2025-12-20 18:38:34
5692	10	50	2025-12-20 18:38:34	2025-12-20 18:38:34
5693	10	51	2025-12-20 18:38:34	2025-12-20 18:38:34
5694	10	52	2025-12-20 18:38:34	2025-12-20 18:38:34
5695	10	372	2025-12-20 18:38:34	2025-12-20 18:38:34
5696	10	384	2025-12-20 18:38:34	2025-12-20 18:38:34
5697	10	41	2025-12-20 18:38:34	2025-12-20 18:38:34
5698	10	42	2025-12-20 18:38:34	2025-12-20 18:38:34
5699	10	43	2025-12-20 18:38:34	2025-12-20 18:38:34
5700	10	529	2025-12-20 18:38:34	2025-12-20 18:38:34
5701	10	526	2025-12-20 18:38:34	2025-12-20 18:38:34
5702	10	525	2025-12-20 18:38:34	2025-12-20 18:38:34
5703	10	527	2025-12-20 18:38:34	2025-12-20 18:38:34
5704	10	530	2025-12-20 18:38:34	2025-12-20 18:38:34
5705	10	519	2025-12-20 18:38:34	2025-12-20 18:38:34
5706	10	587	2025-12-20 18:38:34	2025-12-20 18:38:34
5707	10	592	2025-12-20 18:38:34	2025-12-20 18:38:34
5708	10	648	2025-12-20 18:38:34	2025-12-20 18:38:34
5709	10	524	2025-12-20 18:38:34	2025-12-20 18:38:34
5710	10	588	2025-12-20 18:38:34	2025-12-20 18:38:34
5711	10	616	2025-12-20 18:38:34	2025-12-20 18:38:34
5712	10	452	2025-12-20 18:38:34	2025-12-20 18:38:34
5713	10	589	2025-12-20 18:38:34	2025-12-20 18:38:34
5714	10	665	2025-12-20 18:38:34	2025-12-20 18:38:34
5715	10	693	2025-12-20 18:38:34	2025-12-20 18:38:34
5716	10	694	2025-12-20 18:38:34	2025-12-20 18:38:34
5717	10	695	2025-12-20 18:38:34	2025-12-20 18:38:34
5718	10	53	2025-12-20 18:38:34	2025-12-20 18:38:34
5719	10	54	2025-12-20 18:38:34	2025-12-20 18:38:34
5720	10	55	2025-12-20 18:38:34	2025-12-20 18:38:34
5721	10	56	2025-12-20 18:38:34	2025-12-20 18:38:34
5722	10	57	2025-12-20 18:38:34	2025-12-20 18:38:34
5723	10	58	2025-12-20 18:38:34	2025-12-20 18:38:34
5724	10	59	2025-12-20 18:38:34	2025-12-20 18:38:34
5725	10	60	2025-12-20 18:38:34	2025-12-20 18:38:34
5726	10	61	2025-12-20 18:38:34	2025-12-20 18:38:34
5727	10	62	2025-12-20 18:38:34	2025-12-20 18:38:34
5728	10	63	2025-12-20 18:38:34	2025-12-20 18:38:34
5729	10	64	2025-12-20 18:38:34	2025-12-20 18:38:34
5730	10	65	2025-12-20 18:38:34	2025-12-20 18:38:34
5731	10	66	2025-12-20 18:38:34	2025-12-20 18:38:34
5732	10	67	2025-12-20 18:38:34	2025-12-20 18:38:34
5733	10	68	2025-12-20 18:38:34	2025-12-20 18:38:34
5734	10	69	2025-12-20 18:38:34	2025-12-20 18:38:34
5735	10	70	2025-12-20 18:38:34	2025-12-20 18:38:34
5736	10	71	2025-12-20 18:38:34	2025-12-20 18:38:34
5737	10	72	2025-12-20 18:38:34	2025-12-20 18:38:34
5738	10	73	2025-12-20 18:38:34	2025-12-20 18:38:34
5739	10	74	2025-12-20 18:38:34	2025-12-20 18:38:34
5740	10	75	2025-12-20 18:38:34	2025-12-20 18:38:34
5741	10	76	2025-12-20 18:38:34	2025-12-20 18:38:34
5742	10	77	2025-12-20 18:38:34	2025-12-20 18:38:34
5743	10	432	2025-12-20 18:38:34	2025-12-20 18:38:34
5744	10	433	2025-12-20 18:38:34	2025-12-20 18:38:34
5745	10	434	2025-12-20 18:38:34	2025-12-20 18:38:34
5746	10	435	2025-12-20 18:38:34	2025-12-20 18:38:34
5747	10	436	2025-12-20 18:38:34	2025-12-20 18:38:34
5748	10	437	2025-12-20 18:38:34	2025-12-20 18:38:34
5749	10	438	2025-12-20 18:38:34	2025-12-20 18:38:34
5750	10	439	2025-12-20 18:38:34	2025-12-20 18:38:34
5751	10	440	2025-12-20 18:38:34	2025-12-20 18:38:34
5752	10	451	2025-12-20 18:38:34	2025-12-20 18:38:34
5753	10	477	2025-12-20 18:38:34	2025-12-20 18:38:34
5754	10	585	2025-12-20 18:38:34	2025-12-20 18:38:34
5755	10	669	2025-12-20 18:38:34	2025-12-20 18:38:34
5756	10	670	2025-12-20 18:38:34	2025-12-20 18:38:34
5757	10	671	2025-12-20 18:38:34	2025-12-20 18:38:34
5758	10	672	2025-12-20 18:38:34	2025-12-20 18:38:34
5759	10	680	2025-12-20 18:38:34	2025-12-20 18:38:34
5760	10	681	2025-12-20 18:38:34	2025-12-20 18:38:34
5761	10	689	2025-12-20 18:38:34	2025-12-20 18:38:34
5762	10	698	2025-12-20 18:38:34	2025-12-20 18:38:34
5763	10	699	2025-12-20 18:38:34	2025-12-20 18:38:34
5764	10	711	2025-12-20 18:38:34	2025-12-20 18:38:34
5765	10	712	2025-12-20 18:38:34	2025-12-20 18:38:34
5766	10	713	2025-12-20 18:38:34	2025-12-20 18:38:34
5767	10	730	2025-12-20 18:38:34	2025-12-20 18:38:34
5768	10	78	2025-12-20 18:38:34	2025-12-20 18:38:34
5769	10	79	2025-12-20 18:38:34	2025-12-20 18:38:34
5770	10	80	2025-12-20 18:38:34	2025-12-20 18:38:34
5771	10	81	2025-12-20 18:38:34	2025-12-20 18:38:34
5772	10	82	2025-12-20 18:38:34	2025-12-20 18:38:34
5773	10	83	2025-12-20 18:38:34	2025-12-20 18:38:34
5774	10	84	2025-12-20 18:38:34	2025-12-20 18:38:34
5775	10	85	2025-12-20 18:38:34	2025-12-20 18:38:34
5776	10	86	2025-12-20 18:38:34	2025-12-20 18:38:34
5777	10	87	2025-12-20 18:38:34	2025-12-20 18:38:34
5778	10	88	2025-12-20 18:38:34	2025-12-20 18:38:34
5779	10	89	2025-12-20 18:38:34	2025-12-20 18:38:34
5780	10	90	2025-12-20 18:38:34	2025-12-20 18:38:34
5781	10	91	2025-12-20 18:38:34	2025-12-20 18:38:34
5782	10	92	2025-12-20 18:38:34	2025-12-20 18:38:34
5783	10	93	2025-12-20 18:38:34	2025-12-20 18:38:34
5784	10	94	2025-12-20 18:38:34	2025-12-20 18:38:34
5785	10	374	2025-12-20 18:38:34	2025-12-20 18:38:34
5786	10	375	2025-12-20 18:38:34	2025-12-20 18:38:34
5787	10	393	2025-12-20 18:38:34	2025-12-20 18:38:34
5788	10	394	2025-12-20 18:38:34	2025-12-20 18:38:34
5789	10	397	2025-12-20 18:38:34	2025-12-20 18:38:34
5790	10	398	2025-12-20 18:38:34	2025-12-20 18:38:34
5791	10	541	2025-12-20 18:38:34	2025-12-20 18:38:34
5792	10	543	2025-12-20 18:38:34	2025-12-20 18:38:34
5793	10	545	2025-12-20 18:38:34	2025-12-20 18:38:34
5794	10	571	2025-12-20 18:38:34	2025-12-20 18:38:34
5795	10	735	2025-12-20 18:38:34	2025-12-20 18:38:34
5796	10	95	2025-12-20 18:38:34	2025-12-20 18:38:34
5797	10	96	2025-12-20 18:38:34	2025-12-20 18:38:34
5798	10	97	2025-12-20 18:38:34	2025-12-20 18:38:34
5799	10	98	2025-12-20 18:38:34	2025-12-20 18:38:34
5800	10	99	2025-12-20 18:38:34	2025-12-20 18:38:34
5801	10	100	2025-12-20 18:38:34	2025-12-20 18:38:34
5802	10	101	2025-12-20 18:38:34	2025-12-20 18:38:34
5803	10	102	2025-12-20 18:38:34	2025-12-20 18:38:34
5804	10	103	2025-12-20 18:38:34	2025-12-20 18:38:34
5805	10	104	2025-12-20 18:38:34	2025-12-20 18:38:34
5806	10	361	2025-12-20 18:38:34	2025-12-20 18:38:34
5807	10	362	2025-12-20 18:38:34	2025-12-20 18:38:34
5808	10	363	2025-12-20 18:38:34	2025-12-20 18:38:34
5809	10	364	2025-12-20 18:38:34	2025-12-20 18:38:34
5810	10	366	2025-12-20 18:38:34	2025-12-20 18:38:34
5811	10	376	2025-12-20 18:38:34	2025-12-20 18:38:34
5812	10	377	2025-12-20 18:38:34	2025-12-20 18:38:34
5813	10	105	2025-12-20 18:38:34	2025-12-20 18:38:34
5814	10	106	2025-12-20 18:38:34	2025-12-20 18:38:34
5815	10	107	2025-12-20 18:38:34	2025-12-20 18:38:34
5816	10	108	2025-12-20 18:38:34	2025-12-20 18:38:34
5817	10	109	2025-12-20 18:38:34	2025-12-20 18:38:34
5818	10	110	2025-12-20 18:38:34	2025-12-20 18:38:34
5819	10	111	2025-12-20 18:38:34	2025-12-20 18:38:34
5820	10	112	2025-12-20 18:38:34	2025-12-20 18:38:34
5821	10	113	2025-12-20 18:38:34	2025-12-20 18:38:34
5822	10	114	2025-12-20 18:38:34	2025-12-20 18:38:34
5823	10	115	2025-12-20 18:38:34	2025-12-20 18:38:34
5824	10	116	2025-12-20 18:38:34	2025-12-20 18:38:34
5825	10	117	2025-12-20 18:38:34	2025-12-20 18:38:34
5826	10	428	2025-12-20 18:38:34	2025-12-20 18:38:34
5827	10	429	2025-12-20 18:38:34	2025-12-20 18:38:34
5828	10	430	2025-12-20 18:38:34	2025-12-20 18:38:34
5829	10	431	2025-12-20 18:38:34	2025-12-20 18:38:34
5830	10	444	2025-12-20 18:38:34	2025-12-20 18:38:34
5831	10	445	2025-12-20 18:38:34	2025-12-20 18:38:34
5832	10	446	2025-12-20 18:38:34	2025-12-20 18:38:34
5833	10	447	2025-12-20 18:38:34	2025-12-20 18:38:34
5834	10	507	2025-12-20 18:38:34	2025-12-20 18:38:34
5835	10	508	2025-12-20 18:38:34	2025-12-20 18:38:34
5836	10	532	2025-12-20 18:38:34	2025-12-20 18:38:34
5837	10	540	2025-12-20 18:38:34	2025-12-20 18:38:34
5838	10	542	2025-12-20 18:38:34	2025-12-20 18:38:34
5839	10	544	2025-12-20 18:38:34	2025-12-20 18:38:34
5840	10	564	2025-12-20 18:38:34	2025-12-20 18:38:34
5841	10	565	2025-12-20 18:38:34	2025-12-20 18:38:34
5842	10	566	2025-12-20 18:38:34	2025-12-20 18:38:34
5843	10	619	2025-12-20 18:38:34	2025-12-20 18:38:34
5844	10	620	2025-12-20 18:38:34	2025-12-20 18:38:34
5845	10	621	2025-12-20 18:38:34	2025-12-20 18:38:34
5846	10	649	2025-12-20 18:38:34	2025-12-20 18:38:34
5847	10	650	2025-12-20 18:38:34	2025-12-20 18:38:34
5848	10	651	2025-12-20 18:38:34	2025-12-20 18:38:34
5849	10	660	2025-12-20 18:38:34	2025-12-20 18:38:34
5850	10	661	2025-12-20 18:38:34	2025-12-20 18:38:34
5851	10	662	2025-12-20 18:38:34	2025-12-20 18:38:34
5852	10	663	2025-12-20 18:38:34	2025-12-20 18:38:34
5853	10	664	2025-12-20 18:38:34	2025-12-20 18:38:34
5854	10	666	2025-12-20 18:38:34	2025-12-20 18:38:34
5855	10	674	2025-12-20 18:38:34	2025-12-20 18:38:34
5856	10	675	2025-12-20 18:38:34	2025-12-20 18:38:34
5857	10	733	2025-12-20 18:38:34	2025-12-20 18:38:34
5858	10	734	2025-12-20 18:38:34	2025-12-20 18:38:34
5859	10	118	2025-12-20 18:38:34	2025-12-20 18:38:34
5860	10	119	2025-12-20 18:38:34	2025-12-20 18:38:34
5861	10	120	2025-12-20 18:38:34	2025-12-20 18:38:34
5862	10	121	2025-12-20 18:38:34	2025-12-20 18:38:34
5863	10	122	2025-12-20 18:38:34	2025-12-20 18:38:34
5864	10	123	2025-12-20 18:38:34	2025-12-20 18:38:34
5865	10	124	2025-12-20 18:38:34	2025-12-20 18:38:34
5866	10	125	2025-12-20 18:38:34	2025-12-20 18:38:34
5867	10	126	2025-12-20 18:38:34	2025-12-20 18:38:34
5868	10	127	2025-12-20 18:38:34	2025-12-20 18:38:34
5869	10	128	2025-12-20 18:38:34	2025-12-20 18:38:34
5870	10	129	2025-12-20 18:38:34	2025-12-20 18:38:34
5871	10	130	2025-12-20 18:38:34	2025-12-20 18:38:34
5872	10	329	2025-12-20 18:38:34	2025-12-20 18:38:34
5873	10	330	2025-12-20 18:38:34	2025-12-20 18:38:34
5874	10	331	2025-12-20 18:38:34	2025-12-20 18:38:34
5875	10	332	2025-12-20 18:38:34	2025-12-20 18:38:34
5876	10	333	2025-12-20 18:38:34	2025-12-20 18:38:34
5877	10	334	2025-12-20 18:38:34	2025-12-20 18:38:34
5878	10	340	2025-12-20 18:38:34	2025-12-20 18:38:34
5879	10	131	2025-12-20 18:38:34	2025-12-20 18:38:34
5880	10	132	2025-12-20 18:38:34	2025-12-20 18:38:34
5881	10	133	2025-12-20 18:38:34	2025-12-20 18:38:34
5882	10	134	2025-12-20 18:38:34	2025-12-20 18:38:34
5883	10	135	2025-12-20 18:38:34	2025-12-20 18:38:34
5884	10	136	2025-12-20 18:38:34	2025-12-20 18:38:34
5885	10	137	2025-12-20 18:38:34	2025-12-20 18:38:34
5886	10	138	2025-12-20 18:38:34	2025-12-20 18:38:34
5887	10	139	2025-12-20 18:38:34	2025-12-20 18:38:34
5888	10	140	2025-12-20 18:38:34	2025-12-20 18:38:34
5889	10	141	2025-12-20 18:38:34	2025-12-20 18:38:34
5890	10	142	2025-12-20 18:38:34	2025-12-20 18:38:34
5891	10	143	2025-12-20 18:38:34	2025-12-20 18:38:34
5892	10	144	2025-12-20 18:38:34	2025-12-20 18:38:34
5893	10	145	2025-12-20 18:38:34	2025-12-20 18:38:34
5894	10	146	2025-12-20 18:38:34	2025-12-20 18:38:34
5895	10	147	2025-12-20 18:38:34	2025-12-20 18:38:34
5896	10	148	2025-12-20 18:38:34	2025-12-20 18:38:34
5897	10	149	2025-12-20 18:38:34	2025-12-20 18:38:34
5898	10	150	2025-12-20 18:38:34	2025-12-20 18:38:34
5899	10	151	2025-12-20 18:38:34	2025-12-20 18:38:34
5900	10	152	2025-12-20 18:38:34	2025-12-20 18:38:34
5901	10	153	2025-12-20 18:38:34	2025-12-20 18:38:34
5902	10	154	2025-12-20 18:38:34	2025-12-20 18:38:34
5903	10	155	2025-12-20 18:38:34	2025-12-20 18:38:34
5904	10	156	2025-12-20 18:38:34	2025-12-20 18:38:34
5905	10	157	2025-12-20 18:38:34	2025-12-20 18:38:34
5906	10	158	2025-12-20 18:38:34	2025-12-20 18:38:34
5907	10	159	2025-12-20 18:38:34	2025-12-20 18:38:34
5908	10	160	2025-12-20 18:38:34	2025-12-20 18:38:34
5909	10	161	2025-12-20 18:38:34	2025-12-20 18:38:34
5910	10	162	2025-12-20 18:38:34	2025-12-20 18:38:34
5911	10	163	2025-12-20 18:38:34	2025-12-20 18:38:34
5912	10	164	2025-12-20 18:38:34	2025-12-20 18:38:34
5913	10	165	2025-12-20 18:38:34	2025-12-20 18:38:34
5914	10	166	2025-12-20 18:38:34	2025-12-20 18:38:34
5915	10	167	2025-12-20 18:38:34	2025-12-20 18:38:34
5916	10	168	2025-12-20 18:38:34	2025-12-20 18:38:34
5917	10	169	2025-12-20 18:38:34	2025-12-20 18:38:34
5918	10	170	2025-12-20 18:38:34	2025-12-20 18:38:34
5919	10	171	2025-12-20 18:38:34	2025-12-20 18:38:34
5920	10	172	2025-12-20 18:38:34	2025-12-20 18:38:34
5921	10	173	2025-12-20 18:38:34	2025-12-20 18:38:34
5922	10	426	2025-12-20 18:38:34	2025-12-20 18:38:34
5923	10	341	2025-12-20 18:38:34	2025-12-20 18:38:34
5924	10	342	2025-12-20 18:38:34	2025-12-20 18:38:34
5925	10	343	2025-12-20 18:38:34	2025-12-20 18:38:34
5926	10	346	2025-12-20 18:38:34	2025-12-20 18:38:34
5927	10	347	2025-12-20 18:38:34	2025-12-20 18:38:34
5928	10	348	2025-12-20 18:38:34	2025-12-20 18:38:34
5929	10	349	2025-12-20 18:38:34	2025-12-20 18:38:34
5930	10	536	2025-12-20 18:38:34	2025-12-20 18:38:34
5931	10	537	2025-12-20 18:38:34	2025-12-20 18:38:34
5932	10	538	2025-12-20 18:38:34	2025-12-20 18:38:34
5933	10	560	2025-12-20 18:38:34	2025-12-20 18:38:34
5934	10	561	2025-12-20 18:38:34	2025-12-20 18:38:34
5935	10	562	2025-12-20 18:38:34	2025-12-20 18:38:34
5936	10	563	2025-12-20 18:38:34	2025-12-20 18:38:34
5937	10	199	2025-12-20 18:38:34	2025-12-20 18:38:34
5938	10	690	2025-12-20 18:38:34	2025-12-20 18:38:34
5939	10	344	2025-12-20 18:38:34	2025-12-20 18:38:34
5940	10	345	2025-12-20 18:38:34	2025-12-20 18:38:34
5941	10	691	2025-12-20 18:38:34	2025-12-20 18:38:34
5942	10	696	2025-12-20 18:38:34	2025-12-20 18:38:34
5943	10	697	2025-12-20 18:38:34	2025-12-20 18:38:34
5944	10	174	2025-12-20 18:38:34	2025-12-20 18:38:34
5945	10	176	2025-12-20 18:38:34	2025-12-20 18:38:34
5946	10	177	2025-12-20 18:38:34	2025-12-20 18:38:34
5947	10	178	2025-12-20 18:38:34	2025-12-20 18:38:34
5948	10	179	2025-12-20 18:38:34	2025-12-20 18:38:34
5949	10	180	2025-12-20 18:38:34	2025-12-20 18:38:34
5950	10	181	2025-12-20 18:38:34	2025-12-20 18:38:34
5951	10	182	2025-12-20 18:38:34	2025-12-20 18:38:34
5952	10	183	2025-12-20 18:38:34	2025-12-20 18:38:34
5953	10	184	2025-12-20 18:38:34	2025-12-20 18:38:34
5954	10	185	2025-12-20 18:38:34	2025-12-20 18:38:34
5955	10	186	2025-12-20 18:38:34	2025-12-20 18:38:34
5956	10	187	2025-12-20 18:38:34	2025-12-20 18:38:34
5957	10	188	2025-12-20 18:38:34	2025-12-20 18:38:34
5958	10	189	2025-12-20 18:38:34	2025-12-20 18:38:34
5959	10	190	2025-12-20 18:38:34	2025-12-20 18:38:34
5960	10	191	2025-12-20 18:38:34	2025-12-20 18:38:34
5961	10	192	2025-12-20 18:38:34	2025-12-20 18:38:34
5962	10	193	2025-12-20 18:38:34	2025-12-20 18:38:34
5963	10	194	2025-12-20 18:38:34	2025-12-20 18:38:34
5964	10	195	2025-12-20 18:38:34	2025-12-20 18:38:34
5965	10	196	2025-12-20 18:38:34	2025-12-20 18:38:34
5966	10	197	2025-12-20 18:38:34	2025-12-20 18:38:34
5967	10	198	2025-12-20 18:38:34	2025-12-20 18:38:34
5968	10	200	2025-12-20 18:38:34	2025-12-20 18:38:34
5969	10	201	2025-12-20 18:38:34	2025-12-20 18:38:34
5970	10	202	2025-12-20 18:38:34	2025-12-20 18:38:34
5971	10	203	2025-12-20 18:38:34	2025-12-20 18:38:34
5972	10	204	2025-12-20 18:38:34	2025-12-20 18:38:34
5973	10	205	2025-12-20 18:38:34	2025-12-20 18:38:34
5974	10	206	2025-12-20 18:38:34	2025-12-20 18:38:34
5975	10	207	2025-12-20 18:38:34	2025-12-20 18:38:34
5976	10	208	2025-12-20 18:38:34	2025-12-20 18:38:34
5977	10	209	2025-12-20 18:38:34	2025-12-20 18:38:34
5978	10	210	2025-12-20 18:38:34	2025-12-20 18:38:34
5979	10	211	2025-12-20 18:38:34	2025-12-20 18:38:34
5980	10	212	2025-12-20 18:38:34	2025-12-20 18:38:34
5981	10	213	2025-12-20 18:38:34	2025-12-20 18:38:34
5982	10	215	2025-12-20 18:38:34	2025-12-20 18:38:34
5983	10	335	2025-12-20 18:38:34	2025-12-20 18:38:34
5984	10	336	2025-12-20 18:38:34	2025-12-20 18:38:34
5985	10	337	2025-12-20 18:38:34	2025-12-20 18:38:34
5986	10	338	2025-12-20 18:38:34	2025-12-20 18:38:34
5987	10	381	2025-12-20 18:38:34	2025-12-20 18:38:34
5988	10	382	2025-12-20 18:38:34	2025-12-20 18:38:34
5989	10	383	2025-12-20 18:38:34	2025-12-20 18:38:34
5990	10	175	2025-12-20 18:38:34	2025-12-20 18:38:34
5991	10	214	2025-12-20 18:38:34	2025-12-20 18:38:34
5992	10	216	2025-12-20 18:38:34	2025-12-20 18:38:34
5993	10	217	2025-12-20 18:38:34	2025-12-20 18:38:34
5994	10	218	2025-12-20 18:38:34	2025-12-20 18:38:34
5995	10	219	2025-12-20 18:38:34	2025-12-20 18:38:34
5996	10	220	2025-12-20 18:38:34	2025-12-20 18:38:34
5997	10	221	2025-12-20 18:38:34	2025-12-20 18:38:34
5998	10	222	2025-12-20 18:38:34	2025-12-20 18:38:34
5999	10	223	2025-12-20 18:38:34	2025-12-20 18:38:34
6000	10	533	2025-12-20 18:38:34	2025-12-20 18:38:34
6001	10	534	2025-12-20 18:38:34	2025-12-20 18:38:34
6002	10	539	2025-12-20 18:38:34	2025-12-20 18:38:34
6003	10	535	2025-12-20 18:38:34	2025-12-20 18:38:34
6004	10	558	2025-12-20 18:38:34	2025-12-20 18:38:34
6005	10	559	2025-12-20 18:38:34	2025-12-20 18:38:34
6006	10	647	2025-12-20 18:38:34	2025-12-20 18:38:34
6007	10	667	2025-12-20 18:38:34	2025-12-20 18:38:34
6008	10	668	2025-12-20 18:38:34	2025-12-20 18:38:34
6009	10	673	2025-12-20 18:38:34	2025-12-20 18:38:34
6010	11	14	2026-01-14 12:24:20	2026-01-14 12:24:20
6011	11	15	2026-01-14 12:24:20	2026-01-14 12:24:20
6012	11	16	2026-01-14 12:24:20	2026-01-14 12:24:20
6013	11	17	2026-01-14 12:24:20	2026-01-14 12:24:20
6014	11	18	2026-01-14 12:24:20	2026-01-14 12:24:20
6015	11	19	2026-01-14 12:24:20	2026-01-14 12:24:20
6016	11	20	2026-01-14 12:24:20	2026-01-14 12:24:20
6017	11	21	2026-01-14 12:24:20	2026-01-14 12:24:20
6018	11	22	2026-01-14 12:24:20	2026-01-14 12:24:20
6019	11	23	2026-01-14 12:24:20	2026-01-14 12:24:20
6020	11	24	2026-01-14 12:24:20	2026-01-14 12:24:20
6021	11	448	2026-01-14 12:24:20	2026-01-14 12:24:20
6022	11	441	2026-01-14 12:24:20	2026-01-14 12:24:20
6023	11	442	2026-01-14 12:24:20	2026-01-14 12:24:20
6024	11	546	2026-01-14 12:24:20	2026-01-14 12:24:20
6025	11	584	2026-01-14 12:24:20	2026-01-14 12:24:20
6026	11	614	2026-01-14 12:24:20	2026-01-14 12:24:20
6027	11	615	2026-01-14 12:24:20	2026-01-14 12:24:20
6028	11	617	2026-01-14 12:24:20	2026-01-14 12:24:20
6029	11	618	2026-01-14 12:24:20	2026-01-14 12:24:20
6030	11	224	2026-01-14 12:24:20	2026-01-14 12:24:20
6031	11	225	2026-01-14 12:24:20	2026-01-14 12:24:20
6032	11	226	2026-01-14 12:24:20	2026-01-14 12:24:20
6033	11	227	2026-01-14 12:24:20	2026-01-14 12:24:20
6034	11	228	2026-01-14 12:24:20	2026-01-14 12:24:20
6035	11	229	2026-01-14 12:24:20	2026-01-14 12:24:20
6036	11	230	2026-01-14 12:24:20	2026-01-14 12:24:20
6037	11	231	2026-01-14 12:24:20	2026-01-14 12:24:20
6038	11	232	2026-01-14 12:24:20	2026-01-14 12:24:20
6039	11	233	2026-01-14 12:24:20	2026-01-14 12:24:20
6040	11	359	2026-01-14 12:24:20	2026-01-14 12:24:20
6041	11	360	2026-01-14 12:24:20	2026-01-14 12:24:20
6042	11	234	2026-01-14 12:24:20	2026-01-14 12:24:20
6043	11	235	2026-01-14 12:24:20	2026-01-14 12:24:20
6044	11	236	2026-01-14 12:24:20	2026-01-14 12:24:20
6045	11	237	2026-01-14 12:24:20	2026-01-14 12:24:20
6046	11	238	2026-01-14 12:24:20	2026-01-14 12:24:20
6047	11	239	2026-01-14 12:24:20	2026-01-14 12:24:20
6048	11	240	2026-01-14 12:24:20	2026-01-14 12:24:20
6049	11	241	2026-01-14 12:24:20	2026-01-14 12:24:20
6050	11	242	2026-01-14 12:24:20	2026-01-14 12:24:20
6051	11	243	2026-01-14 12:24:20	2026-01-14 12:24:20
6052	11	244	2026-01-14 12:24:20	2026-01-14 12:24:20
6053	11	245	2026-01-14 12:24:20	2026-01-14 12:24:20
6054	11	246	2026-01-14 12:24:20	2026-01-14 12:24:20
6055	11	247	2026-01-14 12:24:20	2026-01-14 12:24:20
6056	11	248	2026-01-14 12:24:20	2026-01-14 12:24:20
6057	11	249	2026-01-14 12:24:20	2026-01-14 12:24:20
6058	11	250	2026-01-14 12:24:20	2026-01-14 12:24:20
6059	11	251	2026-01-14 12:24:20	2026-01-14 12:24:20
6060	11	252	2026-01-14 12:24:20	2026-01-14 12:24:20
6061	11	253	2026-01-14 12:24:20	2026-01-14 12:24:20
6062	11	254	2026-01-14 12:24:20	2026-01-14 12:24:20
6063	11	255	2026-01-14 12:24:20	2026-01-14 12:24:20
6064	11	256	2026-01-14 12:24:20	2026-01-14 12:24:20
6065	11	257	2026-01-14 12:24:20	2026-01-14 12:24:20
6066	11	258	2026-01-14 12:24:20	2026-01-14 12:24:20
6067	11	259	2026-01-14 12:24:20	2026-01-14 12:24:20
6068	11	260	2026-01-14 12:24:20	2026-01-14 12:24:20
6069	11	261	2026-01-14 12:24:20	2026-01-14 12:24:20
6070	11	262	2026-01-14 12:24:20	2026-01-14 12:24:20
6071	11	263	2026-01-14 12:24:20	2026-01-14 12:24:20
6072	11	264	2026-01-14 12:24:20	2026-01-14 12:24:20
6073	11	509	2026-01-14 12:24:20	2026-01-14 12:24:20
6074	11	265	2026-01-14 12:24:20	2026-01-14 12:24:20
6075	11	266	2026-01-14 12:24:20	2026-01-14 12:24:20
6076	11	267	2026-01-14 12:24:20	2026-01-14 12:24:20
6077	11	268	2026-01-14 12:24:20	2026-01-14 12:24:20
6078	11	269	2026-01-14 12:24:20	2026-01-14 12:24:20
6079	11	270	2026-01-14 12:24:20	2026-01-14 12:24:20
6080	11	271	2026-01-14 12:24:20	2026-01-14 12:24:20
6081	11	272	2026-01-14 12:24:20	2026-01-14 12:24:20
6082	11	273	2026-01-14 12:24:20	2026-01-14 12:24:20
6083	11	274	2026-01-14 12:24:20	2026-01-14 12:24:20
6084	11	275	2026-01-14 12:24:20	2026-01-14 12:24:20
6085	11	276	2026-01-14 12:24:20	2026-01-14 12:24:20
6086	11	277	2026-01-14 12:24:20	2026-01-14 12:24:20
6087	11	278	2026-01-14 12:24:20	2026-01-14 12:24:20
6088	11	279	2026-01-14 12:24:20	2026-01-14 12:24:20
6089	11	280	2026-01-14 12:24:20	2026-01-14 12:24:20
6090	11	281	2026-01-14 12:24:20	2026-01-14 12:24:20
6091	11	282	2026-01-14 12:24:20	2026-01-14 12:24:20
6092	11	283	2026-01-14 12:24:20	2026-01-14 12:24:20
6093	11	284	2026-01-14 12:24:20	2026-01-14 12:24:20
6094	11	285	2026-01-14 12:24:20	2026-01-14 12:24:20
6095	11	286	2026-01-14 12:24:20	2026-01-14 12:24:20
6096	11	287	2026-01-14 12:24:20	2026-01-14 12:24:20
6097	11	288	2026-01-14 12:24:20	2026-01-14 12:24:20
6098	11	289	2026-01-14 12:24:20	2026-01-14 12:24:20
6099	11	294	2026-01-14 12:24:20	2026-01-14 12:24:20
6100	11	295	2026-01-14 12:24:20	2026-01-14 12:24:20
6101	11	296	2026-01-14 12:24:20	2026-01-14 12:24:20
6102	11	297	2026-01-14 12:24:20	2026-01-14 12:24:20
6103	11	500	2026-01-14 12:24:20	2026-01-14 12:24:20
6104	11	501	2026-01-14 12:24:20	2026-01-14 12:24:20
6105	11	502	2026-01-14 12:24:20	2026-01-14 12:24:20
6106	11	510	2026-01-14 12:24:20	2026-01-14 12:24:20
6107	11	511	2026-01-14 12:24:20	2026-01-14 12:24:20
6108	11	512	2026-01-14 12:24:20	2026-01-14 12:24:20
6109	11	567	2026-01-14 12:24:20	2026-01-14 12:24:20
6110	11	594	2026-01-14 12:24:20	2026-01-14 12:24:20
6111	11	679	2026-01-14 12:24:20	2026-01-14 12:24:20
6112	11	709	2026-01-14 12:24:20	2026-01-14 12:24:20
6113	11	298	2026-01-14 12:24:20	2026-01-14 12:24:20
6114	11	299	2026-01-14 12:24:20	2026-01-14 12:24:20
6115	11	300	2026-01-14 12:24:20	2026-01-14 12:24:20
6116	11	310	2026-01-14 12:24:20	2026-01-14 12:24:20
6117	11	311	2026-01-14 12:24:20	2026-01-14 12:24:20
6118	11	312	2026-01-14 12:24:20	2026-01-14 12:24:20
6119	11	313	2026-01-14 12:24:20	2026-01-14 12:24:20
6120	11	314	2026-01-14 12:24:20	2026-01-14 12:24:20
6121	11	315	2026-01-14 12:24:20	2026-01-14 12:24:20
6122	11	316	2026-01-14 12:24:20	2026-01-14 12:24:20
6123	11	317	2026-01-14 12:24:20	2026-01-14 12:24:20
6124	11	318	2026-01-14 12:24:20	2026-01-14 12:24:20
6125	11	358	2026-01-14 12:24:20	2026-01-14 12:24:20
6126	11	365	2026-01-14 12:24:20	2026-01-14 12:24:20
6127	11	350	2026-01-14 12:24:20	2026-01-14 12:24:20
6128	11	351	2026-01-14 12:24:20	2026-01-14 12:24:20
6129	11	352	2026-01-14 12:24:20	2026-01-14 12:24:20
6130	11	353	2026-01-14 12:24:20	2026-01-14 12:24:20
6131	11	354	2026-01-14 12:24:20	2026-01-14 12:24:20
6132	11	355	2026-01-14 12:24:20	2026-01-14 12:24:20
6133	11	356	2026-01-14 12:24:20	2026-01-14 12:24:20
6134	11	357	2026-01-14 12:24:20	2026-01-14 12:24:20
6135	11	392	2026-01-14 12:24:20	2026-01-14 12:24:20
6136	11	396	2026-01-14 12:24:20	2026-01-14 12:24:20
6137	11	301	2026-01-14 12:24:20	2026-01-14 12:24:20
6138	11	302	2026-01-14 12:24:20	2026-01-14 12:24:20
6139	11	303	2026-01-14 12:24:20	2026-01-14 12:24:20
6140	11	304	2026-01-14 12:24:20	2026-01-14 12:24:20
6141	11	305	2026-01-14 12:24:20	2026-01-14 12:24:20
6142	11	306	2026-01-14 12:24:20	2026-01-14 12:24:20
6143	11	307	2026-01-14 12:24:20	2026-01-14 12:24:20
6144	11	308	2026-01-14 12:24:20	2026-01-14 12:24:20
6145	11	309	2026-01-14 12:24:20	2026-01-14 12:24:20
6146	11	590	2026-01-14 12:24:20	2026-01-14 12:24:20
6147	11	591	2026-01-14 12:24:20	2026-01-14 12:24:20
6148	11	319	2026-01-14 12:24:20	2026-01-14 12:24:20
6149	11	320	2026-01-14 12:24:20	2026-01-14 12:24:20
6150	11	321	2026-01-14 12:24:20	2026-01-14 12:24:20
6151	11	322	2026-01-14 12:24:20	2026-01-14 12:24:20
6152	11	323	2026-01-14 12:24:20	2026-01-14 12:24:20
6153	11	324	2026-01-14 12:24:20	2026-01-14 12:24:20
6154	11	325	2026-01-14 12:24:20	2026-01-14 12:24:20
6155	11	326	2026-01-14 12:24:20	2026-01-14 12:24:20
6156	11	327	2026-01-14 12:24:20	2026-01-14 12:24:20
6157	11	328	2026-01-14 12:24:20	2026-01-14 12:24:20
6158	11	676	2026-01-14 12:24:20	2026-01-14 12:24:20
6159	11	339	2026-01-14 12:24:20	2026-01-14 12:24:20
6160	11	385	2026-01-14 12:24:20	2026-01-14 12:24:20
6161	11	386	2026-01-14 12:24:20	2026-01-14 12:24:20
6162	11	387	2026-01-14 12:24:20	2026-01-14 12:24:20
6163	11	388	2026-01-14 12:24:20	2026-01-14 12:24:20
6164	11	389	2026-01-14 12:24:20	2026-01-14 12:24:20
6165	11	390	2026-01-14 12:24:20	2026-01-14 12:24:20
6166	11	391	2026-01-14 12:24:20	2026-01-14 12:24:20
6167	11	555	2026-01-14 12:24:20	2026-01-14 12:24:20
6168	11	556	2026-01-14 12:24:20	2026-01-14 12:24:20
6169	11	557	2026-01-14 12:24:20	2026-01-14 12:24:20
6170	11	455	2026-01-14 12:24:20	2026-01-14 12:24:20
6171	11	456	2026-01-14 12:24:20	2026-01-14 12:24:20
6172	11	457	2026-01-14 12:24:20	2026-01-14 12:24:20
6173	11	458	2026-01-14 12:24:20	2026-01-14 12:24:20
6174	11	459	2026-01-14 12:24:20	2026-01-14 12:24:20
6175	11	460	2026-01-14 12:24:20	2026-01-14 12:24:20
6176	11	461	2026-01-14 12:24:20	2026-01-14 12:24:20
6177	11	462	2026-01-14 12:24:20	2026-01-14 12:24:20
6178	11	463	2026-01-14 12:24:20	2026-01-14 12:24:20
6179	11	465	2026-01-14 12:24:20	2026-01-14 12:24:20
6180	11	466	2026-01-14 12:24:20	2026-01-14 12:24:20
6181	11	467	2026-01-14 12:24:20	2026-01-14 12:24:20
6182	11	468	2026-01-14 12:24:20	2026-01-14 12:24:20
6183	11	469	2026-01-14 12:24:21	2026-01-14 12:24:21
6184	11	470	2026-01-14 12:24:21	2026-01-14 12:24:21
6185	11	471	2026-01-14 12:24:21	2026-01-14 12:24:21
6186	11	472	2026-01-14 12:24:21	2026-01-14 12:24:21
6187	11	473	2026-01-14 12:24:21	2026-01-14 12:24:21
6188	11	474	2026-01-14 12:24:21	2026-01-14 12:24:21
6189	11	476	2026-01-14 12:24:21	2026-01-14 12:24:21
6190	11	478	2026-01-14 12:24:21	2026-01-14 12:24:21
6191	11	479	2026-01-14 12:24:21	2026-01-14 12:24:21
6192	11	475	2026-01-14 12:24:21	2026-01-14 12:24:21
6193	11	710	2026-01-14 12:24:21	2026-01-14 12:24:21
6194	11	714	2026-01-14 12:24:21	2026-01-14 12:24:21
6195	11	715	2026-01-14 12:24:21	2026-01-14 12:24:21
6196	11	716	2026-01-14 12:24:21	2026-01-14 12:24:21
6197	11	717	2026-01-14 12:24:21	2026-01-14 12:24:21
6198	11	718	2026-01-14 12:24:21	2026-01-14 12:24:21
6199	11	719	2026-01-14 12:24:21	2026-01-14 12:24:21
6200	11	720	2026-01-14 12:24:21	2026-01-14 12:24:21
6201	11	721	2026-01-14 12:24:21	2026-01-14 12:24:21
6202	11	722	2026-01-14 12:24:21	2026-01-14 12:24:21
6203	11	723	2026-01-14 12:24:21	2026-01-14 12:24:21
6204	11	724	2026-01-14 12:24:21	2026-01-14 12:24:21
6205	11	725	2026-01-14 12:24:21	2026-01-14 12:24:21
6206	11	726	2026-01-14 12:24:21	2026-01-14 12:24:21
6207	11	727	2026-01-14 12:24:21	2026-01-14 12:24:21
6208	11	728	2026-01-14 12:24:21	2026-01-14 12:24:21
6209	11	729	2026-01-14 12:24:21	2026-01-14 12:24:21
6210	11	736	2026-01-14 12:24:21	2026-01-14 12:24:21
6211	11	737	2026-01-14 12:24:21	2026-01-14 12:24:21
6212	11	738	2026-01-14 12:24:21	2026-01-14 12:24:21
6213	11	739	2026-01-14 12:24:21	2026-01-14 12:24:21
6214	11	740	2026-01-14 12:24:21	2026-01-14 12:24:21
6215	11	741	2026-01-14 12:24:21	2026-01-14 12:24:21
6216	11	742	2026-01-14 12:24:21	2026-01-14 12:24:21
6217	11	743	2026-01-14 12:24:21	2026-01-14 12:24:21
6218	11	744	2026-01-14 12:24:21	2026-01-14 12:24:21
6219	11	25	2026-01-14 12:24:21	2026-01-14 12:24:21
6220	11	487	2026-01-14 12:24:21	2026-01-14 12:24:21
6221	11	488	2026-01-14 12:24:21	2026-01-14 12:24:21
6222	11	489	2026-01-14 12:24:21	2026-01-14 12:24:21
6223	11	490	2026-01-14 12:24:21	2026-01-14 12:24:21
6224	11	491	2026-01-14 12:24:21	2026-01-14 12:24:21
6225	11	551	2026-01-14 12:24:21	2026-01-14 12:24:21
6226	11	552	2026-01-14 12:24:21	2026-01-14 12:24:21
6227	11	568	2026-01-14 12:24:21	2026-01-14 12:24:21
6228	11	569	2026-01-14 12:24:21	2026-01-14 12:24:21
6229	11	570	2026-01-14 12:24:21	2026-01-14 12:24:21
6230	11	492	2026-01-14 12:24:21	2026-01-14 12:24:21
6231	11	493	2026-01-14 12:24:21	2026-01-14 12:24:21
6232	11	494	2026-01-14 12:24:21	2026-01-14 12:24:21
6233	11	495	2026-01-14 12:24:21	2026-01-14 12:24:21
6234	11	497	2026-01-14 12:24:21	2026-01-14 12:24:21
6235	11	496	2026-01-14 12:24:21	2026-01-14 12:24:21
6236	11	572	2026-01-14 12:24:21	2026-01-14 12:24:21
6237	11	573	2026-01-14 12:24:21	2026-01-14 12:24:21
6238	11	574	2026-01-14 12:24:21	2026-01-14 12:24:21
6239	11	575	2026-01-14 12:24:21	2026-01-14 12:24:21
6240	11	622	2026-01-14 12:24:21	2026-01-14 12:24:21
6241	11	378	2026-01-14 12:24:21	2026-01-14 12:24:21
6242	11	528	2026-01-14 12:24:21	2026-01-14 12:24:21
6243	11	595	2026-01-14 12:24:21	2026-01-14 12:24:21
6244	11	596	2026-01-14 12:24:21	2026-01-14 12:24:21
6245	11	597	2026-01-14 12:24:21	2026-01-14 12:24:21
6246	11	598	2026-01-14 12:24:21	2026-01-14 12:24:21
6247	11	599	2026-01-14 12:24:21	2026-01-14 12:24:21
6248	11	600	2026-01-14 12:24:21	2026-01-14 12:24:21
6249	11	601	2026-01-14 12:24:21	2026-01-14 12:24:21
6250	11	602	2026-01-14 12:24:21	2026-01-14 12:24:21
6251	11	603	2026-01-14 12:24:21	2026-01-14 12:24:21
6252	11	604	2026-01-14 12:24:21	2026-01-14 12:24:21
6253	11	605	2026-01-14 12:24:21	2026-01-14 12:24:21
6254	11	606	2026-01-14 12:24:21	2026-01-14 12:24:21
6255	11	607	2026-01-14 12:24:21	2026-01-14 12:24:21
6256	11	608	2026-01-14 12:24:21	2026-01-14 12:24:21
6257	11	609	2026-01-14 12:24:21	2026-01-14 12:24:21
6258	11	610	2026-01-14 12:24:21	2026-01-14 12:24:21
6259	11	611	2026-01-14 12:24:21	2026-01-14 12:24:21
6260	11	612	2026-01-14 12:24:21	2026-01-14 12:24:21
6261	11	613	2026-01-14 12:24:21	2026-01-14 12:24:21
6262	11	677	2026-01-14 12:24:21	2026-01-14 12:24:21
6263	11	678	2026-01-14 12:24:21	2026-01-14 12:24:21
6264	11	706	2026-01-14 12:24:21	2026-01-14 12:24:21
6265	11	707	2026-01-14 12:24:21	2026-01-14 12:24:21
6266	11	623	2026-01-14 12:24:21	2026-01-14 12:24:21
6267	11	624	2026-01-14 12:24:21	2026-01-14 12:24:21
6268	11	625	2026-01-14 12:24:21	2026-01-14 12:24:21
6269	11	626	2026-01-14 12:24:21	2026-01-14 12:24:21
6270	11	627	2026-01-14 12:24:21	2026-01-14 12:24:21
6271	11	628	2026-01-14 12:24:21	2026-01-14 12:24:21
6272	11	629	2026-01-14 12:24:21	2026-01-14 12:24:21
6273	11	630	2026-01-14 12:24:21	2026-01-14 12:24:21
6274	11	631	2026-01-14 12:24:21	2026-01-14 12:24:21
6275	11	632	2026-01-14 12:24:21	2026-01-14 12:24:21
6276	11	633	2026-01-14 12:24:21	2026-01-14 12:24:21
6277	11	634	2026-01-14 12:24:21	2026-01-14 12:24:21
6278	11	635	2026-01-14 12:24:21	2026-01-14 12:24:21
6279	11	636	2026-01-14 12:24:21	2026-01-14 12:24:21
6280	11	637	2026-01-14 12:24:21	2026-01-14 12:24:21
6281	11	638	2026-01-14 12:24:21	2026-01-14 12:24:21
6282	11	659	2026-01-14 12:24:21	2026-01-14 12:24:21
6283	11	639	2026-01-14 12:24:21	2026-01-14 12:24:21
6284	11	640	2026-01-14 12:24:21	2026-01-14 12:24:21
6285	11	641	2026-01-14 12:24:21	2026-01-14 12:24:21
6286	11	642	2026-01-14 12:24:21	2026-01-14 12:24:21
6287	11	643	2026-01-14 12:24:21	2026-01-14 12:24:21
6288	11	644	2026-01-14 12:24:21	2026-01-14 12:24:21
6289	11	645	2026-01-14 12:24:21	2026-01-14 12:24:21
6290	11	646	2026-01-14 12:24:21	2026-01-14 12:24:21
6291	11	700	2026-01-14 12:24:21	2026-01-14 12:24:21
6292	11	701	2026-01-14 12:24:21	2026-01-14 12:24:21
6293	11	702	2026-01-14 12:24:21	2026-01-14 12:24:21
6294	11	703	2026-01-14 12:24:21	2026-01-14 12:24:21
6295	11	704	2026-01-14 12:24:21	2026-01-14 12:24:21
6296	11	705	2026-01-14 12:24:21	2026-01-14 12:24:21
6297	11	26	2026-01-14 12:24:21	2026-01-14 12:24:21
6298	11	28	2026-01-14 12:24:21	2026-01-14 12:24:21
6299	11	29	2026-01-14 12:24:21	2026-01-14 12:24:21
6300	11	30	2026-01-14 12:24:21	2026-01-14 12:24:21
6301	11	31	2026-01-14 12:24:21	2026-01-14 12:24:21
6302	11	32	2026-01-14 12:24:21	2026-01-14 12:24:21
6303	11	33	2026-01-14 12:24:21	2026-01-14 12:24:21
6304	11	367	2026-01-14 12:24:21	2026-01-14 12:24:21
6305	11	368	2026-01-14 12:24:21	2026-01-14 12:24:21
6306	11	369	2026-01-14 12:24:21	2026-01-14 12:24:21
6307	11	370	2026-01-14 12:24:21	2026-01-14 12:24:21
6308	11	371	2026-01-14 12:24:21	2026-01-14 12:24:21
6309	11	373	2026-01-14 12:24:21	2026-01-14 12:24:21
6310	11	395	2026-01-14 12:24:21	2026-01-14 12:24:21
6311	11	39	2026-01-14 12:24:21	2026-01-14 12:24:21
6312	11	379	2026-01-14 12:24:21	2026-01-14 12:24:21
6313	11	380	2026-01-14 12:24:21	2026-01-14 12:24:21
6314	11	34	2026-01-14 12:24:21	2026-01-14 12:24:21
6315	11	35	2026-01-14 12:24:21	2026-01-14 12:24:21
6316	11	36	2026-01-14 12:24:21	2026-01-14 12:24:21
6317	11	37	2026-01-14 12:24:21	2026-01-14 12:24:21
6318	11	38	2026-01-14 12:24:21	2026-01-14 12:24:21
6319	11	424	2026-01-14 12:24:21	2026-01-14 12:24:21
6320	11	425	2026-01-14 12:24:21	2026-01-14 12:24:21
6321	11	427	2026-01-14 12:24:21	2026-01-14 12:24:21
6322	11	443	2026-01-14 12:24:21	2026-01-14 12:24:21
6323	11	449	2026-01-14 12:24:21	2026-01-14 12:24:21
6324	11	453	2026-01-14 12:24:21	2026-01-14 12:24:21
6325	11	454	2026-01-14 12:24:21	2026-01-14 12:24:21
6326	11	464	2026-01-14 12:24:21	2026-01-14 12:24:21
6327	11	450	2026-01-14 12:24:21	2026-01-14 12:24:21
6328	11	498	2026-01-14 12:24:21	2026-01-14 12:24:21
6329	11	499	2026-01-14 12:24:21	2026-01-14 12:24:21
6330	11	513	2026-01-14 12:24:21	2026-01-14 12:24:21
6331	11	514	2026-01-14 12:24:21	2026-01-14 12:24:21
6332	11	515	2026-01-14 12:24:21	2026-01-14 12:24:21
6333	11	516	2026-01-14 12:24:21	2026-01-14 12:24:21
6334	11	517	2026-01-14 12:24:21	2026-01-14 12:24:21
6335	11	518	2026-01-14 12:24:21	2026-01-14 12:24:21
6336	11	520	2026-01-14 12:24:21	2026-01-14 12:24:21
6337	11	521	2026-01-14 12:24:21	2026-01-14 12:24:21
6338	11	522	2026-01-14 12:24:21	2026-01-14 12:24:21
6339	11	523	2026-01-14 12:24:21	2026-01-14 12:24:21
6340	11	531	2026-01-14 12:24:21	2026-01-14 12:24:21
6341	11	547	2026-01-14 12:24:21	2026-01-14 12:24:21
6342	11	548	2026-01-14 12:24:21	2026-01-14 12:24:21
6343	11	549	2026-01-14 12:24:21	2026-01-14 12:24:21
6344	11	550	2026-01-14 12:24:21	2026-01-14 12:24:21
6345	11	553	2026-01-14 12:24:21	2026-01-14 12:24:21
6346	11	554	2026-01-14 12:24:21	2026-01-14 12:24:21
6347	11	586	2026-01-14 12:24:21	2026-01-14 12:24:21
6348	11	593	2026-01-14 12:24:21	2026-01-14 12:24:21
6349	11	652	2026-01-14 12:24:21	2026-01-14 12:24:21
6350	11	653	2026-01-14 12:24:21	2026-01-14 12:24:21
6351	11	654	2026-01-14 12:24:21	2026-01-14 12:24:21
6352	11	655	2026-01-14 12:24:21	2026-01-14 12:24:21
6353	11	656	2026-01-14 12:24:21	2026-01-14 12:24:21
6354	11	657	2026-01-14 12:24:21	2026-01-14 12:24:21
6355	11	658	2026-01-14 12:24:21	2026-01-14 12:24:21
6356	11	682	2026-01-14 12:24:21	2026-01-14 12:24:21
6357	11	683	2026-01-14 12:24:21	2026-01-14 12:24:21
6358	11	684	2026-01-14 12:24:21	2026-01-14 12:24:21
6359	11	685	2026-01-14 12:24:21	2026-01-14 12:24:21
6360	11	686	2026-01-14 12:24:21	2026-01-14 12:24:21
6361	11	687	2026-01-14 12:24:21	2026-01-14 12:24:21
6362	11	688	2026-01-14 12:24:21	2026-01-14 12:24:21
6363	11	27	2026-01-14 12:24:21	2026-01-14 12:24:21
6364	11	692	2026-01-14 12:24:21	2026-01-14 12:24:21
6365	11	708	2026-01-14 12:24:21	2026-01-14 12:24:21
6366	11	731	2026-01-14 12:24:21	2026-01-14 12:24:21
6367	11	732	2026-01-14 12:24:21	2026-01-14 12:24:21
6368	11	40	2026-01-14 12:24:21	2026-01-14 12:24:21
6369	11	44	2026-01-14 12:24:21	2026-01-14 12:24:21
6370	11	45	2026-01-14 12:24:21	2026-01-14 12:24:21
6371	11	46	2026-01-14 12:24:21	2026-01-14 12:24:21
6372	11	47	2026-01-14 12:24:21	2026-01-14 12:24:21
6373	11	48	2026-01-14 12:24:21	2026-01-14 12:24:21
6374	11	49	2026-01-14 12:24:21	2026-01-14 12:24:21
6375	11	50	2026-01-14 12:24:21	2026-01-14 12:24:21
6376	11	51	2026-01-14 12:24:21	2026-01-14 12:24:21
6377	11	52	2026-01-14 12:24:21	2026-01-14 12:24:21
6378	11	372	2026-01-14 12:24:21	2026-01-14 12:24:21
6379	11	384	2026-01-14 12:24:21	2026-01-14 12:24:21
6380	11	41	2026-01-14 12:24:21	2026-01-14 12:24:21
6381	11	42	2026-01-14 12:24:21	2026-01-14 12:24:21
6382	11	43	2026-01-14 12:24:21	2026-01-14 12:24:21
6383	11	529	2026-01-14 12:24:21	2026-01-14 12:24:21
6384	11	526	2026-01-14 12:24:21	2026-01-14 12:24:21
6385	11	525	2026-01-14 12:24:21	2026-01-14 12:24:21
6386	11	527	2026-01-14 12:24:21	2026-01-14 12:24:21
6387	11	530	2026-01-14 12:24:21	2026-01-14 12:24:21
6388	11	519	2026-01-14 12:24:21	2026-01-14 12:24:21
6389	11	587	2026-01-14 12:24:21	2026-01-14 12:24:21
6390	11	592	2026-01-14 12:24:21	2026-01-14 12:24:21
6391	11	648	2026-01-14 12:24:21	2026-01-14 12:24:21
6392	11	524	2026-01-14 12:24:21	2026-01-14 12:24:21
6393	11	588	2026-01-14 12:24:21	2026-01-14 12:24:21
6394	11	616	2026-01-14 12:24:21	2026-01-14 12:24:21
6395	11	452	2026-01-14 12:24:21	2026-01-14 12:24:21
6396	11	589	2026-01-14 12:24:21	2026-01-14 12:24:21
6397	11	665	2026-01-14 12:24:21	2026-01-14 12:24:21
6398	11	693	2026-01-14 12:24:21	2026-01-14 12:24:21
6399	11	694	2026-01-14 12:24:21	2026-01-14 12:24:21
6400	11	695	2026-01-14 12:24:21	2026-01-14 12:24:21
6401	11	53	2026-01-14 12:24:21	2026-01-14 12:24:21
6402	11	54	2026-01-14 12:24:21	2026-01-14 12:24:21
6403	11	55	2026-01-14 12:24:21	2026-01-14 12:24:21
6404	11	56	2026-01-14 12:24:21	2026-01-14 12:24:21
6405	11	57	2026-01-14 12:24:21	2026-01-14 12:24:21
6406	11	58	2026-01-14 12:24:21	2026-01-14 12:24:21
6407	11	59	2026-01-14 12:24:21	2026-01-14 12:24:21
6408	11	60	2026-01-14 12:24:21	2026-01-14 12:24:21
6409	11	61	2026-01-14 12:24:21	2026-01-14 12:24:21
6410	11	62	2026-01-14 12:24:21	2026-01-14 12:24:21
6411	11	63	2026-01-14 12:24:21	2026-01-14 12:24:21
6412	11	64	2026-01-14 12:24:21	2026-01-14 12:24:21
6413	11	65	2026-01-14 12:24:21	2026-01-14 12:24:21
6414	11	66	2026-01-14 12:24:21	2026-01-14 12:24:21
6415	11	67	2026-01-14 12:24:21	2026-01-14 12:24:21
6416	11	68	2026-01-14 12:24:21	2026-01-14 12:24:21
6417	11	69	2026-01-14 12:24:21	2026-01-14 12:24:21
6418	11	70	2026-01-14 12:24:21	2026-01-14 12:24:21
6419	11	71	2026-01-14 12:24:21	2026-01-14 12:24:21
6420	11	72	2026-01-14 12:24:21	2026-01-14 12:24:21
6421	11	73	2026-01-14 12:24:21	2026-01-14 12:24:21
6422	11	74	2026-01-14 12:24:21	2026-01-14 12:24:21
6423	11	75	2026-01-14 12:24:21	2026-01-14 12:24:21
6424	11	76	2026-01-14 12:24:21	2026-01-14 12:24:21
6425	11	77	2026-01-14 12:24:21	2026-01-14 12:24:21
6426	11	432	2026-01-14 12:24:21	2026-01-14 12:24:21
6427	11	433	2026-01-14 12:24:21	2026-01-14 12:24:21
6428	11	434	2026-01-14 12:24:21	2026-01-14 12:24:21
6429	11	435	2026-01-14 12:24:21	2026-01-14 12:24:21
6430	11	436	2026-01-14 12:24:21	2026-01-14 12:24:21
6431	11	437	2026-01-14 12:24:21	2026-01-14 12:24:21
6432	11	438	2026-01-14 12:24:21	2026-01-14 12:24:21
6433	11	439	2026-01-14 12:24:21	2026-01-14 12:24:21
6434	11	440	2026-01-14 12:24:21	2026-01-14 12:24:21
6435	11	451	2026-01-14 12:24:21	2026-01-14 12:24:21
6436	11	477	2026-01-14 12:24:21	2026-01-14 12:24:21
6437	11	585	2026-01-14 12:24:21	2026-01-14 12:24:21
6438	11	669	2026-01-14 12:24:21	2026-01-14 12:24:21
6439	11	670	2026-01-14 12:24:21	2026-01-14 12:24:21
6440	11	671	2026-01-14 12:24:21	2026-01-14 12:24:21
6441	11	672	2026-01-14 12:24:21	2026-01-14 12:24:21
6442	11	680	2026-01-14 12:24:21	2026-01-14 12:24:21
6443	11	681	2026-01-14 12:24:21	2026-01-14 12:24:21
6444	11	689	2026-01-14 12:24:21	2026-01-14 12:24:21
6445	11	698	2026-01-14 12:24:21	2026-01-14 12:24:21
6446	11	699	2026-01-14 12:24:21	2026-01-14 12:24:21
6447	11	711	2026-01-14 12:24:21	2026-01-14 12:24:21
6448	11	712	2026-01-14 12:24:21	2026-01-14 12:24:21
6449	11	713	2026-01-14 12:24:21	2026-01-14 12:24:21
6450	11	730	2026-01-14 12:24:21	2026-01-14 12:24:21
6451	11	78	2026-01-14 12:24:21	2026-01-14 12:24:21
6452	11	79	2026-01-14 12:24:21	2026-01-14 12:24:21
6453	11	80	2026-01-14 12:24:21	2026-01-14 12:24:21
6454	11	81	2026-01-14 12:24:21	2026-01-14 12:24:21
6455	11	82	2026-01-14 12:24:21	2026-01-14 12:24:21
6456	11	83	2026-01-14 12:24:21	2026-01-14 12:24:21
6457	11	84	2026-01-14 12:24:21	2026-01-14 12:24:21
6458	11	85	2026-01-14 12:24:21	2026-01-14 12:24:21
6459	11	86	2026-01-14 12:24:21	2026-01-14 12:24:21
6460	11	87	2026-01-14 12:24:21	2026-01-14 12:24:21
6461	11	88	2026-01-14 12:24:21	2026-01-14 12:24:21
6462	11	89	2026-01-14 12:24:21	2026-01-14 12:24:21
6463	11	90	2026-01-14 12:24:21	2026-01-14 12:24:21
6464	11	91	2026-01-14 12:24:21	2026-01-14 12:24:21
6465	11	92	2026-01-14 12:24:21	2026-01-14 12:24:21
6466	11	93	2026-01-14 12:24:21	2026-01-14 12:24:21
6467	11	94	2026-01-14 12:24:21	2026-01-14 12:24:21
6468	11	374	2026-01-14 12:24:21	2026-01-14 12:24:21
6469	11	375	2026-01-14 12:24:21	2026-01-14 12:24:21
6470	11	393	2026-01-14 12:24:21	2026-01-14 12:24:21
6471	11	394	2026-01-14 12:24:21	2026-01-14 12:24:21
6472	11	397	2026-01-14 12:24:21	2026-01-14 12:24:21
6473	11	398	2026-01-14 12:24:21	2026-01-14 12:24:21
6474	11	541	2026-01-14 12:24:21	2026-01-14 12:24:21
6475	11	543	2026-01-14 12:24:21	2026-01-14 12:24:21
6476	11	545	2026-01-14 12:24:21	2026-01-14 12:24:21
6477	11	571	2026-01-14 12:24:21	2026-01-14 12:24:21
6478	11	735	2026-01-14 12:24:21	2026-01-14 12:24:21
6479	11	95	2026-01-14 12:24:21	2026-01-14 12:24:21
6480	11	96	2026-01-14 12:24:21	2026-01-14 12:24:21
6481	11	97	2026-01-14 12:24:21	2026-01-14 12:24:21
6482	11	98	2026-01-14 12:24:21	2026-01-14 12:24:21
6483	11	99	2026-01-14 12:24:21	2026-01-14 12:24:21
6484	11	100	2026-01-14 12:24:21	2026-01-14 12:24:21
6485	11	101	2026-01-14 12:24:21	2026-01-14 12:24:21
6486	11	102	2026-01-14 12:24:21	2026-01-14 12:24:21
6487	11	103	2026-01-14 12:24:21	2026-01-14 12:24:21
6488	11	104	2026-01-14 12:24:21	2026-01-14 12:24:21
6489	11	361	2026-01-14 12:24:21	2026-01-14 12:24:21
6490	11	362	2026-01-14 12:24:21	2026-01-14 12:24:21
6491	11	363	2026-01-14 12:24:21	2026-01-14 12:24:21
6492	11	364	2026-01-14 12:24:21	2026-01-14 12:24:21
6493	11	366	2026-01-14 12:24:21	2026-01-14 12:24:21
6494	11	376	2026-01-14 12:24:21	2026-01-14 12:24:21
6495	11	377	2026-01-14 12:24:21	2026-01-14 12:24:21
6496	11	105	2026-01-14 12:24:21	2026-01-14 12:24:21
6497	11	106	2026-01-14 12:24:21	2026-01-14 12:24:21
6498	11	107	2026-01-14 12:24:21	2026-01-14 12:24:21
6499	11	108	2026-01-14 12:24:21	2026-01-14 12:24:21
6500	11	109	2026-01-14 12:24:21	2026-01-14 12:24:21
6501	11	110	2026-01-14 12:24:21	2026-01-14 12:24:21
6502	11	111	2026-01-14 12:24:21	2026-01-14 12:24:21
6503	11	112	2026-01-14 12:24:21	2026-01-14 12:24:21
6504	11	113	2026-01-14 12:24:21	2026-01-14 12:24:21
6505	11	114	2026-01-14 12:24:21	2026-01-14 12:24:21
6506	11	115	2026-01-14 12:24:21	2026-01-14 12:24:21
6507	11	116	2026-01-14 12:24:21	2026-01-14 12:24:21
6508	11	117	2026-01-14 12:24:21	2026-01-14 12:24:21
6509	11	428	2026-01-14 12:24:21	2026-01-14 12:24:21
6510	11	429	2026-01-14 12:24:21	2026-01-14 12:24:21
6511	11	430	2026-01-14 12:24:21	2026-01-14 12:24:21
6512	11	431	2026-01-14 12:24:21	2026-01-14 12:24:21
6513	11	444	2026-01-14 12:24:21	2026-01-14 12:24:21
6514	11	445	2026-01-14 12:24:21	2026-01-14 12:24:21
6515	11	446	2026-01-14 12:24:21	2026-01-14 12:24:21
6516	11	447	2026-01-14 12:24:21	2026-01-14 12:24:21
6517	11	507	2026-01-14 12:24:21	2026-01-14 12:24:21
6518	11	508	2026-01-14 12:24:21	2026-01-14 12:24:21
6519	11	532	2026-01-14 12:24:21	2026-01-14 12:24:21
6520	11	540	2026-01-14 12:24:21	2026-01-14 12:24:21
6521	11	542	2026-01-14 12:24:21	2026-01-14 12:24:21
6522	11	544	2026-01-14 12:24:21	2026-01-14 12:24:21
6523	11	564	2026-01-14 12:24:21	2026-01-14 12:24:21
6524	11	565	2026-01-14 12:24:21	2026-01-14 12:24:21
6525	11	566	2026-01-14 12:24:21	2026-01-14 12:24:21
6526	11	619	2026-01-14 12:24:21	2026-01-14 12:24:21
6527	11	620	2026-01-14 12:24:21	2026-01-14 12:24:21
6528	11	621	2026-01-14 12:24:21	2026-01-14 12:24:21
6529	11	649	2026-01-14 12:24:21	2026-01-14 12:24:21
6530	11	650	2026-01-14 12:24:21	2026-01-14 12:24:21
6531	11	651	2026-01-14 12:24:21	2026-01-14 12:24:21
6532	11	660	2026-01-14 12:24:21	2026-01-14 12:24:21
6533	11	661	2026-01-14 12:24:21	2026-01-14 12:24:21
6534	11	662	2026-01-14 12:24:21	2026-01-14 12:24:21
6535	11	663	2026-01-14 12:24:21	2026-01-14 12:24:21
6536	11	664	2026-01-14 12:24:21	2026-01-14 12:24:21
6537	11	666	2026-01-14 12:24:21	2026-01-14 12:24:21
6538	11	674	2026-01-14 12:24:21	2026-01-14 12:24:21
6539	11	675	2026-01-14 12:24:21	2026-01-14 12:24:21
6540	11	733	2026-01-14 12:24:21	2026-01-14 12:24:21
6541	11	734	2026-01-14 12:24:21	2026-01-14 12:24:21
6542	11	118	2026-01-14 12:24:21	2026-01-14 12:24:21
6543	11	119	2026-01-14 12:24:21	2026-01-14 12:24:21
6544	11	120	2026-01-14 12:24:21	2026-01-14 12:24:21
6545	11	121	2026-01-14 12:24:21	2026-01-14 12:24:21
6546	11	122	2026-01-14 12:24:21	2026-01-14 12:24:21
6547	11	123	2026-01-14 12:24:21	2026-01-14 12:24:21
6548	11	124	2026-01-14 12:24:21	2026-01-14 12:24:21
6549	11	125	2026-01-14 12:24:21	2026-01-14 12:24:21
6550	11	126	2026-01-14 12:24:21	2026-01-14 12:24:21
6551	11	127	2026-01-14 12:24:21	2026-01-14 12:24:21
6552	11	128	2026-01-14 12:24:21	2026-01-14 12:24:21
6553	11	129	2026-01-14 12:24:21	2026-01-14 12:24:21
6554	11	130	2026-01-14 12:24:21	2026-01-14 12:24:21
6555	11	329	2026-01-14 12:24:21	2026-01-14 12:24:21
6556	11	330	2026-01-14 12:24:21	2026-01-14 12:24:21
6557	11	331	2026-01-14 12:24:21	2026-01-14 12:24:21
6558	11	332	2026-01-14 12:24:21	2026-01-14 12:24:21
6559	11	333	2026-01-14 12:24:21	2026-01-14 12:24:21
6560	11	334	2026-01-14 12:24:21	2026-01-14 12:24:21
6561	11	340	2026-01-14 12:24:21	2026-01-14 12:24:21
6562	11	131	2026-01-14 12:24:21	2026-01-14 12:24:21
6563	11	132	2026-01-14 12:24:21	2026-01-14 12:24:21
6564	11	133	2026-01-14 12:24:21	2026-01-14 12:24:21
6565	11	134	2026-01-14 12:24:21	2026-01-14 12:24:21
6566	11	135	2026-01-14 12:24:21	2026-01-14 12:24:21
6567	11	136	2026-01-14 12:24:21	2026-01-14 12:24:21
6568	11	137	2026-01-14 12:24:21	2026-01-14 12:24:21
6569	11	138	2026-01-14 12:24:21	2026-01-14 12:24:21
6570	11	139	2026-01-14 12:24:21	2026-01-14 12:24:21
6571	11	140	2026-01-14 12:24:21	2026-01-14 12:24:21
6572	11	141	2026-01-14 12:24:21	2026-01-14 12:24:21
6573	11	142	2026-01-14 12:24:21	2026-01-14 12:24:21
6574	11	143	2026-01-14 12:24:21	2026-01-14 12:24:21
6575	11	144	2026-01-14 12:24:21	2026-01-14 12:24:21
6576	11	145	2026-01-14 12:24:21	2026-01-14 12:24:21
6577	11	146	2026-01-14 12:24:21	2026-01-14 12:24:21
6578	11	147	2026-01-14 12:24:21	2026-01-14 12:24:21
6579	11	148	2026-01-14 12:24:21	2026-01-14 12:24:21
6580	11	149	2026-01-14 12:24:21	2026-01-14 12:24:21
6581	11	150	2026-01-14 12:24:21	2026-01-14 12:24:21
6582	11	151	2026-01-14 12:24:21	2026-01-14 12:24:21
6583	11	152	2026-01-14 12:24:21	2026-01-14 12:24:21
6584	11	153	2026-01-14 12:24:21	2026-01-14 12:24:21
6585	11	154	2026-01-14 12:24:21	2026-01-14 12:24:21
6586	11	155	2026-01-14 12:24:21	2026-01-14 12:24:21
6587	11	156	2026-01-14 12:24:21	2026-01-14 12:24:21
6588	11	157	2026-01-14 12:24:21	2026-01-14 12:24:21
6589	11	158	2026-01-14 12:24:21	2026-01-14 12:24:21
6590	11	159	2026-01-14 12:24:21	2026-01-14 12:24:21
6591	11	160	2026-01-14 12:24:21	2026-01-14 12:24:21
6592	11	161	2026-01-14 12:24:21	2026-01-14 12:24:21
6593	11	162	2026-01-14 12:24:21	2026-01-14 12:24:21
6594	11	163	2026-01-14 12:24:21	2026-01-14 12:24:21
6595	11	164	2026-01-14 12:24:21	2026-01-14 12:24:21
6596	11	165	2026-01-14 12:24:21	2026-01-14 12:24:21
6597	11	166	2026-01-14 12:24:21	2026-01-14 12:24:21
6598	11	167	2026-01-14 12:24:21	2026-01-14 12:24:21
6599	11	168	2026-01-14 12:24:21	2026-01-14 12:24:21
6600	11	169	2026-01-14 12:24:21	2026-01-14 12:24:21
6601	11	170	2026-01-14 12:24:21	2026-01-14 12:24:21
6602	11	171	2026-01-14 12:24:21	2026-01-14 12:24:21
6603	11	172	2026-01-14 12:24:21	2026-01-14 12:24:21
6604	11	173	2026-01-14 12:24:21	2026-01-14 12:24:21
6605	11	426	2026-01-14 12:24:21	2026-01-14 12:24:21
6606	11	341	2026-01-14 12:24:21	2026-01-14 12:24:21
6607	11	342	2026-01-14 12:24:21	2026-01-14 12:24:21
6608	11	343	2026-01-14 12:24:21	2026-01-14 12:24:21
6609	11	346	2026-01-14 12:24:21	2026-01-14 12:24:21
6610	11	347	2026-01-14 12:24:21	2026-01-14 12:24:21
6611	11	348	2026-01-14 12:24:21	2026-01-14 12:24:21
6612	11	349	2026-01-14 12:24:21	2026-01-14 12:24:21
6613	11	536	2026-01-14 12:24:21	2026-01-14 12:24:21
6614	11	537	2026-01-14 12:24:21	2026-01-14 12:24:21
6615	11	538	2026-01-14 12:24:21	2026-01-14 12:24:21
6616	11	560	2026-01-14 12:24:21	2026-01-14 12:24:21
6617	11	561	2026-01-14 12:24:21	2026-01-14 12:24:21
6618	11	562	2026-01-14 12:24:21	2026-01-14 12:24:21
6619	11	563	2026-01-14 12:24:21	2026-01-14 12:24:21
6620	11	199	2026-01-14 12:24:21	2026-01-14 12:24:21
6621	11	690	2026-01-14 12:24:21	2026-01-14 12:24:21
6622	11	344	2026-01-14 12:24:21	2026-01-14 12:24:21
6623	11	345	2026-01-14 12:24:21	2026-01-14 12:24:21
6624	11	691	2026-01-14 12:24:21	2026-01-14 12:24:21
6625	11	696	2026-01-14 12:24:21	2026-01-14 12:24:21
6626	11	697	2026-01-14 12:24:21	2026-01-14 12:24:21
6627	11	174	2026-01-14 12:24:21	2026-01-14 12:24:21
6628	11	176	2026-01-14 12:24:21	2026-01-14 12:24:21
6629	11	177	2026-01-14 12:24:21	2026-01-14 12:24:21
6630	11	178	2026-01-14 12:24:21	2026-01-14 12:24:21
6631	11	179	2026-01-14 12:24:21	2026-01-14 12:24:21
6632	11	180	2026-01-14 12:24:21	2026-01-14 12:24:21
6633	11	181	2026-01-14 12:24:21	2026-01-14 12:24:21
6634	11	182	2026-01-14 12:24:21	2026-01-14 12:24:21
6635	11	183	2026-01-14 12:24:21	2026-01-14 12:24:21
6636	11	184	2026-01-14 12:24:21	2026-01-14 12:24:21
6637	11	185	2026-01-14 12:24:21	2026-01-14 12:24:21
6638	11	186	2026-01-14 12:24:21	2026-01-14 12:24:21
6639	11	187	2026-01-14 12:24:21	2026-01-14 12:24:21
6640	11	188	2026-01-14 12:24:21	2026-01-14 12:24:21
6641	11	189	2026-01-14 12:24:21	2026-01-14 12:24:21
6642	11	190	2026-01-14 12:24:21	2026-01-14 12:24:21
6643	11	191	2026-01-14 12:24:21	2026-01-14 12:24:21
6644	11	192	2026-01-14 12:24:21	2026-01-14 12:24:21
6645	11	193	2026-01-14 12:24:21	2026-01-14 12:24:21
6646	11	194	2026-01-14 12:24:21	2026-01-14 12:24:21
6647	11	195	2026-01-14 12:24:21	2026-01-14 12:24:21
6648	11	196	2026-01-14 12:24:21	2026-01-14 12:24:21
6649	11	197	2026-01-14 12:24:21	2026-01-14 12:24:21
6650	11	198	2026-01-14 12:24:21	2026-01-14 12:24:21
6651	11	200	2026-01-14 12:24:21	2026-01-14 12:24:21
6652	11	201	2026-01-14 12:24:21	2026-01-14 12:24:21
6653	11	202	2026-01-14 12:24:21	2026-01-14 12:24:21
6654	11	203	2026-01-14 12:24:21	2026-01-14 12:24:21
6655	11	204	2026-01-14 12:24:21	2026-01-14 12:24:21
6656	11	205	2026-01-14 12:24:21	2026-01-14 12:24:21
6657	11	206	2026-01-14 12:24:21	2026-01-14 12:24:21
6658	11	207	2026-01-14 12:24:21	2026-01-14 12:24:21
6659	11	208	2026-01-14 12:24:21	2026-01-14 12:24:21
6660	11	209	2026-01-14 12:24:21	2026-01-14 12:24:21
6661	11	210	2026-01-14 12:24:21	2026-01-14 12:24:21
6662	11	211	2026-01-14 12:24:21	2026-01-14 12:24:21
6663	11	212	2026-01-14 12:24:21	2026-01-14 12:24:21
6664	11	213	2026-01-14 12:24:21	2026-01-14 12:24:21
6665	11	215	2026-01-14 12:24:21	2026-01-14 12:24:21
6666	11	335	2026-01-14 12:24:21	2026-01-14 12:24:21
6667	11	336	2026-01-14 12:24:21	2026-01-14 12:24:21
6668	11	337	2026-01-14 12:24:21	2026-01-14 12:24:21
6669	11	338	2026-01-14 12:24:21	2026-01-14 12:24:21
6670	11	381	2026-01-14 12:24:21	2026-01-14 12:24:21
6671	11	382	2026-01-14 12:24:21	2026-01-14 12:24:21
6672	11	383	2026-01-14 12:24:21	2026-01-14 12:24:21
6673	11	175	2026-01-14 12:24:21	2026-01-14 12:24:21
6674	11	214	2026-01-14 12:24:21	2026-01-14 12:24:21
6675	11	216	2026-01-14 12:24:21	2026-01-14 12:24:21
6676	11	217	2026-01-14 12:24:21	2026-01-14 12:24:21
6677	11	218	2026-01-14 12:24:21	2026-01-14 12:24:21
6678	11	219	2026-01-14 12:24:21	2026-01-14 12:24:21
6679	11	220	2026-01-14 12:24:21	2026-01-14 12:24:21
6680	11	221	2026-01-14 12:24:21	2026-01-14 12:24:21
6681	11	222	2026-01-14 12:24:21	2026-01-14 12:24:21
6682	11	223	2026-01-14 12:24:21	2026-01-14 12:24:21
6683	11	533	2026-01-14 12:24:21	2026-01-14 12:24:21
6684	11	534	2026-01-14 12:24:21	2026-01-14 12:24:21
6685	11	539	2026-01-14 12:24:21	2026-01-14 12:24:21
6686	11	535	2026-01-14 12:24:21	2026-01-14 12:24:21
6687	11	558	2026-01-14 12:24:21	2026-01-14 12:24:21
6688	11	559	2026-01-14 12:24:21	2026-01-14 12:24:21
6689	11	647	2026-01-14 12:24:21	2026-01-14 12:24:21
6690	11	667	2026-01-14 12:24:21	2026-01-14 12:24:21
6691	11	668	2026-01-14 12:24:21	2026-01-14 12:24:21
6692	11	673	2026-01-14 12:24:21	2026-01-14 12:24:21
6693	12	14	2026-03-09 08:43:50	2026-03-09 08:43:50
6694	12	15	2026-03-09 08:43:50	2026-03-09 08:43:50
6695	12	16	2026-03-09 08:43:50	2026-03-09 08:43:50
6696	12	17	2026-03-09 08:43:50	2026-03-09 08:43:50
6697	12	18	2026-03-09 08:43:50	2026-03-09 08:43:50
6698	12	19	2026-03-09 08:43:50	2026-03-09 08:43:50
6699	12	20	2026-03-09 08:43:50	2026-03-09 08:43:50
6700	12	21	2026-03-09 08:43:50	2026-03-09 08:43:50
6701	12	22	2026-03-09 08:43:50	2026-03-09 08:43:50
6702	12	23	2026-03-09 08:43:50	2026-03-09 08:43:50
6703	12	24	2026-03-09 08:43:50	2026-03-09 08:43:50
6704	12	448	2026-03-09 08:43:50	2026-03-09 08:43:50
6705	12	441	2026-03-09 08:43:50	2026-03-09 08:43:50
6706	12	442	2026-03-09 08:43:50	2026-03-09 08:43:50
6707	12	546	2026-03-09 08:43:50	2026-03-09 08:43:50
6708	12	584	2026-03-09 08:43:50	2026-03-09 08:43:50
6709	12	614	2026-03-09 08:43:50	2026-03-09 08:43:50
6710	12	615	2026-03-09 08:43:50	2026-03-09 08:43:50
6711	12	617	2026-03-09 08:43:50	2026-03-09 08:43:50
6712	12	618	2026-03-09 08:43:50	2026-03-09 08:43:50
6713	12	224	2026-03-09 08:43:50	2026-03-09 08:43:50
6714	12	225	2026-03-09 08:43:50	2026-03-09 08:43:50
6715	12	226	2026-03-09 08:43:50	2026-03-09 08:43:50
6716	12	227	2026-03-09 08:43:50	2026-03-09 08:43:50
6717	12	228	2026-03-09 08:43:50	2026-03-09 08:43:50
6718	12	229	2026-03-09 08:43:50	2026-03-09 08:43:50
6719	12	230	2026-03-09 08:43:50	2026-03-09 08:43:50
6720	12	231	2026-03-09 08:43:50	2026-03-09 08:43:50
6721	12	232	2026-03-09 08:43:50	2026-03-09 08:43:50
6722	12	233	2026-03-09 08:43:50	2026-03-09 08:43:50
6723	12	359	2026-03-09 08:43:50	2026-03-09 08:43:50
6724	12	360	2026-03-09 08:43:50	2026-03-09 08:43:50
6725	12	234	2026-03-09 08:43:50	2026-03-09 08:43:50
6726	12	235	2026-03-09 08:43:50	2026-03-09 08:43:50
6727	12	236	2026-03-09 08:43:50	2026-03-09 08:43:50
6728	12	237	2026-03-09 08:43:50	2026-03-09 08:43:50
6729	12	238	2026-03-09 08:43:50	2026-03-09 08:43:50
6730	12	239	2026-03-09 08:43:50	2026-03-09 08:43:50
6731	12	240	2026-03-09 08:43:50	2026-03-09 08:43:50
6732	12	241	2026-03-09 08:43:50	2026-03-09 08:43:50
6733	12	242	2026-03-09 08:43:50	2026-03-09 08:43:50
6734	12	243	2026-03-09 08:43:50	2026-03-09 08:43:50
6735	12	244	2026-03-09 08:43:50	2026-03-09 08:43:50
6736	12	245	2026-03-09 08:43:50	2026-03-09 08:43:50
6737	12	246	2026-03-09 08:43:50	2026-03-09 08:43:50
6738	12	247	2026-03-09 08:43:50	2026-03-09 08:43:50
6739	12	248	2026-03-09 08:43:50	2026-03-09 08:43:50
6740	12	249	2026-03-09 08:43:50	2026-03-09 08:43:50
6741	12	250	2026-03-09 08:43:50	2026-03-09 08:43:50
6742	12	251	2026-03-09 08:43:50	2026-03-09 08:43:50
6743	12	252	2026-03-09 08:43:50	2026-03-09 08:43:50
6744	12	253	2026-03-09 08:43:50	2026-03-09 08:43:50
6745	12	254	2026-03-09 08:43:50	2026-03-09 08:43:50
6746	12	255	2026-03-09 08:43:50	2026-03-09 08:43:50
6747	12	256	2026-03-09 08:43:50	2026-03-09 08:43:50
6748	12	257	2026-03-09 08:43:50	2026-03-09 08:43:50
6749	12	258	2026-03-09 08:43:50	2026-03-09 08:43:50
6750	12	259	2026-03-09 08:43:50	2026-03-09 08:43:50
6751	12	260	2026-03-09 08:43:50	2026-03-09 08:43:50
6752	12	261	2026-03-09 08:43:50	2026-03-09 08:43:50
6753	12	262	2026-03-09 08:43:50	2026-03-09 08:43:50
6754	12	263	2026-03-09 08:43:50	2026-03-09 08:43:50
6755	12	264	2026-03-09 08:43:50	2026-03-09 08:43:50
6756	12	509	2026-03-09 08:43:50	2026-03-09 08:43:50
6757	12	265	2026-03-09 08:43:50	2026-03-09 08:43:50
6758	12	266	2026-03-09 08:43:50	2026-03-09 08:43:50
6759	12	267	2026-03-09 08:43:50	2026-03-09 08:43:50
6760	12	268	2026-03-09 08:43:50	2026-03-09 08:43:50
6761	12	269	2026-03-09 08:43:50	2026-03-09 08:43:50
6762	12	270	2026-03-09 08:43:50	2026-03-09 08:43:50
6763	12	271	2026-03-09 08:43:50	2026-03-09 08:43:50
6764	12	272	2026-03-09 08:43:50	2026-03-09 08:43:50
6765	12	273	2026-03-09 08:43:50	2026-03-09 08:43:50
6766	12	274	2026-03-09 08:43:50	2026-03-09 08:43:50
6767	12	275	2026-03-09 08:43:50	2026-03-09 08:43:50
6768	12	276	2026-03-09 08:43:50	2026-03-09 08:43:50
6769	12	277	2026-03-09 08:43:50	2026-03-09 08:43:50
6770	12	278	2026-03-09 08:43:50	2026-03-09 08:43:50
6771	12	279	2026-03-09 08:43:50	2026-03-09 08:43:50
6772	12	280	2026-03-09 08:43:50	2026-03-09 08:43:50
6773	12	281	2026-03-09 08:43:50	2026-03-09 08:43:50
6774	12	282	2026-03-09 08:43:50	2026-03-09 08:43:50
6775	12	283	2026-03-09 08:43:50	2026-03-09 08:43:50
6776	12	284	2026-03-09 08:43:50	2026-03-09 08:43:50
6777	12	285	2026-03-09 08:43:50	2026-03-09 08:43:50
6778	12	286	2026-03-09 08:43:50	2026-03-09 08:43:50
6779	12	287	2026-03-09 08:43:50	2026-03-09 08:43:50
6780	12	288	2026-03-09 08:43:50	2026-03-09 08:43:50
6781	12	289	2026-03-09 08:43:50	2026-03-09 08:43:50
6782	12	294	2026-03-09 08:43:50	2026-03-09 08:43:50
6783	12	295	2026-03-09 08:43:50	2026-03-09 08:43:50
6784	12	296	2026-03-09 08:43:50	2026-03-09 08:43:50
6785	12	297	2026-03-09 08:43:50	2026-03-09 08:43:50
6786	12	500	2026-03-09 08:43:50	2026-03-09 08:43:50
6787	12	501	2026-03-09 08:43:50	2026-03-09 08:43:50
6788	12	502	2026-03-09 08:43:50	2026-03-09 08:43:50
6789	12	510	2026-03-09 08:43:50	2026-03-09 08:43:50
6790	12	511	2026-03-09 08:43:50	2026-03-09 08:43:50
6791	12	512	2026-03-09 08:43:50	2026-03-09 08:43:50
6792	12	567	2026-03-09 08:43:50	2026-03-09 08:43:50
6793	12	594	2026-03-09 08:43:50	2026-03-09 08:43:50
6794	12	679	2026-03-09 08:43:50	2026-03-09 08:43:50
6795	12	709	2026-03-09 08:43:50	2026-03-09 08:43:50
6796	12	298	2026-03-09 08:43:50	2026-03-09 08:43:50
6797	12	299	2026-03-09 08:43:50	2026-03-09 08:43:50
6798	12	300	2026-03-09 08:43:50	2026-03-09 08:43:50
6799	12	310	2026-03-09 08:43:50	2026-03-09 08:43:50
6800	12	311	2026-03-09 08:43:50	2026-03-09 08:43:50
6801	12	312	2026-03-09 08:43:50	2026-03-09 08:43:50
6802	12	313	2026-03-09 08:43:50	2026-03-09 08:43:50
6803	12	314	2026-03-09 08:43:50	2026-03-09 08:43:50
6804	12	315	2026-03-09 08:43:50	2026-03-09 08:43:50
6805	12	316	2026-03-09 08:43:50	2026-03-09 08:43:50
6806	12	317	2026-03-09 08:43:50	2026-03-09 08:43:50
6807	12	318	2026-03-09 08:43:50	2026-03-09 08:43:50
6808	12	358	2026-03-09 08:43:50	2026-03-09 08:43:50
6809	12	365	2026-03-09 08:43:50	2026-03-09 08:43:50
6810	12	350	2026-03-09 08:43:50	2026-03-09 08:43:50
6811	12	351	2026-03-09 08:43:50	2026-03-09 08:43:50
6812	12	352	2026-03-09 08:43:50	2026-03-09 08:43:50
6813	12	353	2026-03-09 08:43:50	2026-03-09 08:43:50
6814	12	354	2026-03-09 08:43:50	2026-03-09 08:43:50
6815	12	355	2026-03-09 08:43:50	2026-03-09 08:43:50
6816	12	356	2026-03-09 08:43:50	2026-03-09 08:43:50
6817	12	357	2026-03-09 08:43:50	2026-03-09 08:43:50
6818	12	392	2026-03-09 08:43:50	2026-03-09 08:43:50
6819	12	396	2026-03-09 08:43:50	2026-03-09 08:43:50
6820	12	301	2026-03-09 08:43:50	2026-03-09 08:43:50
6821	12	302	2026-03-09 08:43:50	2026-03-09 08:43:50
6822	12	303	2026-03-09 08:43:50	2026-03-09 08:43:50
6823	12	304	2026-03-09 08:43:50	2026-03-09 08:43:50
6824	12	305	2026-03-09 08:43:50	2026-03-09 08:43:50
6825	12	306	2026-03-09 08:43:50	2026-03-09 08:43:50
6826	12	307	2026-03-09 08:43:50	2026-03-09 08:43:50
6827	12	308	2026-03-09 08:43:50	2026-03-09 08:43:50
6828	12	309	2026-03-09 08:43:50	2026-03-09 08:43:50
6829	12	590	2026-03-09 08:43:50	2026-03-09 08:43:50
6830	12	591	2026-03-09 08:43:50	2026-03-09 08:43:50
6831	12	319	2026-03-09 08:43:50	2026-03-09 08:43:50
6832	12	320	2026-03-09 08:43:50	2026-03-09 08:43:50
6833	12	321	2026-03-09 08:43:50	2026-03-09 08:43:50
6834	12	322	2026-03-09 08:43:50	2026-03-09 08:43:50
6835	12	323	2026-03-09 08:43:50	2026-03-09 08:43:50
6836	12	324	2026-03-09 08:43:50	2026-03-09 08:43:50
6837	12	325	2026-03-09 08:43:50	2026-03-09 08:43:50
6838	12	326	2026-03-09 08:43:50	2026-03-09 08:43:50
6839	12	327	2026-03-09 08:43:50	2026-03-09 08:43:50
6840	12	328	2026-03-09 08:43:50	2026-03-09 08:43:50
6841	12	676	2026-03-09 08:43:50	2026-03-09 08:43:50
6842	12	339	2026-03-09 08:43:50	2026-03-09 08:43:50
6843	12	385	2026-03-09 08:43:50	2026-03-09 08:43:50
6844	12	386	2026-03-09 08:43:50	2026-03-09 08:43:50
6845	12	387	2026-03-09 08:43:50	2026-03-09 08:43:50
6846	12	388	2026-03-09 08:43:50	2026-03-09 08:43:50
6847	12	389	2026-03-09 08:43:50	2026-03-09 08:43:50
6848	12	390	2026-03-09 08:43:50	2026-03-09 08:43:50
6849	12	391	2026-03-09 08:43:50	2026-03-09 08:43:50
6850	12	555	2026-03-09 08:43:50	2026-03-09 08:43:50
6851	12	556	2026-03-09 08:43:50	2026-03-09 08:43:50
6852	12	557	2026-03-09 08:43:50	2026-03-09 08:43:50
6853	12	455	2026-03-09 08:43:50	2026-03-09 08:43:50
6854	12	456	2026-03-09 08:43:50	2026-03-09 08:43:50
6855	12	457	2026-03-09 08:43:50	2026-03-09 08:43:50
6856	12	458	2026-03-09 08:43:50	2026-03-09 08:43:50
6857	12	459	2026-03-09 08:43:50	2026-03-09 08:43:50
6858	12	460	2026-03-09 08:43:50	2026-03-09 08:43:50
6859	12	461	2026-03-09 08:43:50	2026-03-09 08:43:50
6860	12	462	2026-03-09 08:43:50	2026-03-09 08:43:50
6861	12	463	2026-03-09 08:43:50	2026-03-09 08:43:50
6862	12	465	2026-03-09 08:43:50	2026-03-09 08:43:50
6863	12	466	2026-03-09 08:43:50	2026-03-09 08:43:50
6864	12	467	2026-03-09 08:43:50	2026-03-09 08:43:50
6865	12	468	2026-03-09 08:43:50	2026-03-09 08:43:50
6866	12	469	2026-03-09 08:43:50	2026-03-09 08:43:50
6867	12	470	2026-03-09 08:43:50	2026-03-09 08:43:50
6868	12	471	2026-03-09 08:43:50	2026-03-09 08:43:50
6869	12	472	2026-03-09 08:43:50	2026-03-09 08:43:50
6870	12	473	2026-03-09 08:43:50	2026-03-09 08:43:50
6871	12	474	2026-03-09 08:43:50	2026-03-09 08:43:50
6872	12	476	2026-03-09 08:43:50	2026-03-09 08:43:50
6873	12	478	2026-03-09 08:43:50	2026-03-09 08:43:50
6874	12	479	2026-03-09 08:43:50	2026-03-09 08:43:50
6875	12	475	2026-03-09 08:43:50	2026-03-09 08:43:50
6876	12	710	2026-03-09 08:43:50	2026-03-09 08:43:50
6877	12	714	2026-03-09 08:43:50	2026-03-09 08:43:50
6878	12	715	2026-03-09 08:43:50	2026-03-09 08:43:50
6879	12	716	2026-03-09 08:43:50	2026-03-09 08:43:50
6880	12	717	2026-03-09 08:43:50	2026-03-09 08:43:50
6881	12	718	2026-03-09 08:43:50	2026-03-09 08:43:50
6882	12	719	2026-03-09 08:43:50	2026-03-09 08:43:50
6883	12	720	2026-03-09 08:43:50	2026-03-09 08:43:50
6884	12	721	2026-03-09 08:43:50	2026-03-09 08:43:50
6885	12	722	2026-03-09 08:43:50	2026-03-09 08:43:50
6886	12	723	2026-03-09 08:43:50	2026-03-09 08:43:50
6887	12	724	2026-03-09 08:43:50	2026-03-09 08:43:50
6888	12	725	2026-03-09 08:43:50	2026-03-09 08:43:50
6889	12	726	2026-03-09 08:43:50	2026-03-09 08:43:50
6890	12	727	2026-03-09 08:43:50	2026-03-09 08:43:50
6891	12	728	2026-03-09 08:43:50	2026-03-09 08:43:50
6892	12	729	2026-03-09 08:43:50	2026-03-09 08:43:50
6893	12	736	2026-03-09 08:43:50	2026-03-09 08:43:50
6894	12	737	2026-03-09 08:43:50	2026-03-09 08:43:50
6895	12	738	2026-03-09 08:43:50	2026-03-09 08:43:50
6896	12	739	2026-03-09 08:43:50	2026-03-09 08:43:50
6897	12	740	2026-03-09 08:43:50	2026-03-09 08:43:50
6898	12	741	2026-03-09 08:43:50	2026-03-09 08:43:50
6899	12	742	2026-03-09 08:43:50	2026-03-09 08:43:50
6900	12	743	2026-03-09 08:43:50	2026-03-09 08:43:50
6901	12	744	2026-03-09 08:43:50	2026-03-09 08:43:50
6902	12	746	2026-03-09 08:43:50	2026-03-09 08:43:50
6903	12	747	2026-03-09 08:43:50	2026-03-09 08:43:50
6904	12	25	2026-03-09 08:43:50	2026-03-09 08:43:50
6905	12	487	2026-03-09 08:43:50	2026-03-09 08:43:50
6906	12	488	2026-03-09 08:43:50	2026-03-09 08:43:50
6907	12	489	2026-03-09 08:43:50	2026-03-09 08:43:50
6908	12	490	2026-03-09 08:43:50	2026-03-09 08:43:50
6909	12	491	2026-03-09 08:43:50	2026-03-09 08:43:50
6910	12	551	2026-03-09 08:43:50	2026-03-09 08:43:50
6911	12	552	2026-03-09 08:43:50	2026-03-09 08:43:50
6912	12	568	2026-03-09 08:43:50	2026-03-09 08:43:50
6913	12	569	2026-03-09 08:43:50	2026-03-09 08:43:50
6914	12	570	2026-03-09 08:43:50	2026-03-09 08:43:50
6915	12	492	2026-03-09 08:43:50	2026-03-09 08:43:50
6916	12	493	2026-03-09 08:43:50	2026-03-09 08:43:50
6917	12	494	2026-03-09 08:43:50	2026-03-09 08:43:50
6918	12	495	2026-03-09 08:43:50	2026-03-09 08:43:50
6919	12	497	2026-03-09 08:43:50	2026-03-09 08:43:50
6920	12	496	2026-03-09 08:43:50	2026-03-09 08:43:50
6921	12	572	2026-03-09 08:43:50	2026-03-09 08:43:50
6922	12	573	2026-03-09 08:43:50	2026-03-09 08:43:50
6923	12	574	2026-03-09 08:43:50	2026-03-09 08:43:50
6924	12	575	2026-03-09 08:43:50	2026-03-09 08:43:50
6925	12	622	2026-03-09 08:43:50	2026-03-09 08:43:50
6926	12	378	2026-03-09 08:43:50	2026-03-09 08:43:50
6927	12	528	2026-03-09 08:43:50	2026-03-09 08:43:50
6928	12	595	2026-03-09 08:43:50	2026-03-09 08:43:50
6929	12	596	2026-03-09 08:43:50	2026-03-09 08:43:50
6930	12	597	2026-03-09 08:43:50	2026-03-09 08:43:50
6931	12	598	2026-03-09 08:43:50	2026-03-09 08:43:50
6932	12	599	2026-03-09 08:43:50	2026-03-09 08:43:50
6933	12	600	2026-03-09 08:43:50	2026-03-09 08:43:50
6934	12	601	2026-03-09 08:43:50	2026-03-09 08:43:50
6935	12	602	2026-03-09 08:43:50	2026-03-09 08:43:50
6936	12	603	2026-03-09 08:43:50	2026-03-09 08:43:50
6937	12	604	2026-03-09 08:43:50	2026-03-09 08:43:50
6938	12	605	2026-03-09 08:43:50	2026-03-09 08:43:50
6939	12	606	2026-03-09 08:43:50	2026-03-09 08:43:50
6940	12	607	2026-03-09 08:43:50	2026-03-09 08:43:50
6941	12	608	2026-03-09 08:43:50	2026-03-09 08:43:50
6942	12	609	2026-03-09 08:43:50	2026-03-09 08:43:50
6943	12	610	2026-03-09 08:43:50	2026-03-09 08:43:50
6944	12	611	2026-03-09 08:43:50	2026-03-09 08:43:50
6945	12	612	2026-03-09 08:43:50	2026-03-09 08:43:50
6946	12	613	2026-03-09 08:43:50	2026-03-09 08:43:50
6947	12	677	2026-03-09 08:43:50	2026-03-09 08:43:50
6948	12	678	2026-03-09 08:43:50	2026-03-09 08:43:50
6949	12	706	2026-03-09 08:43:50	2026-03-09 08:43:50
6950	12	707	2026-03-09 08:43:50	2026-03-09 08:43:50
6951	12	623	2026-03-09 08:43:50	2026-03-09 08:43:50
6952	12	624	2026-03-09 08:43:50	2026-03-09 08:43:50
6953	12	625	2026-03-09 08:43:50	2026-03-09 08:43:50
6954	12	626	2026-03-09 08:43:50	2026-03-09 08:43:50
6955	12	627	2026-03-09 08:43:50	2026-03-09 08:43:50
6956	12	628	2026-03-09 08:43:50	2026-03-09 08:43:50
6957	12	629	2026-03-09 08:43:50	2026-03-09 08:43:50
6958	12	630	2026-03-09 08:43:50	2026-03-09 08:43:50
6959	12	631	2026-03-09 08:43:50	2026-03-09 08:43:50
6960	12	632	2026-03-09 08:43:50	2026-03-09 08:43:50
6961	12	633	2026-03-09 08:43:50	2026-03-09 08:43:50
6962	12	634	2026-03-09 08:43:50	2026-03-09 08:43:50
6963	12	635	2026-03-09 08:43:50	2026-03-09 08:43:50
6964	12	636	2026-03-09 08:43:50	2026-03-09 08:43:50
6965	12	637	2026-03-09 08:43:50	2026-03-09 08:43:50
6966	12	638	2026-03-09 08:43:50	2026-03-09 08:43:50
6967	12	659	2026-03-09 08:43:50	2026-03-09 08:43:50
6968	12	639	2026-03-09 08:43:50	2026-03-09 08:43:50
6969	12	640	2026-03-09 08:43:50	2026-03-09 08:43:50
6970	12	641	2026-03-09 08:43:50	2026-03-09 08:43:50
6971	12	642	2026-03-09 08:43:50	2026-03-09 08:43:50
6972	12	643	2026-03-09 08:43:50	2026-03-09 08:43:50
6973	12	644	2026-03-09 08:43:50	2026-03-09 08:43:50
6974	12	645	2026-03-09 08:43:50	2026-03-09 08:43:50
6975	12	646	2026-03-09 08:43:50	2026-03-09 08:43:50
6976	12	700	2026-03-09 08:43:50	2026-03-09 08:43:50
6977	12	701	2026-03-09 08:43:50	2026-03-09 08:43:50
6978	12	702	2026-03-09 08:43:50	2026-03-09 08:43:50
6979	12	703	2026-03-09 08:43:50	2026-03-09 08:43:50
6980	12	704	2026-03-09 08:43:50	2026-03-09 08:43:50
6981	12	705	2026-03-09 08:43:50	2026-03-09 08:43:50
6982	12	745	2026-03-09 08:43:50	2026-03-09 08:43:50
6983	12	748	2026-03-09 08:43:50	2026-03-09 08:43:50
6984	12	749	2026-03-09 08:43:50	2026-03-09 08:43:50
6985	12	750	2026-03-09 08:43:50	2026-03-09 08:43:50
6986	12	751	2026-03-09 08:43:50	2026-03-09 08:43:50
6987	12	752	2026-03-09 08:43:50	2026-03-09 08:43:50
6988	12	753	2026-03-09 08:43:50	2026-03-09 08:43:50
6989	12	754	2026-03-09 08:43:50	2026-03-09 08:43:50
6990	12	755	2026-03-09 08:43:50	2026-03-09 08:43:50
6991	12	756	2026-03-09 08:43:50	2026-03-09 08:43:50
6992	12	757	2026-03-09 08:43:50	2026-03-09 08:43:50
6993	12	758	2026-03-09 08:43:50	2026-03-09 08:43:50
6994	12	759	2026-03-09 08:43:50	2026-03-09 08:43:50
6995	12	760	2026-03-09 08:43:50	2026-03-09 08:43:50
6996	12	761	2026-03-09 08:43:50	2026-03-09 08:43:50
6997	12	762	2026-03-09 08:43:50	2026-03-09 08:43:50
6998	12	763	2026-03-09 08:43:50	2026-03-09 08:43:50
6999	12	764	2026-03-09 08:43:50	2026-03-09 08:43:50
7000	12	765	2026-03-09 08:43:50	2026-03-09 08:43:50
7001	12	766	2026-03-09 08:43:50	2026-03-09 08:43:50
7002	12	26	2026-03-09 08:43:50	2026-03-09 08:43:50
7003	12	28	2026-03-09 08:43:50	2026-03-09 08:43:50
7004	12	29	2026-03-09 08:43:50	2026-03-09 08:43:50
7005	12	30	2026-03-09 08:43:50	2026-03-09 08:43:50
7006	12	31	2026-03-09 08:43:50	2026-03-09 08:43:50
7007	12	32	2026-03-09 08:43:50	2026-03-09 08:43:50
7008	12	33	2026-03-09 08:43:50	2026-03-09 08:43:50
7009	12	367	2026-03-09 08:43:50	2026-03-09 08:43:50
7010	12	368	2026-03-09 08:43:50	2026-03-09 08:43:50
7011	12	369	2026-03-09 08:43:50	2026-03-09 08:43:50
7012	12	370	2026-03-09 08:43:50	2026-03-09 08:43:50
7013	12	371	2026-03-09 08:43:50	2026-03-09 08:43:50
7014	12	373	2026-03-09 08:43:50	2026-03-09 08:43:50
7015	12	395	2026-03-09 08:43:50	2026-03-09 08:43:50
7016	12	39	2026-03-09 08:43:50	2026-03-09 08:43:50
7017	12	379	2026-03-09 08:43:50	2026-03-09 08:43:50
7018	12	380	2026-03-09 08:43:50	2026-03-09 08:43:50
7019	12	34	2026-03-09 08:43:50	2026-03-09 08:43:50
7020	12	35	2026-03-09 08:43:50	2026-03-09 08:43:50
7021	12	36	2026-03-09 08:43:50	2026-03-09 08:43:50
7022	12	37	2026-03-09 08:43:50	2026-03-09 08:43:50
7023	12	38	2026-03-09 08:43:50	2026-03-09 08:43:50
7024	12	424	2026-03-09 08:43:50	2026-03-09 08:43:50
7025	12	425	2026-03-09 08:43:50	2026-03-09 08:43:50
7026	12	427	2026-03-09 08:43:50	2026-03-09 08:43:50
7027	12	443	2026-03-09 08:43:50	2026-03-09 08:43:50
7028	12	449	2026-03-09 08:43:50	2026-03-09 08:43:50
7029	12	453	2026-03-09 08:43:50	2026-03-09 08:43:50
7030	12	454	2026-03-09 08:43:50	2026-03-09 08:43:50
7031	12	464	2026-03-09 08:43:50	2026-03-09 08:43:50
7032	12	450	2026-03-09 08:43:50	2026-03-09 08:43:50
7033	12	498	2026-03-09 08:43:50	2026-03-09 08:43:50
7034	12	499	2026-03-09 08:43:50	2026-03-09 08:43:50
7035	12	513	2026-03-09 08:43:50	2026-03-09 08:43:50
7036	12	514	2026-03-09 08:43:50	2026-03-09 08:43:50
7037	12	515	2026-03-09 08:43:50	2026-03-09 08:43:50
7038	12	516	2026-03-09 08:43:50	2026-03-09 08:43:50
7039	12	517	2026-03-09 08:43:50	2026-03-09 08:43:50
7040	12	518	2026-03-09 08:43:50	2026-03-09 08:43:50
7041	12	520	2026-03-09 08:43:50	2026-03-09 08:43:50
7042	12	521	2026-03-09 08:43:50	2026-03-09 08:43:50
7043	12	522	2026-03-09 08:43:50	2026-03-09 08:43:50
7044	12	523	2026-03-09 08:43:50	2026-03-09 08:43:50
7045	12	531	2026-03-09 08:43:50	2026-03-09 08:43:50
7046	12	547	2026-03-09 08:43:50	2026-03-09 08:43:50
7047	12	548	2026-03-09 08:43:50	2026-03-09 08:43:50
7048	12	549	2026-03-09 08:43:50	2026-03-09 08:43:50
7049	12	550	2026-03-09 08:43:50	2026-03-09 08:43:50
7050	12	553	2026-03-09 08:43:50	2026-03-09 08:43:50
7051	12	554	2026-03-09 08:43:50	2026-03-09 08:43:50
7052	12	586	2026-03-09 08:43:50	2026-03-09 08:43:50
7053	12	593	2026-03-09 08:43:50	2026-03-09 08:43:50
7054	12	652	2026-03-09 08:43:50	2026-03-09 08:43:50
7055	12	653	2026-03-09 08:43:50	2026-03-09 08:43:50
7056	12	654	2026-03-09 08:43:50	2026-03-09 08:43:50
7057	12	655	2026-03-09 08:43:50	2026-03-09 08:43:50
7058	12	656	2026-03-09 08:43:50	2026-03-09 08:43:50
7059	12	657	2026-03-09 08:43:50	2026-03-09 08:43:50
7060	12	658	2026-03-09 08:43:50	2026-03-09 08:43:50
7061	12	682	2026-03-09 08:43:50	2026-03-09 08:43:50
7062	12	683	2026-03-09 08:43:50	2026-03-09 08:43:50
7063	12	684	2026-03-09 08:43:50	2026-03-09 08:43:50
7064	12	685	2026-03-09 08:43:50	2026-03-09 08:43:50
7065	12	686	2026-03-09 08:43:50	2026-03-09 08:43:50
7066	12	687	2026-03-09 08:43:50	2026-03-09 08:43:50
7067	12	688	2026-03-09 08:43:50	2026-03-09 08:43:50
7068	12	27	2026-03-09 08:43:50	2026-03-09 08:43:50
7069	12	692	2026-03-09 08:43:50	2026-03-09 08:43:50
7070	12	708	2026-03-09 08:43:50	2026-03-09 08:43:50
7071	12	731	2026-03-09 08:43:50	2026-03-09 08:43:50
7072	12	732	2026-03-09 08:43:50	2026-03-09 08:43:50
7073	12	40	2026-03-09 08:43:50	2026-03-09 08:43:50
7074	12	44	2026-03-09 08:43:50	2026-03-09 08:43:50
7075	12	45	2026-03-09 08:43:50	2026-03-09 08:43:50
7076	12	46	2026-03-09 08:43:50	2026-03-09 08:43:50
7077	12	47	2026-03-09 08:43:50	2026-03-09 08:43:50
7078	12	48	2026-03-09 08:43:50	2026-03-09 08:43:50
7079	12	49	2026-03-09 08:43:50	2026-03-09 08:43:50
7080	12	50	2026-03-09 08:43:50	2026-03-09 08:43:50
7081	12	51	2026-03-09 08:43:50	2026-03-09 08:43:50
7082	12	52	2026-03-09 08:43:50	2026-03-09 08:43:50
7083	12	372	2026-03-09 08:43:50	2026-03-09 08:43:50
7084	12	384	2026-03-09 08:43:50	2026-03-09 08:43:50
7085	12	41	2026-03-09 08:43:50	2026-03-09 08:43:50
7086	12	42	2026-03-09 08:43:50	2026-03-09 08:43:50
7087	12	43	2026-03-09 08:43:50	2026-03-09 08:43:50
7088	12	529	2026-03-09 08:43:50	2026-03-09 08:43:50
7089	12	526	2026-03-09 08:43:50	2026-03-09 08:43:50
7090	12	525	2026-03-09 08:43:50	2026-03-09 08:43:50
7091	12	527	2026-03-09 08:43:50	2026-03-09 08:43:50
7092	12	530	2026-03-09 08:43:50	2026-03-09 08:43:50
7093	12	519	2026-03-09 08:43:50	2026-03-09 08:43:50
7094	12	587	2026-03-09 08:43:50	2026-03-09 08:43:50
7095	12	592	2026-03-09 08:43:50	2026-03-09 08:43:50
7096	12	648	2026-03-09 08:43:50	2026-03-09 08:43:50
7097	12	524	2026-03-09 08:43:50	2026-03-09 08:43:50
7098	12	588	2026-03-09 08:43:50	2026-03-09 08:43:50
7099	12	616	2026-03-09 08:43:50	2026-03-09 08:43:50
7100	12	452	2026-03-09 08:43:50	2026-03-09 08:43:50
7101	12	589	2026-03-09 08:43:50	2026-03-09 08:43:50
7102	12	665	2026-03-09 08:43:50	2026-03-09 08:43:50
7103	12	693	2026-03-09 08:43:50	2026-03-09 08:43:50
7104	12	694	2026-03-09 08:43:50	2026-03-09 08:43:50
7105	12	695	2026-03-09 08:43:50	2026-03-09 08:43:50
7106	12	53	2026-03-09 08:43:50	2026-03-09 08:43:50
7107	12	54	2026-03-09 08:43:50	2026-03-09 08:43:50
7108	12	55	2026-03-09 08:43:50	2026-03-09 08:43:50
7109	12	56	2026-03-09 08:43:50	2026-03-09 08:43:50
7110	12	57	2026-03-09 08:43:50	2026-03-09 08:43:50
7111	12	58	2026-03-09 08:43:50	2026-03-09 08:43:50
7112	12	59	2026-03-09 08:43:50	2026-03-09 08:43:50
7113	12	60	2026-03-09 08:43:50	2026-03-09 08:43:50
7114	12	61	2026-03-09 08:43:50	2026-03-09 08:43:50
7115	12	62	2026-03-09 08:43:50	2026-03-09 08:43:50
7116	12	63	2026-03-09 08:43:50	2026-03-09 08:43:50
7117	12	64	2026-03-09 08:43:50	2026-03-09 08:43:50
7118	12	65	2026-03-09 08:43:50	2026-03-09 08:43:50
7119	12	66	2026-03-09 08:43:50	2026-03-09 08:43:50
7120	12	67	2026-03-09 08:43:50	2026-03-09 08:43:50
7121	12	68	2026-03-09 08:43:50	2026-03-09 08:43:50
7122	12	69	2026-03-09 08:43:50	2026-03-09 08:43:50
7123	12	70	2026-03-09 08:43:50	2026-03-09 08:43:50
7124	12	71	2026-03-09 08:43:50	2026-03-09 08:43:50
7125	12	72	2026-03-09 08:43:50	2026-03-09 08:43:50
7126	12	73	2026-03-09 08:43:50	2026-03-09 08:43:50
7127	12	74	2026-03-09 08:43:50	2026-03-09 08:43:50
7128	12	75	2026-03-09 08:43:50	2026-03-09 08:43:50
7129	12	76	2026-03-09 08:43:50	2026-03-09 08:43:50
7130	12	77	2026-03-09 08:43:50	2026-03-09 08:43:50
7131	12	432	2026-03-09 08:43:50	2026-03-09 08:43:50
7132	12	433	2026-03-09 08:43:50	2026-03-09 08:43:50
7133	12	434	2026-03-09 08:43:50	2026-03-09 08:43:50
7134	12	435	2026-03-09 08:43:50	2026-03-09 08:43:50
7135	12	436	2026-03-09 08:43:50	2026-03-09 08:43:50
7136	12	437	2026-03-09 08:43:50	2026-03-09 08:43:50
7137	12	438	2026-03-09 08:43:50	2026-03-09 08:43:50
7138	12	439	2026-03-09 08:43:50	2026-03-09 08:43:50
7139	12	440	2026-03-09 08:43:50	2026-03-09 08:43:50
7140	12	451	2026-03-09 08:43:50	2026-03-09 08:43:50
7141	12	477	2026-03-09 08:43:50	2026-03-09 08:43:50
7142	12	585	2026-03-09 08:43:50	2026-03-09 08:43:50
7143	12	669	2026-03-09 08:43:50	2026-03-09 08:43:50
7144	12	670	2026-03-09 08:43:50	2026-03-09 08:43:50
7145	12	671	2026-03-09 08:43:50	2026-03-09 08:43:50
7146	12	672	2026-03-09 08:43:50	2026-03-09 08:43:50
7147	12	680	2026-03-09 08:43:50	2026-03-09 08:43:50
7148	12	681	2026-03-09 08:43:50	2026-03-09 08:43:50
7149	12	689	2026-03-09 08:43:50	2026-03-09 08:43:50
7150	12	698	2026-03-09 08:43:50	2026-03-09 08:43:50
7151	12	699	2026-03-09 08:43:50	2026-03-09 08:43:50
7152	12	711	2026-03-09 08:43:50	2026-03-09 08:43:50
7153	12	712	2026-03-09 08:43:50	2026-03-09 08:43:50
7154	12	713	2026-03-09 08:43:50	2026-03-09 08:43:50
7155	12	730	2026-03-09 08:43:50	2026-03-09 08:43:50
7156	12	78	2026-03-09 08:43:50	2026-03-09 08:43:50
7157	12	79	2026-03-09 08:43:50	2026-03-09 08:43:50
7158	12	80	2026-03-09 08:43:50	2026-03-09 08:43:50
7159	12	81	2026-03-09 08:43:50	2026-03-09 08:43:50
7160	12	82	2026-03-09 08:43:50	2026-03-09 08:43:50
7161	12	83	2026-03-09 08:43:50	2026-03-09 08:43:50
7162	12	84	2026-03-09 08:43:50	2026-03-09 08:43:50
7163	12	85	2026-03-09 08:43:50	2026-03-09 08:43:50
7164	12	86	2026-03-09 08:43:50	2026-03-09 08:43:50
7165	12	87	2026-03-09 08:43:50	2026-03-09 08:43:50
7166	12	88	2026-03-09 08:43:50	2026-03-09 08:43:50
7167	12	89	2026-03-09 08:43:50	2026-03-09 08:43:50
7168	12	90	2026-03-09 08:43:50	2026-03-09 08:43:50
7169	12	91	2026-03-09 08:43:50	2026-03-09 08:43:50
7170	12	92	2026-03-09 08:43:50	2026-03-09 08:43:50
7171	12	93	2026-03-09 08:43:50	2026-03-09 08:43:50
7172	12	94	2026-03-09 08:43:50	2026-03-09 08:43:50
7173	12	374	2026-03-09 08:43:50	2026-03-09 08:43:50
7174	12	375	2026-03-09 08:43:50	2026-03-09 08:43:50
7175	12	393	2026-03-09 08:43:50	2026-03-09 08:43:50
7176	12	394	2026-03-09 08:43:50	2026-03-09 08:43:50
7177	12	397	2026-03-09 08:43:50	2026-03-09 08:43:50
7178	12	398	2026-03-09 08:43:50	2026-03-09 08:43:50
7179	12	541	2026-03-09 08:43:50	2026-03-09 08:43:50
7180	12	543	2026-03-09 08:43:50	2026-03-09 08:43:50
7181	12	545	2026-03-09 08:43:50	2026-03-09 08:43:50
7182	12	571	2026-03-09 08:43:50	2026-03-09 08:43:50
7183	12	735	2026-03-09 08:43:50	2026-03-09 08:43:50
7184	12	95	2026-03-09 08:43:50	2026-03-09 08:43:50
7185	12	96	2026-03-09 08:43:50	2026-03-09 08:43:50
7186	12	97	2026-03-09 08:43:50	2026-03-09 08:43:50
7187	12	98	2026-03-09 08:43:50	2026-03-09 08:43:50
7188	12	99	2026-03-09 08:43:50	2026-03-09 08:43:50
7189	12	100	2026-03-09 08:43:50	2026-03-09 08:43:50
7190	12	101	2026-03-09 08:43:50	2026-03-09 08:43:50
7191	12	102	2026-03-09 08:43:50	2026-03-09 08:43:50
7192	12	103	2026-03-09 08:43:50	2026-03-09 08:43:50
7193	12	104	2026-03-09 08:43:50	2026-03-09 08:43:50
7194	12	361	2026-03-09 08:43:50	2026-03-09 08:43:50
7195	12	362	2026-03-09 08:43:50	2026-03-09 08:43:50
7196	12	363	2026-03-09 08:43:50	2026-03-09 08:43:50
7197	12	364	2026-03-09 08:43:50	2026-03-09 08:43:50
7198	12	366	2026-03-09 08:43:50	2026-03-09 08:43:50
7199	12	376	2026-03-09 08:43:50	2026-03-09 08:43:50
7200	12	377	2026-03-09 08:43:50	2026-03-09 08:43:50
7201	12	105	2026-03-09 08:43:50	2026-03-09 08:43:50
7202	12	106	2026-03-09 08:43:50	2026-03-09 08:43:50
7203	12	107	2026-03-09 08:43:50	2026-03-09 08:43:50
7204	12	108	2026-03-09 08:43:50	2026-03-09 08:43:50
7205	12	109	2026-03-09 08:43:50	2026-03-09 08:43:50
7206	12	110	2026-03-09 08:43:50	2026-03-09 08:43:50
7207	12	111	2026-03-09 08:43:50	2026-03-09 08:43:50
7208	12	112	2026-03-09 08:43:50	2026-03-09 08:43:50
7209	12	113	2026-03-09 08:43:50	2026-03-09 08:43:50
7210	12	114	2026-03-09 08:43:50	2026-03-09 08:43:50
7211	12	115	2026-03-09 08:43:50	2026-03-09 08:43:50
7212	12	116	2026-03-09 08:43:50	2026-03-09 08:43:50
7213	12	117	2026-03-09 08:43:50	2026-03-09 08:43:50
7214	12	428	2026-03-09 08:43:50	2026-03-09 08:43:50
7215	12	429	2026-03-09 08:43:50	2026-03-09 08:43:50
7216	12	430	2026-03-09 08:43:50	2026-03-09 08:43:50
7217	12	431	2026-03-09 08:43:50	2026-03-09 08:43:50
7218	12	444	2026-03-09 08:43:50	2026-03-09 08:43:50
7219	12	445	2026-03-09 08:43:50	2026-03-09 08:43:50
7220	12	446	2026-03-09 08:43:50	2026-03-09 08:43:50
7221	12	447	2026-03-09 08:43:50	2026-03-09 08:43:50
7222	12	507	2026-03-09 08:43:50	2026-03-09 08:43:50
7223	12	508	2026-03-09 08:43:50	2026-03-09 08:43:50
7224	12	532	2026-03-09 08:43:50	2026-03-09 08:43:50
7225	12	540	2026-03-09 08:43:50	2026-03-09 08:43:50
7226	12	542	2026-03-09 08:43:50	2026-03-09 08:43:50
7227	12	544	2026-03-09 08:43:50	2026-03-09 08:43:50
7228	12	564	2026-03-09 08:43:50	2026-03-09 08:43:50
7229	12	565	2026-03-09 08:43:50	2026-03-09 08:43:50
7230	12	566	2026-03-09 08:43:50	2026-03-09 08:43:50
7231	12	619	2026-03-09 08:43:50	2026-03-09 08:43:50
7232	12	620	2026-03-09 08:43:50	2026-03-09 08:43:50
7233	12	621	2026-03-09 08:43:50	2026-03-09 08:43:50
7234	12	649	2026-03-09 08:43:50	2026-03-09 08:43:50
7235	12	650	2026-03-09 08:43:50	2026-03-09 08:43:50
7236	12	651	2026-03-09 08:43:50	2026-03-09 08:43:50
7237	12	660	2026-03-09 08:43:50	2026-03-09 08:43:50
7238	12	661	2026-03-09 08:43:50	2026-03-09 08:43:50
7239	12	662	2026-03-09 08:43:50	2026-03-09 08:43:50
7240	12	663	2026-03-09 08:43:50	2026-03-09 08:43:50
7241	12	664	2026-03-09 08:43:50	2026-03-09 08:43:50
7242	12	666	2026-03-09 08:43:50	2026-03-09 08:43:50
7243	12	674	2026-03-09 08:43:50	2026-03-09 08:43:50
7244	12	675	2026-03-09 08:43:50	2026-03-09 08:43:50
7245	12	733	2026-03-09 08:43:50	2026-03-09 08:43:50
7246	12	734	2026-03-09 08:43:50	2026-03-09 08:43:50
7247	12	118	2026-03-09 08:43:50	2026-03-09 08:43:50
7248	12	119	2026-03-09 08:43:50	2026-03-09 08:43:50
7249	12	120	2026-03-09 08:43:50	2026-03-09 08:43:50
7250	12	121	2026-03-09 08:43:50	2026-03-09 08:43:50
7251	12	122	2026-03-09 08:43:50	2026-03-09 08:43:50
7252	12	123	2026-03-09 08:43:51	2026-03-09 08:43:51
7253	12	124	2026-03-09 08:43:51	2026-03-09 08:43:51
7254	12	125	2026-03-09 08:43:51	2026-03-09 08:43:51
7255	12	126	2026-03-09 08:43:51	2026-03-09 08:43:51
7256	12	127	2026-03-09 08:43:51	2026-03-09 08:43:51
7257	12	128	2026-03-09 08:43:51	2026-03-09 08:43:51
7258	12	129	2026-03-09 08:43:51	2026-03-09 08:43:51
7259	12	130	2026-03-09 08:43:51	2026-03-09 08:43:51
7260	12	329	2026-03-09 08:43:51	2026-03-09 08:43:51
7261	12	330	2026-03-09 08:43:51	2026-03-09 08:43:51
7262	12	331	2026-03-09 08:43:51	2026-03-09 08:43:51
7263	12	332	2026-03-09 08:43:51	2026-03-09 08:43:51
7264	12	333	2026-03-09 08:43:51	2026-03-09 08:43:51
7265	12	334	2026-03-09 08:43:51	2026-03-09 08:43:51
7266	12	340	2026-03-09 08:43:51	2026-03-09 08:43:51
7267	12	131	2026-03-09 08:43:51	2026-03-09 08:43:51
7268	12	132	2026-03-09 08:43:51	2026-03-09 08:43:51
7269	12	133	2026-03-09 08:43:51	2026-03-09 08:43:51
7270	12	134	2026-03-09 08:43:51	2026-03-09 08:43:51
7271	12	135	2026-03-09 08:43:51	2026-03-09 08:43:51
7272	12	136	2026-03-09 08:43:51	2026-03-09 08:43:51
7273	12	137	2026-03-09 08:43:51	2026-03-09 08:43:51
7274	12	138	2026-03-09 08:43:51	2026-03-09 08:43:51
7275	12	139	2026-03-09 08:43:51	2026-03-09 08:43:51
7276	12	140	2026-03-09 08:43:51	2026-03-09 08:43:51
7277	12	141	2026-03-09 08:43:51	2026-03-09 08:43:51
7278	12	142	2026-03-09 08:43:51	2026-03-09 08:43:51
7279	12	143	2026-03-09 08:43:51	2026-03-09 08:43:51
7280	12	144	2026-03-09 08:43:51	2026-03-09 08:43:51
7281	12	145	2026-03-09 08:43:51	2026-03-09 08:43:51
7282	12	146	2026-03-09 08:43:51	2026-03-09 08:43:51
7283	12	147	2026-03-09 08:43:51	2026-03-09 08:43:51
7284	12	148	2026-03-09 08:43:51	2026-03-09 08:43:51
7285	12	149	2026-03-09 08:43:51	2026-03-09 08:43:51
7286	12	150	2026-03-09 08:43:51	2026-03-09 08:43:51
7287	12	151	2026-03-09 08:43:51	2026-03-09 08:43:51
7288	12	152	2026-03-09 08:43:51	2026-03-09 08:43:51
7289	12	153	2026-03-09 08:43:51	2026-03-09 08:43:51
7290	12	154	2026-03-09 08:43:51	2026-03-09 08:43:51
7291	12	155	2026-03-09 08:43:51	2026-03-09 08:43:51
7292	12	156	2026-03-09 08:43:51	2026-03-09 08:43:51
7293	12	157	2026-03-09 08:43:51	2026-03-09 08:43:51
7294	12	158	2026-03-09 08:43:51	2026-03-09 08:43:51
7295	12	159	2026-03-09 08:43:51	2026-03-09 08:43:51
7296	12	160	2026-03-09 08:43:51	2026-03-09 08:43:51
7297	12	161	2026-03-09 08:43:51	2026-03-09 08:43:51
7298	12	162	2026-03-09 08:43:51	2026-03-09 08:43:51
7299	12	163	2026-03-09 08:43:51	2026-03-09 08:43:51
7300	12	164	2026-03-09 08:43:51	2026-03-09 08:43:51
7301	12	165	2026-03-09 08:43:51	2026-03-09 08:43:51
7302	12	166	2026-03-09 08:43:51	2026-03-09 08:43:51
7303	12	167	2026-03-09 08:43:51	2026-03-09 08:43:51
7304	12	168	2026-03-09 08:43:51	2026-03-09 08:43:51
7305	12	169	2026-03-09 08:43:51	2026-03-09 08:43:51
7306	12	170	2026-03-09 08:43:51	2026-03-09 08:43:51
7307	12	171	2026-03-09 08:43:51	2026-03-09 08:43:51
7308	12	172	2026-03-09 08:43:51	2026-03-09 08:43:51
7309	12	173	2026-03-09 08:43:51	2026-03-09 08:43:51
7310	12	426	2026-03-09 08:43:51	2026-03-09 08:43:51
7311	12	341	2026-03-09 08:43:51	2026-03-09 08:43:51
7312	12	342	2026-03-09 08:43:51	2026-03-09 08:43:51
7313	12	343	2026-03-09 08:43:51	2026-03-09 08:43:51
7314	12	346	2026-03-09 08:43:51	2026-03-09 08:43:51
7315	12	347	2026-03-09 08:43:51	2026-03-09 08:43:51
7316	12	348	2026-03-09 08:43:51	2026-03-09 08:43:51
7317	12	349	2026-03-09 08:43:51	2026-03-09 08:43:51
7318	12	536	2026-03-09 08:43:51	2026-03-09 08:43:51
7319	12	537	2026-03-09 08:43:51	2026-03-09 08:43:51
7320	12	538	2026-03-09 08:43:51	2026-03-09 08:43:51
7321	12	560	2026-03-09 08:43:51	2026-03-09 08:43:51
7322	12	561	2026-03-09 08:43:51	2026-03-09 08:43:51
7323	12	562	2026-03-09 08:43:51	2026-03-09 08:43:51
7324	12	563	2026-03-09 08:43:51	2026-03-09 08:43:51
7325	12	199	2026-03-09 08:43:51	2026-03-09 08:43:51
7326	12	690	2026-03-09 08:43:51	2026-03-09 08:43:51
7327	12	344	2026-03-09 08:43:51	2026-03-09 08:43:51
7328	12	345	2026-03-09 08:43:51	2026-03-09 08:43:51
7329	12	691	2026-03-09 08:43:51	2026-03-09 08:43:51
7330	12	696	2026-03-09 08:43:51	2026-03-09 08:43:51
7331	12	697	2026-03-09 08:43:51	2026-03-09 08:43:51
7332	12	174	2026-03-09 08:43:51	2026-03-09 08:43:51
7333	12	176	2026-03-09 08:43:51	2026-03-09 08:43:51
7334	12	177	2026-03-09 08:43:51	2026-03-09 08:43:51
7335	12	178	2026-03-09 08:43:51	2026-03-09 08:43:51
7336	12	179	2026-03-09 08:43:51	2026-03-09 08:43:51
7337	12	180	2026-03-09 08:43:51	2026-03-09 08:43:51
7338	12	181	2026-03-09 08:43:51	2026-03-09 08:43:51
7339	12	182	2026-03-09 08:43:51	2026-03-09 08:43:51
7340	12	183	2026-03-09 08:43:51	2026-03-09 08:43:51
7341	12	184	2026-03-09 08:43:51	2026-03-09 08:43:51
7342	12	185	2026-03-09 08:43:51	2026-03-09 08:43:51
7343	12	186	2026-03-09 08:43:51	2026-03-09 08:43:51
7344	12	187	2026-03-09 08:43:51	2026-03-09 08:43:51
7345	12	188	2026-03-09 08:43:51	2026-03-09 08:43:51
7346	12	189	2026-03-09 08:43:51	2026-03-09 08:43:51
7347	12	190	2026-03-09 08:43:51	2026-03-09 08:43:51
7348	12	191	2026-03-09 08:43:51	2026-03-09 08:43:51
7349	12	192	2026-03-09 08:43:51	2026-03-09 08:43:51
7350	12	193	2026-03-09 08:43:51	2026-03-09 08:43:51
7351	12	194	2026-03-09 08:43:51	2026-03-09 08:43:51
7352	12	195	2026-03-09 08:43:51	2026-03-09 08:43:51
7353	12	196	2026-03-09 08:43:51	2026-03-09 08:43:51
7354	12	197	2026-03-09 08:43:51	2026-03-09 08:43:51
7355	12	198	2026-03-09 08:43:51	2026-03-09 08:43:51
7356	12	200	2026-03-09 08:43:51	2026-03-09 08:43:51
7357	12	201	2026-03-09 08:43:51	2026-03-09 08:43:51
7358	12	202	2026-03-09 08:43:51	2026-03-09 08:43:51
7359	12	203	2026-03-09 08:43:51	2026-03-09 08:43:51
7360	12	204	2026-03-09 08:43:51	2026-03-09 08:43:51
7361	12	205	2026-03-09 08:43:51	2026-03-09 08:43:51
7362	12	206	2026-03-09 08:43:51	2026-03-09 08:43:51
7363	12	207	2026-03-09 08:43:51	2026-03-09 08:43:51
7364	12	208	2026-03-09 08:43:51	2026-03-09 08:43:51
7365	12	209	2026-03-09 08:43:51	2026-03-09 08:43:51
7366	12	210	2026-03-09 08:43:51	2026-03-09 08:43:51
7367	12	211	2026-03-09 08:43:51	2026-03-09 08:43:51
7368	12	212	2026-03-09 08:43:51	2026-03-09 08:43:51
7369	12	213	2026-03-09 08:43:51	2026-03-09 08:43:51
7370	12	215	2026-03-09 08:43:51	2026-03-09 08:43:51
7371	12	335	2026-03-09 08:43:51	2026-03-09 08:43:51
7372	12	336	2026-03-09 08:43:51	2026-03-09 08:43:51
7373	12	337	2026-03-09 08:43:51	2026-03-09 08:43:51
7374	12	338	2026-03-09 08:43:51	2026-03-09 08:43:51
7375	12	381	2026-03-09 08:43:51	2026-03-09 08:43:51
7376	12	382	2026-03-09 08:43:51	2026-03-09 08:43:51
7377	12	383	2026-03-09 08:43:51	2026-03-09 08:43:51
7378	12	175	2026-03-09 08:43:51	2026-03-09 08:43:51
7379	12	214	2026-03-09 08:43:51	2026-03-09 08:43:51
7380	12	216	2026-03-09 08:43:51	2026-03-09 08:43:51
7381	12	217	2026-03-09 08:43:51	2026-03-09 08:43:51
7382	12	218	2026-03-09 08:43:51	2026-03-09 08:43:51
7383	12	219	2026-03-09 08:43:51	2026-03-09 08:43:51
7384	12	220	2026-03-09 08:43:51	2026-03-09 08:43:51
7385	12	221	2026-03-09 08:43:51	2026-03-09 08:43:51
7386	12	222	2026-03-09 08:43:51	2026-03-09 08:43:51
7387	12	223	2026-03-09 08:43:51	2026-03-09 08:43:51
7388	12	533	2026-03-09 08:43:51	2026-03-09 08:43:51
7389	12	534	2026-03-09 08:43:51	2026-03-09 08:43:51
7390	12	539	2026-03-09 08:43:51	2026-03-09 08:43:51
7391	12	535	2026-03-09 08:43:51	2026-03-09 08:43:51
7392	12	558	2026-03-09 08:43:51	2026-03-09 08:43:51
7393	12	559	2026-03-09 08:43:51	2026-03-09 08:43:51
7394	12	647	2026-03-09 08:43:51	2026-03-09 08:43:51
7395	12	667	2026-03-09 08:43:51	2026-03-09 08:43:51
7396	12	668	2026-03-09 08:43:51	2026-03-09 08:43:51
7397	12	673	2026-03-09 08:43:51	2026-03-09 08:43:51
7398	13	14	2026-03-15 16:25:49	2026-03-15 16:25:49
7399	13	15	2026-03-15 16:25:49	2026-03-15 16:25:49
7400	13	16	2026-03-15 16:25:49	2026-03-15 16:25:49
7401	13	17	2026-03-15 16:25:49	2026-03-15 16:25:49
7402	13	18	2026-03-15 16:25:49	2026-03-15 16:25:49
7403	13	19	2026-03-15 16:25:49	2026-03-15 16:25:49
7404	13	20	2026-03-15 16:25:49	2026-03-15 16:25:49
7405	13	21	2026-03-15 16:25:49	2026-03-15 16:25:49
7406	13	22	2026-03-15 16:25:49	2026-03-15 16:25:49
7407	13	23	2026-03-15 16:25:49	2026-03-15 16:25:49
7408	13	24	2026-03-15 16:25:49	2026-03-15 16:25:49
7409	13	448	2026-03-15 16:25:49	2026-03-15 16:25:49
7410	13	441	2026-03-15 16:25:49	2026-03-15 16:25:49
7411	13	442	2026-03-15 16:25:49	2026-03-15 16:25:49
7412	13	546	2026-03-15 16:25:49	2026-03-15 16:25:49
7413	13	584	2026-03-15 16:25:49	2026-03-15 16:25:49
7414	13	614	2026-03-15 16:25:49	2026-03-15 16:25:49
7415	13	615	2026-03-15 16:25:49	2026-03-15 16:25:49
7416	13	617	2026-03-15 16:25:49	2026-03-15 16:25:49
7417	13	618	2026-03-15 16:25:49	2026-03-15 16:25:49
7418	13	224	2026-03-15 16:25:49	2026-03-15 16:25:49
7419	13	225	2026-03-15 16:25:49	2026-03-15 16:25:49
7420	13	226	2026-03-15 16:25:49	2026-03-15 16:25:49
7421	13	227	2026-03-15 16:25:49	2026-03-15 16:25:49
7422	13	228	2026-03-15 16:25:49	2026-03-15 16:25:49
7423	13	229	2026-03-15 16:25:49	2026-03-15 16:25:49
7424	13	230	2026-03-15 16:25:49	2026-03-15 16:25:49
7425	13	231	2026-03-15 16:25:49	2026-03-15 16:25:49
7426	13	232	2026-03-15 16:25:49	2026-03-15 16:25:49
7427	13	233	2026-03-15 16:25:49	2026-03-15 16:25:49
7428	13	359	2026-03-15 16:25:49	2026-03-15 16:25:49
7429	13	360	2026-03-15 16:25:49	2026-03-15 16:25:49
7430	13	234	2026-03-15 16:25:49	2026-03-15 16:25:49
7431	13	235	2026-03-15 16:25:49	2026-03-15 16:25:49
7432	13	236	2026-03-15 16:25:49	2026-03-15 16:25:49
7433	13	237	2026-03-15 16:25:49	2026-03-15 16:25:49
7434	13	238	2026-03-15 16:25:49	2026-03-15 16:25:49
7435	13	239	2026-03-15 16:25:49	2026-03-15 16:25:49
7436	13	240	2026-03-15 16:25:49	2026-03-15 16:25:49
7437	13	241	2026-03-15 16:25:49	2026-03-15 16:25:49
7438	13	242	2026-03-15 16:25:49	2026-03-15 16:25:49
7439	13	243	2026-03-15 16:25:49	2026-03-15 16:25:49
7440	13	244	2026-03-15 16:25:49	2026-03-15 16:25:49
7441	13	245	2026-03-15 16:25:49	2026-03-15 16:25:49
7442	13	246	2026-03-15 16:25:49	2026-03-15 16:25:49
7443	13	247	2026-03-15 16:25:49	2026-03-15 16:25:49
7444	13	248	2026-03-15 16:25:49	2026-03-15 16:25:49
7445	13	249	2026-03-15 16:25:49	2026-03-15 16:25:49
7446	13	250	2026-03-15 16:25:49	2026-03-15 16:25:49
7447	13	251	2026-03-15 16:25:49	2026-03-15 16:25:49
7448	13	252	2026-03-15 16:25:49	2026-03-15 16:25:49
7449	13	253	2026-03-15 16:25:49	2026-03-15 16:25:49
7450	13	254	2026-03-15 16:25:49	2026-03-15 16:25:49
7451	13	255	2026-03-15 16:25:49	2026-03-15 16:25:49
7452	13	256	2026-03-15 16:25:49	2026-03-15 16:25:49
7453	13	257	2026-03-15 16:25:49	2026-03-15 16:25:49
7454	13	258	2026-03-15 16:25:49	2026-03-15 16:25:49
7455	13	259	2026-03-15 16:25:49	2026-03-15 16:25:49
7456	13	260	2026-03-15 16:25:49	2026-03-15 16:25:49
7457	13	261	2026-03-15 16:25:49	2026-03-15 16:25:49
7458	13	262	2026-03-15 16:25:49	2026-03-15 16:25:49
7459	13	263	2026-03-15 16:25:49	2026-03-15 16:25:49
7460	13	264	2026-03-15 16:25:49	2026-03-15 16:25:49
7461	13	509	2026-03-15 16:25:49	2026-03-15 16:25:49
7462	13	265	2026-03-15 16:25:49	2026-03-15 16:25:49
7463	13	266	2026-03-15 16:25:49	2026-03-15 16:25:49
7464	13	267	2026-03-15 16:25:49	2026-03-15 16:25:49
7465	13	268	2026-03-15 16:25:49	2026-03-15 16:25:49
7466	13	269	2026-03-15 16:25:49	2026-03-15 16:25:49
7467	13	270	2026-03-15 16:25:49	2026-03-15 16:25:49
7468	13	271	2026-03-15 16:25:49	2026-03-15 16:25:49
7469	13	272	2026-03-15 16:25:49	2026-03-15 16:25:49
7470	13	273	2026-03-15 16:25:49	2026-03-15 16:25:49
7471	13	274	2026-03-15 16:25:49	2026-03-15 16:25:49
7472	13	275	2026-03-15 16:25:49	2026-03-15 16:25:49
7473	13	276	2026-03-15 16:25:49	2026-03-15 16:25:49
7474	13	277	2026-03-15 16:25:49	2026-03-15 16:25:49
7475	13	278	2026-03-15 16:25:49	2026-03-15 16:25:49
7476	13	279	2026-03-15 16:25:49	2026-03-15 16:25:49
7477	13	280	2026-03-15 16:25:49	2026-03-15 16:25:49
7478	13	281	2026-03-15 16:25:49	2026-03-15 16:25:49
7479	13	282	2026-03-15 16:25:49	2026-03-15 16:25:49
7480	13	283	2026-03-15 16:25:49	2026-03-15 16:25:49
7481	13	284	2026-03-15 16:25:49	2026-03-15 16:25:49
7482	13	285	2026-03-15 16:25:49	2026-03-15 16:25:49
7483	13	286	2026-03-15 16:25:49	2026-03-15 16:25:49
7484	13	287	2026-03-15 16:25:49	2026-03-15 16:25:49
7485	13	288	2026-03-15 16:25:49	2026-03-15 16:25:49
7486	13	289	2026-03-15 16:25:49	2026-03-15 16:25:49
7487	13	294	2026-03-15 16:25:49	2026-03-15 16:25:49
7488	13	295	2026-03-15 16:25:49	2026-03-15 16:25:49
7489	13	296	2026-03-15 16:25:49	2026-03-15 16:25:49
7490	13	297	2026-03-15 16:25:49	2026-03-15 16:25:49
7491	13	500	2026-03-15 16:25:49	2026-03-15 16:25:49
7492	13	501	2026-03-15 16:25:49	2026-03-15 16:25:49
7493	13	502	2026-03-15 16:25:49	2026-03-15 16:25:49
7494	13	510	2026-03-15 16:25:49	2026-03-15 16:25:49
7495	13	511	2026-03-15 16:25:49	2026-03-15 16:25:49
7496	13	512	2026-03-15 16:25:49	2026-03-15 16:25:49
7497	13	567	2026-03-15 16:25:49	2026-03-15 16:25:49
7498	13	594	2026-03-15 16:25:49	2026-03-15 16:25:49
7499	13	679	2026-03-15 16:25:49	2026-03-15 16:25:49
7500	13	709	2026-03-15 16:25:49	2026-03-15 16:25:49
7501	13	298	2026-03-15 16:25:49	2026-03-15 16:25:49
7502	13	299	2026-03-15 16:25:49	2026-03-15 16:25:49
7503	13	300	2026-03-15 16:25:49	2026-03-15 16:25:49
7504	13	310	2026-03-15 16:25:49	2026-03-15 16:25:49
7505	13	311	2026-03-15 16:25:49	2026-03-15 16:25:49
7506	13	312	2026-03-15 16:25:49	2026-03-15 16:25:49
7507	13	313	2026-03-15 16:25:49	2026-03-15 16:25:49
7508	13	314	2026-03-15 16:25:49	2026-03-15 16:25:49
7509	13	315	2026-03-15 16:25:49	2026-03-15 16:25:49
7510	13	316	2026-03-15 16:25:49	2026-03-15 16:25:49
7511	13	317	2026-03-15 16:25:49	2026-03-15 16:25:49
7512	13	318	2026-03-15 16:25:49	2026-03-15 16:25:49
7513	13	358	2026-03-15 16:25:49	2026-03-15 16:25:49
7514	13	365	2026-03-15 16:25:49	2026-03-15 16:25:49
7515	13	350	2026-03-15 16:25:49	2026-03-15 16:25:49
7516	13	351	2026-03-15 16:25:49	2026-03-15 16:25:49
7517	13	352	2026-03-15 16:25:49	2026-03-15 16:25:49
7518	13	353	2026-03-15 16:25:49	2026-03-15 16:25:49
7519	13	354	2026-03-15 16:25:49	2026-03-15 16:25:49
7520	13	355	2026-03-15 16:25:49	2026-03-15 16:25:49
7521	13	356	2026-03-15 16:25:49	2026-03-15 16:25:49
7522	13	357	2026-03-15 16:25:49	2026-03-15 16:25:49
7523	13	392	2026-03-15 16:25:49	2026-03-15 16:25:49
7524	13	396	2026-03-15 16:25:49	2026-03-15 16:25:49
7525	13	301	2026-03-15 16:25:49	2026-03-15 16:25:49
7526	13	302	2026-03-15 16:25:49	2026-03-15 16:25:49
7527	13	303	2026-03-15 16:25:49	2026-03-15 16:25:49
7528	13	304	2026-03-15 16:25:49	2026-03-15 16:25:49
7529	13	305	2026-03-15 16:25:49	2026-03-15 16:25:49
7530	13	306	2026-03-15 16:25:49	2026-03-15 16:25:49
7531	13	307	2026-03-15 16:25:49	2026-03-15 16:25:49
7532	13	308	2026-03-15 16:25:49	2026-03-15 16:25:49
7533	13	309	2026-03-15 16:25:49	2026-03-15 16:25:49
7534	13	590	2026-03-15 16:25:49	2026-03-15 16:25:49
7535	13	591	2026-03-15 16:25:49	2026-03-15 16:25:49
7536	13	319	2026-03-15 16:25:49	2026-03-15 16:25:49
7537	13	320	2026-03-15 16:25:49	2026-03-15 16:25:49
7538	13	321	2026-03-15 16:25:49	2026-03-15 16:25:49
7539	13	322	2026-03-15 16:25:49	2026-03-15 16:25:49
7540	13	323	2026-03-15 16:25:49	2026-03-15 16:25:49
7541	13	324	2026-03-15 16:25:49	2026-03-15 16:25:49
7542	13	325	2026-03-15 16:25:49	2026-03-15 16:25:49
7543	13	326	2026-03-15 16:25:49	2026-03-15 16:25:49
7544	13	327	2026-03-15 16:25:49	2026-03-15 16:25:49
7545	13	328	2026-03-15 16:25:49	2026-03-15 16:25:49
7546	13	676	2026-03-15 16:25:49	2026-03-15 16:25:49
7547	13	339	2026-03-15 16:25:49	2026-03-15 16:25:49
7548	13	385	2026-03-15 16:25:49	2026-03-15 16:25:49
7549	13	386	2026-03-15 16:25:49	2026-03-15 16:25:49
7550	13	387	2026-03-15 16:25:49	2026-03-15 16:25:49
7551	13	388	2026-03-15 16:25:49	2026-03-15 16:25:49
7552	13	389	2026-03-15 16:25:49	2026-03-15 16:25:49
7553	13	390	2026-03-15 16:25:49	2026-03-15 16:25:49
7554	13	391	2026-03-15 16:25:49	2026-03-15 16:25:49
7555	13	555	2026-03-15 16:25:49	2026-03-15 16:25:49
7556	13	556	2026-03-15 16:25:49	2026-03-15 16:25:49
7557	13	557	2026-03-15 16:25:49	2026-03-15 16:25:49
7558	13	455	2026-03-15 16:25:49	2026-03-15 16:25:49
7559	13	456	2026-03-15 16:25:49	2026-03-15 16:25:49
7560	13	457	2026-03-15 16:25:49	2026-03-15 16:25:49
7561	13	458	2026-03-15 16:25:49	2026-03-15 16:25:49
7562	13	459	2026-03-15 16:25:49	2026-03-15 16:25:49
7563	13	460	2026-03-15 16:25:49	2026-03-15 16:25:49
7564	13	461	2026-03-15 16:25:49	2026-03-15 16:25:49
7565	13	462	2026-03-15 16:25:49	2026-03-15 16:25:49
7566	13	463	2026-03-15 16:25:49	2026-03-15 16:25:49
7567	13	465	2026-03-15 16:25:49	2026-03-15 16:25:49
7568	13	466	2026-03-15 16:25:49	2026-03-15 16:25:49
7569	13	467	2026-03-15 16:25:49	2026-03-15 16:25:49
7570	13	468	2026-03-15 16:25:49	2026-03-15 16:25:49
7571	13	469	2026-03-15 16:25:49	2026-03-15 16:25:49
7572	13	470	2026-03-15 16:25:49	2026-03-15 16:25:49
7573	13	471	2026-03-15 16:25:49	2026-03-15 16:25:49
7574	13	472	2026-03-15 16:25:49	2026-03-15 16:25:49
7575	13	473	2026-03-15 16:25:49	2026-03-15 16:25:49
7576	13	474	2026-03-15 16:25:49	2026-03-15 16:25:49
7577	13	476	2026-03-15 16:25:49	2026-03-15 16:25:49
7578	13	478	2026-03-15 16:25:49	2026-03-15 16:25:49
7579	13	479	2026-03-15 16:25:49	2026-03-15 16:25:49
7580	13	475	2026-03-15 16:25:49	2026-03-15 16:25:49
7581	13	710	2026-03-15 16:25:49	2026-03-15 16:25:49
7582	13	714	2026-03-15 16:25:49	2026-03-15 16:25:49
7583	13	715	2026-03-15 16:25:49	2026-03-15 16:25:49
7584	13	716	2026-03-15 16:25:49	2026-03-15 16:25:49
7585	13	717	2026-03-15 16:25:49	2026-03-15 16:25:49
7586	13	718	2026-03-15 16:25:49	2026-03-15 16:25:49
7587	13	719	2026-03-15 16:25:49	2026-03-15 16:25:49
7588	13	720	2026-03-15 16:25:49	2026-03-15 16:25:49
7589	13	721	2026-03-15 16:25:49	2026-03-15 16:25:49
7590	13	722	2026-03-15 16:25:49	2026-03-15 16:25:49
7591	13	723	2026-03-15 16:25:49	2026-03-15 16:25:49
7592	13	724	2026-03-15 16:25:49	2026-03-15 16:25:49
7593	13	725	2026-03-15 16:25:49	2026-03-15 16:25:49
7594	13	726	2026-03-15 16:25:49	2026-03-15 16:25:49
7595	13	727	2026-03-15 16:25:49	2026-03-15 16:25:49
7596	13	728	2026-03-15 16:25:49	2026-03-15 16:25:49
7597	13	729	2026-03-15 16:25:49	2026-03-15 16:25:49
7598	13	736	2026-03-15 16:25:49	2026-03-15 16:25:49
7599	13	737	2026-03-15 16:25:49	2026-03-15 16:25:49
7600	13	738	2026-03-15 16:25:49	2026-03-15 16:25:49
7601	13	739	2026-03-15 16:25:49	2026-03-15 16:25:49
7602	13	740	2026-03-15 16:25:49	2026-03-15 16:25:49
7603	13	741	2026-03-15 16:25:49	2026-03-15 16:25:49
7604	13	742	2026-03-15 16:25:49	2026-03-15 16:25:49
7605	13	743	2026-03-15 16:25:49	2026-03-15 16:25:49
7606	13	744	2026-03-15 16:25:49	2026-03-15 16:25:49
7607	13	746	2026-03-15 16:25:49	2026-03-15 16:25:49
7608	13	747	2026-03-15 16:25:49	2026-03-15 16:25:49
7609	13	25	2026-03-15 16:25:49	2026-03-15 16:25:49
7610	13	487	2026-03-15 16:25:49	2026-03-15 16:25:49
7611	13	488	2026-03-15 16:25:49	2026-03-15 16:25:49
7612	13	489	2026-03-15 16:25:49	2026-03-15 16:25:49
7613	13	490	2026-03-15 16:25:49	2026-03-15 16:25:49
7614	13	491	2026-03-15 16:25:49	2026-03-15 16:25:49
7615	13	551	2026-03-15 16:25:49	2026-03-15 16:25:49
7616	13	552	2026-03-15 16:25:49	2026-03-15 16:25:49
7617	13	568	2026-03-15 16:25:49	2026-03-15 16:25:49
7618	13	569	2026-03-15 16:25:49	2026-03-15 16:25:49
7619	13	570	2026-03-15 16:25:49	2026-03-15 16:25:49
7620	13	492	2026-03-15 16:25:49	2026-03-15 16:25:49
7621	13	493	2026-03-15 16:25:49	2026-03-15 16:25:49
7622	13	494	2026-03-15 16:25:49	2026-03-15 16:25:49
7623	13	495	2026-03-15 16:25:49	2026-03-15 16:25:49
7624	13	497	2026-03-15 16:25:49	2026-03-15 16:25:49
7625	13	496	2026-03-15 16:25:49	2026-03-15 16:25:49
7626	13	572	2026-03-15 16:25:49	2026-03-15 16:25:49
7627	13	573	2026-03-15 16:25:49	2026-03-15 16:25:49
7628	13	574	2026-03-15 16:25:49	2026-03-15 16:25:49
7629	13	575	2026-03-15 16:25:49	2026-03-15 16:25:49
7630	13	622	2026-03-15 16:25:49	2026-03-15 16:25:49
7631	13	378	2026-03-15 16:25:49	2026-03-15 16:25:49
7632	13	528	2026-03-15 16:25:49	2026-03-15 16:25:49
7633	13	595	2026-03-15 16:25:49	2026-03-15 16:25:49
7634	13	596	2026-03-15 16:25:49	2026-03-15 16:25:49
7635	13	597	2026-03-15 16:25:49	2026-03-15 16:25:49
7636	13	598	2026-03-15 16:25:49	2026-03-15 16:25:49
7637	13	599	2026-03-15 16:25:49	2026-03-15 16:25:49
7638	13	600	2026-03-15 16:25:49	2026-03-15 16:25:49
7639	13	601	2026-03-15 16:25:49	2026-03-15 16:25:49
7640	13	602	2026-03-15 16:25:49	2026-03-15 16:25:49
7641	13	603	2026-03-15 16:25:49	2026-03-15 16:25:49
7642	13	604	2026-03-15 16:25:49	2026-03-15 16:25:49
7643	13	605	2026-03-15 16:25:49	2026-03-15 16:25:49
7644	13	606	2026-03-15 16:25:49	2026-03-15 16:25:49
7645	13	607	2026-03-15 16:25:49	2026-03-15 16:25:49
7646	13	608	2026-03-15 16:25:49	2026-03-15 16:25:49
7647	13	609	2026-03-15 16:25:49	2026-03-15 16:25:49
7648	13	610	2026-03-15 16:25:49	2026-03-15 16:25:49
7649	13	611	2026-03-15 16:25:49	2026-03-15 16:25:49
7650	13	612	2026-03-15 16:25:49	2026-03-15 16:25:49
7651	13	613	2026-03-15 16:25:49	2026-03-15 16:25:49
7652	13	677	2026-03-15 16:25:49	2026-03-15 16:25:49
7653	13	678	2026-03-15 16:25:49	2026-03-15 16:25:49
7654	13	706	2026-03-15 16:25:49	2026-03-15 16:25:49
7655	13	707	2026-03-15 16:25:49	2026-03-15 16:25:49
7656	13	623	2026-03-15 16:25:49	2026-03-15 16:25:49
7657	13	624	2026-03-15 16:25:49	2026-03-15 16:25:49
7658	13	625	2026-03-15 16:25:49	2026-03-15 16:25:49
7659	13	626	2026-03-15 16:25:49	2026-03-15 16:25:49
7660	13	627	2026-03-15 16:25:49	2026-03-15 16:25:49
7661	13	628	2026-03-15 16:25:49	2026-03-15 16:25:49
7662	13	629	2026-03-15 16:25:49	2026-03-15 16:25:49
7663	13	630	2026-03-15 16:25:49	2026-03-15 16:25:49
7664	13	631	2026-03-15 16:25:49	2026-03-15 16:25:49
7665	13	632	2026-03-15 16:25:49	2026-03-15 16:25:49
7666	13	633	2026-03-15 16:25:49	2026-03-15 16:25:49
7667	13	634	2026-03-15 16:25:49	2026-03-15 16:25:49
7668	13	635	2026-03-15 16:25:49	2026-03-15 16:25:49
7669	13	636	2026-03-15 16:25:49	2026-03-15 16:25:49
7670	13	637	2026-03-15 16:25:49	2026-03-15 16:25:49
7671	13	638	2026-03-15 16:25:49	2026-03-15 16:25:49
7672	13	659	2026-03-15 16:25:49	2026-03-15 16:25:49
7673	13	639	2026-03-15 16:25:49	2026-03-15 16:25:49
7674	13	640	2026-03-15 16:25:49	2026-03-15 16:25:49
7675	13	641	2026-03-15 16:25:49	2026-03-15 16:25:49
7676	13	642	2026-03-15 16:25:49	2026-03-15 16:25:49
7677	13	643	2026-03-15 16:25:49	2026-03-15 16:25:49
7678	13	644	2026-03-15 16:25:49	2026-03-15 16:25:49
7679	13	645	2026-03-15 16:25:49	2026-03-15 16:25:49
7680	13	646	2026-03-15 16:25:50	2026-03-15 16:25:50
7681	13	700	2026-03-15 16:25:50	2026-03-15 16:25:50
7682	13	701	2026-03-15 16:25:50	2026-03-15 16:25:50
7683	13	702	2026-03-15 16:25:50	2026-03-15 16:25:50
7684	13	703	2026-03-15 16:25:50	2026-03-15 16:25:50
7685	13	704	2026-03-15 16:25:50	2026-03-15 16:25:50
7686	13	705	2026-03-15 16:25:50	2026-03-15 16:25:50
7687	13	745	2026-03-15 16:25:50	2026-03-15 16:25:50
7688	13	748	2026-03-15 16:25:50	2026-03-15 16:25:50
7689	13	749	2026-03-15 16:25:50	2026-03-15 16:25:50
7690	13	750	2026-03-15 16:25:50	2026-03-15 16:25:50
7691	13	751	2026-03-15 16:25:50	2026-03-15 16:25:50
7692	13	752	2026-03-15 16:25:50	2026-03-15 16:25:50
7693	13	753	2026-03-15 16:25:50	2026-03-15 16:25:50
7694	13	754	2026-03-15 16:25:50	2026-03-15 16:25:50
7695	13	755	2026-03-15 16:25:50	2026-03-15 16:25:50
7696	13	756	2026-03-15 16:25:50	2026-03-15 16:25:50
7697	13	757	2026-03-15 16:25:50	2026-03-15 16:25:50
7698	13	758	2026-03-15 16:25:50	2026-03-15 16:25:50
7699	13	759	2026-03-15 16:25:50	2026-03-15 16:25:50
7700	13	760	2026-03-15 16:25:50	2026-03-15 16:25:50
7701	13	761	2026-03-15 16:25:50	2026-03-15 16:25:50
7702	13	762	2026-03-15 16:25:50	2026-03-15 16:25:50
7703	13	763	2026-03-15 16:25:50	2026-03-15 16:25:50
7704	13	764	2026-03-15 16:25:50	2026-03-15 16:25:50
7705	13	765	2026-03-15 16:25:50	2026-03-15 16:25:50
7706	13	766	2026-03-15 16:25:50	2026-03-15 16:25:50
7707	13	767	2026-03-15 16:25:50	2026-03-15 16:25:50
7708	13	768	2026-03-15 16:25:50	2026-03-15 16:25:50
7709	13	769	2026-03-15 16:25:50	2026-03-15 16:25:50
7710	13	26	2026-03-15 16:25:50	2026-03-15 16:25:50
7711	13	28	2026-03-15 16:25:50	2026-03-15 16:25:50
7712	13	29	2026-03-15 16:25:50	2026-03-15 16:25:50
7713	13	30	2026-03-15 16:25:50	2026-03-15 16:25:50
7714	13	31	2026-03-15 16:25:50	2026-03-15 16:25:50
7715	13	32	2026-03-15 16:25:50	2026-03-15 16:25:50
7716	13	33	2026-03-15 16:25:50	2026-03-15 16:25:50
7717	13	367	2026-03-15 16:25:50	2026-03-15 16:25:50
7718	13	368	2026-03-15 16:25:50	2026-03-15 16:25:50
7719	13	369	2026-03-15 16:25:50	2026-03-15 16:25:50
7720	13	370	2026-03-15 16:25:50	2026-03-15 16:25:50
7721	13	371	2026-03-15 16:25:50	2026-03-15 16:25:50
7722	13	373	2026-03-15 16:25:50	2026-03-15 16:25:50
7723	13	395	2026-03-15 16:25:50	2026-03-15 16:25:50
7724	13	39	2026-03-15 16:25:50	2026-03-15 16:25:50
7725	13	379	2026-03-15 16:25:50	2026-03-15 16:25:50
7726	13	380	2026-03-15 16:25:50	2026-03-15 16:25:50
7727	13	34	2026-03-15 16:25:50	2026-03-15 16:25:50
7728	13	35	2026-03-15 16:25:50	2026-03-15 16:25:50
7729	13	36	2026-03-15 16:25:50	2026-03-15 16:25:50
7730	13	37	2026-03-15 16:25:50	2026-03-15 16:25:50
7731	13	38	2026-03-15 16:25:50	2026-03-15 16:25:50
7732	13	424	2026-03-15 16:25:50	2026-03-15 16:25:50
7733	13	425	2026-03-15 16:25:50	2026-03-15 16:25:50
7734	13	427	2026-03-15 16:25:50	2026-03-15 16:25:50
7735	13	443	2026-03-15 16:25:50	2026-03-15 16:25:50
7736	13	449	2026-03-15 16:25:50	2026-03-15 16:25:50
7737	13	453	2026-03-15 16:25:50	2026-03-15 16:25:50
7738	13	454	2026-03-15 16:25:50	2026-03-15 16:25:50
7739	13	464	2026-03-15 16:25:50	2026-03-15 16:25:50
7740	13	450	2026-03-15 16:25:50	2026-03-15 16:25:50
7741	13	498	2026-03-15 16:25:50	2026-03-15 16:25:50
7742	13	499	2026-03-15 16:25:50	2026-03-15 16:25:50
7743	13	513	2026-03-15 16:25:50	2026-03-15 16:25:50
7744	13	514	2026-03-15 16:25:50	2026-03-15 16:25:50
7745	13	515	2026-03-15 16:25:50	2026-03-15 16:25:50
7746	13	516	2026-03-15 16:25:50	2026-03-15 16:25:50
7747	13	517	2026-03-15 16:25:50	2026-03-15 16:25:50
7748	13	518	2026-03-15 16:25:50	2026-03-15 16:25:50
7749	13	520	2026-03-15 16:25:50	2026-03-15 16:25:50
7750	13	521	2026-03-15 16:25:50	2026-03-15 16:25:50
7751	13	522	2026-03-15 16:25:50	2026-03-15 16:25:50
7752	13	523	2026-03-15 16:25:50	2026-03-15 16:25:50
7753	13	531	2026-03-15 16:25:50	2026-03-15 16:25:50
7754	13	547	2026-03-15 16:25:50	2026-03-15 16:25:50
7755	13	548	2026-03-15 16:25:50	2026-03-15 16:25:50
7756	13	549	2026-03-15 16:25:50	2026-03-15 16:25:50
7757	13	550	2026-03-15 16:25:50	2026-03-15 16:25:50
7758	13	553	2026-03-15 16:25:50	2026-03-15 16:25:50
7759	13	554	2026-03-15 16:25:50	2026-03-15 16:25:50
7760	13	586	2026-03-15 16:25:50	2026-03-15 16:25:50
7761	13	593	2026-03-15 16:25:50	2026-03-15 16:25:50
7762	13	652	2026-03-15 16:25:50	2026-03-15 16:25:50
7763	13	653	2026-03-15 16:25:50	2026-03-15 16:25:50
7764	13	654	2026-03-15 16:25:50	2026-03-15 16:25:50
7765	13	655	2026-03-15 16:25:50	2026-03-15 16:25:50
7766	13	656	2026-03-15 16:25:50	2026-03-15 16:25:50
7767	13	657	2026-03-15 16:25:50	2026-03-15 16:25:50
7768	13	658	2026-03-15 16:25:50	2026-03-15 16:25:50
7769	13	682	2026-03-15 16:25:50	2026-03-15 16:25:50
7770	13	683	2026-03-15 16:25:50	2026-03-15 16:25:50
7771	13	684	2026-03-15 16:25:50	2026-03-15 16:25:50
7772	13	685	2026-03-15 16:25:50	2026-03-15 16:25:50
7773	13	686	2026-03-15 16:25:50	2026-03-15 16:25:50
7774	13	687	2026-03-15 16:25:50	2026-03-15 16:25:50
7775	13	688	2026-03-15 16:25:50	2026-03-15 16:25:50
7776	13	27	2026-03-15 16:25:50	2026-03-15 16:25:50
7777	13	692	2026-03-15 16:25:50	2026-03-15 16:25:50
7778	13	708	2026-03-15 16:25:50	2026-03-15 16:25:50
7779	13	731	2026-03-15 16:25:50	2026-03-15 16:25:50
7780	13	732	2026-03-15 16:25:50	2026-03-15 16:25:50
7781	13	40	2026-03-15 16:25:50	2026-03-15 16:25:50
7782	13	44	2026-03-15 16:25:50	2026-03-15 16:25:50
7783	13	45	2026-03-15 16:25:50	2026-03-15 16:25:50
7784	13	46	2026-03-15 16:25:50	2026-03-15 16:25:50
7785	13	47	2026-03-15 16:25:50	2026-03-15 16:25:50
7786	13	48	2026-03-15 16:25:50	2026-03-15 16:25:50
7787	13	49	2026-03-15 16:25:50	2026-03-15 16:25:50
7788	13	50	2026-03-15 16:25:50	2026-03-15 16:25:50
7789	13	51	2026-03-15 16:25:50	2026-03-15 16:25:50
7790	13	52	2026-03-15 16:25:50	2026-03-15 16:25:50
7791	13	372	2026-03-15 16:25:50	2026-03-15 16:25:50
7792	13	384	2026-03-15 16:25:50	2026-03-15 16:25:50
7793	13	41	2026-03-15 16:25:50	2026-03-15 16:25:50
7794	13	42	2026-03-15 16:25:50	2026-03-15 16:25:50
7795	13	43	2026-03-15 16:25:50	2026-03-15 16:25:50
7796	13	529	2026-03-15 16:25:50	2026-03-15 16:25:50
7797	13	526	2026-03-15 16:25:50	2026-03-15 16:25:50
7798	13	525	2026-03-15 16:25:50	2026-03-15 16:25:50
7799	13	527	2026-03-15 16:25:50	2026-03-15 16:25:50
7800	13	530	2026-03-15 16:25:50	2026-03-15 16:25:50
7801	13	519	2026-03-15 16:25:50	2026-03-15 16:25:50
7802	13	587	2026-03-15 16:25:50	2026-03-15 16:25:50
7803	13	592	2026-03-15 16:25:50	2026-03-15 16:25:50
7804	13	648	2026-03-15 16:25:50	2026-03-15 16:25:50
7805	13	524	2026-03-15 16:25:50	2026-03-15 16:25:50
7806	13	588	2026-03-15 16:25:50	2026-03-15 16:25:50
7807	13	616	2026-03-15 16:25:50	2026-03-15 16:25:50
7808	13	452	2026-03-15 16:25:50	2026-03-15 16:25:50
7809	13	589	2026-03-15 16:25:50	2026-03-15 16:25:50
7810	13	665	2026-03-15 16:25:50	2026-03-15 16:25:50
7811	13	693	2026-03-15 16:25:50	2026-03-15 16:25:50
7812	13	694	2026-03-15 16:25:50	2026-03-15 16:25:50
7813	13	695	2026-03-15 16:25:50	2026-03-15 16:25:50
7814	13	53	2026-03-15 16:25:50	2026-03-15 16:25:50
7815	13	54	2026-03-15 16:25:50	2026-03-15 16:25:50
7816	13	55	2026-03-15 16:25:50	2026-03-15 16:25:50
7817	13	56	2026-03-15 16:25:50	2026-03-15 16:25:50
7818	13	57	2026-03-15 16:25:50	2026-03-15 16:25:50
7819	13	58	2026-03-15 16:25:50	2026-03-15 16:25:50
7820	13	59	2026-03-15 16:25:50	2026-03-15 16:25:50
7821	13	60	2026-03-15 16:25:50	2026-03-15 16:25:50
7822	13	61	2026-03-15 16:25:50	2026-03-15 16:25:50
7823	13	62	2026-03-15 16:25:50	2026-03-15 16:25:50
7824	13	63	2026-03-15 16:25:50	2026-03-15 16:25:50
7825	13	64	2026-03-15 16:25:50	2026-03-15 16:25:50
7826	13	65	2026-03-15 16:25:50	2026-03-15 16:25:50
7827	13	66	2026-03-15 16:25:50	2026-03-15 16:25:50
7828	13	67	2026-03-15 16:25:50	2026-03-15 16:25:50
7829	13	68	2026-03-15 16:25:50	2026-03-15 16:25:50
7830	13	69	2026-03-15 16:25:50	2026-03-15 16:25:50
7831	13	70	2026-03-15 16:25:50	2026-03-15 16:25:50
7832	13	71	2026-03-15 16:25:50	2026-03-15 16:25:50
7833	13	72	2026-03-15 16:25:50	2026-03-15 16:25:50
7834	13	73	2026-03-15 16:25:50	2026-03-15 16:25:50
7835	13	74	2026-03-15 16:25:50	2026-03-15 16:25:50
7836	13	75	2026-03-15 16:25:50	2026-03-15 16:25:50
7837	13	76	2026-03-15 16:25:50	2026-03-15 16:25:50
7838	13	77	2026-03-15 16:25:50	2026-03-15 16:25:50
7839	13	432	2026-03-15 16:25:50	2026-03-15 16:25:50
7840	13	433	2026-03-15 16:25:50	2026-03-15 16:25:50
7841	13	434	2026-03-15 16:25:50	2026-03-15 16:25:50
7842	13	435	2026-03-15 16:25:50	2026-03-15 16:25:50
7843	13	436	2026-03-15 16:25:50	2026-03-15 16:25:50
7844	13	437	2026-03-15 16:25:50	2026-03-15 16:25:50
7845	13	438	2026-03-15 16:25:50	2026-03-15 16:25:50
7846	13	439	2026-03-15 16:25:50	2026-03-15 16:25:50
7847	13	440	2026-03-15 16:25:50	2026-03-15 16:25:50
7848	13	451	2026-03-15 16:25:50	2026-03-15 16:25:50
7849	13	477	2026-03-15 16:25:50	2026-03-15 16:25:50
7850	13	585	2026-03-15 16:25:50	2026-03-15 16:25:50
7851	13	669	2026-03-15 16:25:50	2026-03-15 16:25:50
7852	13	670	2026-03-15 16:25:50	2026-03-15 16:25:50
7853	13	671	2026-03-15 16:25:50	2026-03-15 16:25:50
7854	13	672	2026-03-15 16:25:50	2026-03-15 16:25:50
7855	13	680	2026-03-15 16:25:50	2026-03-15 16:25:50
7856	13	681	2026-03-15 16:25:50	2026-03-15 16:25:50
7857	13	689	2026-03-15 16:25:50	2026-03-15 16:25:50
7858	13	698	2026-03-15 16:25:50	2026-03-15 16:25:50
7859	13	699	2026-03-15 16:25:50	2026-03-15 16:25:50
7860	13	711	2026-03-15 16:25:50	2026-03-15 16:25:50
7861	13	712	2026-03-15 16:25:50	2026-03-15 16:25:50
7862	13	713	2026-03-15 16:25:50	2026-03-15 16:25:50
7863	13	730	2026-03-15 16:25:50	2026-03-15 16:25:50
7864	13	78	2026-03-15 16:25:50	2026-03-15 16:25:50
7865	13	79	2026-03-15 16:25:50	2026-03-15 16:25:50
7866	13	80	2026-03-15 16:25:50	2026-03-15 16:25:50
7867	13	81	2026-03-15 16:25:50	2026-03-15 16:25:50
7868	13	82	2026-03-15 16:25:50	2026-03-15 16:25:50
7869	13	83	2026-03-15 16:25:50	2026-03-15 16:25:50
7870	13	84	2026-03-15 16:25:50	2026-03-15 16:25:50
7871	13	85	2026-03-15 16:25:50	2026-03-15 16:25:50
7872	13	86	2026-03-15 16:25:50	2026-03-15 16:25:50
7873	13	87	2026-03-15 16:25:50	2026-03-15 16:25:50
7874	13	88	2026-03-15 16:25:50	2026-03-15 16:25:50
7875	13	89	2026-03-15 16:25:50	2026-03-15 16:25:50
7876	13	90	2026-03-15 16:25:50	2026-03-15 16:25:50
7877	13	91	2026-03-15 16:25:50	2026-03-15 16:25:50
7878	13	92	2026-03-15 16:25:50	2026-03-15 16:25:50
7879	13	93	2026-03-15 16:25:50	2026-03-15 16:25:50
7880	13	94	2026-03-15 16:25:50	2026-03-15 16:25:50
7881	13	374	2026-03-15 16:25:50	2026-03-15 16:25:50
7882	13	375	2026-03-15 16:25:50	2026-03-15 16:25:50
7883	13	393	2026-03-15 16:25:50	2026-03-15 16:25:50
7884	13	394	2026-03-15 16:25:50	2026-03-15 16:25:50
7885	13	397	2026-03-15 16:25:50	2026-03-15 16:25:50
7886	13	398	2026-03-15 16:25:50	2026-03-15 16:25:50
7887	13	541	2026-03-15 16:25:50	2026-03-15 16:25:50
7888	13	543	2026-03-15 16:25:50	2026-03-15 16:25:50
7889	13	545	2026-03-15 16:25:50	2026-03-15 16:25:50
7890	13	571	2026-03-15 16:25:50	2026-03-15 16:25:50
7891	13	735	2026-03-15 16:25:50	2026-03-15 16:25:50
7892	13	95	2026-03-15 16:25:50	2026-03-15 16:25:50
7893	13	96	2026-03-15 16:25:50	2026-03-15 16:25:50
7894	13	97	2026-03-15 16:25:50	2026-03-15 16:25:50
7895	13	98	2026-03-15 16:25:50	2026-03-15 16:25:50
7896	13	99	2026-03-15 16:25:50	2026-03-15 16:25:50
7897	13	100	2026-03-15 16:25:50	2026-03-15 16:25:50
7898	13	101	2026-03-15 16:25:50	2026-03-15 16:25:50
7899	13	102	2026-03-15 16:25:50	2026-03-15 16:25:50
7900	13	103	2026-03-15 16:25:50	2026-03-15 16:25:50
7901	13	104	2026-03-15 16:25:50	2026-03-15 16:25:50
7902	13	361	2026-03-15 16:25:50	2026-03-15 16:25:50
7903	13	362	2026-03-15 16:25:50	2026-03-15 16:25:50
7904	13	363	2026-03-15 16:25:50	2026-03-15 16:25:50
7905	13	364	2026-03-15 16:25:50	2026-03-15 16:25:50
7906	13	366	2026-03-15 16:25:50	2026-03-15 16:25:50
7907	13	376	2026-03-15 16:25:50	2026-03-15 16:25:50
7908	13	377	2026-03-15 16:25:50	2026-03-15 16:25:50
7909	13	105	2026-03-15 16:25:50	2026-03-15 16:25:50
7910	13	106	2026-03-15 16:25:50	2026-03-15 16:25:50
7911	13	107	2026-03-15 16:25:50	2026-03-15 16:25:50
7912	13	108	2026-03-15 16:25:50	2026-03-15 16:25:50
7913	13	109	2026-03-15 16:25:50	2026-03-15 16:25:50
7914	13	110	2026-03-15 16:25:50	2026-03-15 16:25:50
7915	13	111	2026-03-15 16:25:50	2026-03-15 16:25:50
7916	13	112	2026-03-15 16:25:50	2026-03-15 16:25:50
7917	13	113	2026-03-15 16:25:50	2026-03-15 16:25:50
7918	13	114	2026-03-15 16:25:50	2026-03-15 16:25:50
7919	13	115	2026-03-15 16:25:50	2026-03-15 16:25:50
7920	13	116	2026-03-15 16:25:50	2026-03-15 16:25:50
7921	13	117	2026-03-15 16:25:50	2026-03-15 16:25:50
7922	13	428	2026-03-15 16:25:50	2026-03-15 16:25:50
7923	13	429	2026-03-15 16:25:50	2026-03-15 16:25:50
7924	13	430	2026-03-15 16:25:50	2026-03-15 16:25:50
7925	13	431	2026-03-15 16:25:50	2026-03-15 16:25:50
7926	13	444	2026-03-15 16:25:50	2026-03-15 16:25:50
7927	13	445	2026-03-15 16:25:50	2026-03-15 16:25:50
7928	13	446	2026-03-15 16:25:50	2026-03-15 16:25:50
7929	13	447	2026-03-15 16:25:50	2026-03-15 16:25:50
7930	13	507	2026-03-15 16:25:50	2026-03-15 16:25:50
7931	13	508	2026-03-15 16:25:50	2026-03-15 16:25:50
7932	13	532	2026-03-15 16:25:50	2026-03-15 16:25:50
7933	13	540	2026-03-15 16:25:50	2026-03-15 16:25:50
7934	13	542	2026-03-15 16:25:50	2026-03-15 16:25:50
7935	13	544	2026-03-15 16:25:50	2026-03-15 16:25:50
7936	13	564	2026-03-15 16:25:50	2026-03-15 16:25:50
7937	13	565	2026-03-15 16:25:50	2026-03-15 16:25:50
7938	13	566	2026-03-15 16:25:50	2026-03-15 16:25:50
7939	13	619	2026-03-15 16:25:50	2026-03-15 16:25:50
7940	13	620	2026-03-15 16:25:50	2026-03-15 16:25:50
7941	13	621	2026-03-15 16:25:50	2026-03-15 16:25:50
7942	13	649	2026-03-15 16:25:50	2026-03-15 16:25:50
7943	13	650	2026-03-15 16:25:50	2026-03-15 16:25:50
7944	13	651	2026-03-15 16:25:50	2026-03-15 16:25:50
7945	13	660	2026-03-15 16:25:50	2026-03-15 16:25:50
7946	13	661	2026-03-15 16:25:50	2026-03-15 16:25:50
7947	13	662	2026-03-15 16:25:50	2026-03-15 16:25:50
7948	13	663	2026-03-15 16:25:50	2026-03-15 16:25:50
7949	13	664	2026-03-15 16:25:50	2026-03-15 16:25:50
7950	13	666	2026-03-15 16:25:50	2026-03-15 16:25:50
7951	13	674	2026-03-15 16:25:50	2026-03-15 16:25:50
7952	13	675	2026-03-15 16:25:50	2026-03-15 16:25:50
7953	13	733	2026-03-15 16:25:50	2026-03-15 16:25:50
7954	13	734	2026-03-15 16:25:50	2026-03-15 16:25:50
7955	13	118	2026-03-15 16:25:50	2026-03-15 16:25:50
7956	13	119	2026-03-15 16:25:50	2026-03-15 16:25:50
7957	13	120	2026-03-15 16:25:50	2026-03-15 16:25:50
7958	13	121	2026-03-15 16:25:50	2026-03-15 16:25:50
7959	13	122	2026-03-15 16:25:50	2026-03-15 16:25:50
7960	13	123	2026-03-15 16:25:50	2026-03-15 16:25:50
7961	13	124	2026-03-15 16:25:50	2026-03-15 16:25:50
7962	13	125	2026-03-15 16:25:50	2026-03-15 16:25:50
7963	13	126	2026-03-15 16:25:50	2026-03-15 16:25:50
7964	13	127	2026-03-15 16:25:50	2026-03-15 16:25:50
7965	13	128	2026-03-15 16:25:50	2026-03-15 16:25:50
7966	13	129	2026-03-15 16:25:50	2026-03-15 16:25:50
7967	13	130	2026-03-15 16:25:50	2026-03-15 16:25:50
7968	13	329	2026-03-15 16:25:50	2026-03-15 16:25:50
7969	13	330	2026-03-15 16:25:50	2026-03-15 16:25:50
7970	13	331	2026-03-15 16:25:50	2026-03-15 16:25:50
7971	13	332	2026-03-15 16:25:50	2026-03-15 16:25:50
7972	13	333	2026-03-15 16:25:50	2026-03-15 16:25:50
7973	13	334	2026-03-15 16:25:50	2026-03-15 16:25:50
7974	13	340	2026-03-15 16:25:50	2026-03-15 16:25:50
7975	13	131	2026-03-15 16:25:50	2026-03-15 16:25:50
7976	13	132	2026-03-15 16:25:50	2026-03-15 16:25:50
7977	13	133	2026-03-15 16:25:50	2026-03-15 16:25:50
7978	13	134	2026-03-15 16:25:50	2026-03-15 16:25:50
7979	13	135	2026-03-15 16:25:50	2026-03-15 16:25:50
7980	13	136	2026-03-15 16:25:50	2026-03-15 16:25:50
7981	13	137	2026-03-15 16:25:50	2026-03-15 16:25:50
7982	13	138	2026-03-15 16:25:50	2026-03-15 16:25:50
7983	13	139	2026-03-15 16:25:50	2026-03-15 16:25:50
7984	13	140	2026-03-15 16:25:50	2026-03-15 16:25:50
7985	13	141	2026-03-15 16:25:50	2026-03-15 16:25:50
7986	13	142	2026-03-15 16:25:50	2026-03-15 16:25:50
7987	13	143	2026-03-15 16:25:50	2026-03-15 16:25:50
7988	13	144	2026-03-15 16:25:50	2026-03-15 16:25:50
7989	13	145	2026-03-15 16:25:50	2026-03-15 16:25:50
7990	13	146	2026-03-15 16:25:50	2026-03-15 16:25:50
7991	13	147	2026-03-15 16:25:50	2026-03-15 16:25:50
7992	13	148	2026-03-15 16:25:50	2026-03-15 16:25:50
7993	13	149	2026-03-15 16:25:50	2026-03-15 16:25:50
7994	13	150	2026-03-15 16:25:50	2026-03-15 16:25:50
7995	13	151	2026-03-15 16:25:50	2026-03-15 16:25:50
7996	13	152	2026-03-15 16:25:50	2026-03-15 16:25:50
7997	13	153	2026-03-15 16:25:50	2026-03-15 16:25:50
7998	13	154	2026-03-15 16:25:50	2026-03-15 16:25:50
7999	13	155	2026-03-15 16:25:50	2026-03-15 16:25:50
8000	13	156	2026-03-15 16:25:50	2026-03-15 16:25:50
8001	13	157	2026-03-15 16:25:50	2026-03-15 16:25:50
8002	13	158	2026-03-15 16:25:50	2026-03-15 16:25:50
8003	13	159	2026-03-15 16:25:50	2026-03-15 16:25:50
8004	13	160	2026-03-15 16:25:50	2026-03-15 16:25:50
8005	13	161	2026-03-15 16:25:50	2026-03-15 16:25:50
8006	13	162	2026-03-15 16:25:50	2026-03-15 16:25:50
8007	13	163	2026-03-15 16:25:50	2026-03-15 16:25:50
8008	13	164	2026-03-15 16:25:50	2026-03-15 16:25:50
8009	13	165	2026-03-15 16:25:50	2026-03-15 16:25:50
8010	13	166	2026-03-15 16:25:50	2026-03-15 16:25:50
8011	13	167	2026-03-15 16:25:50	2026-03-15 16:25:50
8012	13	168	2026-03-15 16:25:50	2026-03-15 16:25:50
8013	13	169	2026-03-15 16:25:50	2026-03-15 16:25:50
8014	13	170	2026-03-15 16:25:50	2026-03-15 16:25:50
8015	13	171	2026-03-15 16:25:50	2026-03-15 16:25:50
8016	13	172	2026-03-15 16:25:50	2026-03-15 16:25:50
8017	13	173	2026-03-15 16:25:50	2026-03-15 16:25:50
8018	13	426	2026-03-15 16:25:50	2026-03-15 16:25:50
8019	13	341	2026-03-15 16:25:50	2026-03-15 16:25:50
8020	13	342	2026-03-15 16:25:50	2026-03-15 16:25:50
8021	13	343	2026-03-15 16:25:50	2026-03-15 16:25:50
8022	13	346	2026-03-15 16:25:50	2026-03-15 16:25:50
8023	13	347	2026-03-15 16:25:50	2026-03-15 16:25:50
8024	13	348	2026-03-15 16:25:50	2026-03-15 16:25:50
8025	13	349	2026-03-15 16:25:50	2026-03-15 16:25:50
8026	13	536	2026-03-15 16:25:50	2026-03-15 16:25:50
8027	13	537	2026-03-15 16:25:50	2026-03-15 16:25:50
8028	13	538	2026-03-15 16:25:50	2026-03-15 16:25:50
8029	13	560	2026-03-15 16:25:50	2026-03-15 16:25:50
8030	13	561	2026-03-15 16:25:50	2026-03-15 16:25:50
8031	13	562	2026-03-15 16:25:50	2026-03-15 16:25:50
8032	13	563	2026-03-15 16:25:50	2026-03-15 16:25:50
8033	13	199	2026-03-15 16:25:50	2026-03-15 16:25:50
8034	13	690	2026-03-15 16:25:50	2026-03-15 16:25:50
8035	13	344	2026-03-15 16:25:50	2026-03-15 16:25:50
8036	13	345	2026-03-15 16:25:50	2026-03-15 16:25:50
8037	13	691	2026-03-15 16:25:50	2026-03-15 16:25:50
8038	13	696	2026-03-15 16:25:50	2026-03-15 16:25:50
8039	13	697	2026-03-15 16:25:50	2026-03-15 16:25:50
8040	13	174	2026-03-15 16:25:50	2026-03-15 16:25:50
8041	13	176	2026-03-15 16:25:50	2026-03-15 16:25:50
8042	13	177	2026-03-15 16:25:50	2026-03-15 16:25:50
8043	13	178	2026-03-15 16:25:50	2026-03-15 16:25:50
8044	13	179	2026-03-15 16:25:50	2026-03-15 16:25:50
8045	13	180	2026-03-15 16:25:50	2026-03-15 16:25:50
8046	13	181	2026-03-15 16:25:50	2026-03-15 16:25:50
8047	13	182	2026-03-15 16:25:50	2026-03-15 16:25:50
8048	13	183	2026-03-15 16:25:51	2026-03-15 16:25:51
8049	13	184	2026-03-15 16:25:51	2026-03-15 16:25:51
8050	13	185	2026-03-15 16:25:51	2026-03-15 16:25:51
8051	13	186	2026-03-15 16:25:51	2026-03-15 16:25:51
8052	13	187	2026-03-15 16:25:51	2026-03-15 16:25:51
8053	13	188	2026-03-15 16:25:51	2026-03-15 16:25:51
8054	13	189	2026-03-15 16:25:51	2026-03-15 16:25:51
8055	13	190	2026-03-15 16:25:51	2026-03-15 16:25:51
8056	13	191	2026-03-15 16:25:51	2026-03-15 16:25:51
8057	13	192	2026-03-15 16:25:51	2026-03-15 16:25:51
8058	13	193	2026-03-15 16:25:51	2026-03-15 16:25:51
8059	13	194	2026-03-15 16:25:51	2026-03-15 16:25:51
8060	13	195	2026-03-15 16:25:51	2026-03-15 16:25:51
8061	13	196	2026-03-15 16:25:51	2026-03-15 16:25:51
8062	13	197	2026-03-15 16:25:51	2026-03-15 16:25:51
8063	13	198	2026-03-15 16:25:51	2026-03-15 16:25:51
8064	13	200	2026-03-15 16:25:51	2026-03-15 16:25:51
8065	13	201	2026-03-15 16:25:51	2026-03-15 16:25:51
8066	13	202	2026-03-15 16:25:51	2026-03-15 16:25:51
8067	13	203	2026-03-15 16:25:51	2026-03-15 16:25:51
8068	13	204	2026-03-15 16:25:51	2026-03-15 16:25:51
8069	13	205	2026-03-15 16:25:51	2026-03-15 16:25:51
8070	13	206	2026-03-15 16:25:51	2026-03-15 16:25:51
8071	13	207	2026-03-15 16:25:51	2026-03-15 16:25:51
8072	13	208	2026-03-15 16:25:51	2026-03-15 16:25:51
8073	13	209	2026-03-15 16:25:51	2026-03-15 16:25:51
8074	13	210	2026-03-15 16:25:51	2026-03-15 16:25:51
8075	13	211	2026-03-15 16:25:51	2026-03-15 16:25:51
8076	13	212	2026-03-15 16:25:51	2026-03-15 16:25:51
8077	13	213	2026-03-15 16:25:51	2026-03-15 16:25:51
8078	13	215	2026-03-15 16:25:51	2026-03-15 16:25:51
8079	13	335	2026-03-15 16:25:51	2026-03-15 16:25:51
8080	13	336	2026-03-15 16:25:51	2026-03-15 16:25:51
8081	13	337	2026-03-15 16:25:51	2026-03-15 16:25:51
8082	13	338	2026-03-15 16:25:51	2026-03-15 16:25:51
8083	13	381	2026-03-15 16:25:51	2026-03-15 16:25:51
8084	13	382	2026-03-15 16:25:51	2026-03-15 16:25:51
8085	13	383	2026-03-15 16:25:51	2026-03-15 16:25:51
8086	13	175	2026-03-15 16:25:51	2026-03-15 16:25:51
8087	13	214	2026-03-15 16:25:51	2026-03-15 16:25:51
8088	13	216	2026-03-15 16:25:51	2026-03-15 16:25:51
8089	13	217	2026-03-15 16:25:51	2026-03-15 16:25:51
8090	13	218	2026-03-15 16:25:51	2026-03-15 16:25:51
8091	13	219	2026-03-15 16:25:51	2026-03-15 16:25:51
8092	13	220	2026-03-15 16:25:51	2026-03-15 16:25:51
8093	13	221	2026-03-15 16:25:51	2026-03-15 16:25:51
8094	13	222	2026-03-15 16:25:51	2026-03-15 16:25:51
8095	13	223	2026-03-15 16:25:51	2026-03-15 16:25:51
8096	13	533	2026-03-15 16:25:51	2026-03-15 16:25:51
8097	13	534	2026-03-15 16:25:51	2026-03-15 16:25:51
8098	13	539	2026-03-15 16:25:51	2026-03-15 16:25:51
8099	13	535	2026-03-15 16:25:51	2026-03-15 16:25:51
8100	13	558	2026-03-15 16:25:51	2026-03-15 16:25:51
8101	13	559	2026-03-15 16:25:51	2026-03-15 16:25:51
8102	13	647	2026-03-15 16:25:51	2026-03-15 16:25:51
8103	13	667	2026-03-15 16:25:51	2026-03-15 16:25:51
8104	13	668	2026-03-15 16:25:51	2026-03-15 16:25:51
8105	13	673	2026-03-15 16:25:51	2026-03-15 16:25:51
8106	14	14	2026-04-24 16:11:12	2026-04-24 16:11:12
8107	14	15	2026-04-24 16:11:12	2026-04-24 16:11:12
8108	14	16	2026-04-24 16:11:12	2026-04-24 16:11:12
8109	14	17	2026-04-24 16:11:12	2026-04-24 16:11:12
8110	14	18	2026-04-24 16:11:12	2026-04-24 16:11:12
8111	14	19	2026-04-24 16:11:12	2026-04-24 16:11:12
8112	14	20	2026-04-24 16:11:12	2026-04-24 16:11:12
8113	14	21	2026-04-24 16:11:12	2026-04-24 16:11:12
8114	14	22	2026-04-24 16:11:12	2026-04-24 16:11:12
8115	14	23	2026-04-24 16:11:12	2026-04-24 16:11:12
8116	14	24	2026-04-24 16:11:12	2026-04-24 16:11:12
8117	14	448	2026-04-24 16:11:12	2026-04-24 16:11:12
8118	14	441	2026-04-24 16:11:12	2026-04-24 16:11:12
8119	14	442	2026-04-24 16:11:12	2026-04-24 16:11:12
8120	14	546	2026-04-24 16:11:12	2026-04-24 16:11:12
8121	14	584	2026-04-24 16:11:12	2026-04-24 16:11:12
8122	14	614	2026-04-24 16:11:12	2026-04-24 16:11:12
8123	14	615	2026-04-24 16:11:12	2026-04-24 16:11:12
8124	14	617	2026-04-24 16:11:12	2026-04-24 16:11:12
8125	14	618	2026-04-24 16:11:12	2026-04-24 16:11:12
8126	14	224	2026-04-24 16:11:12	2026-04-24 16:11:12
8127	14	225	2026-04-24 16:11:12	2026-04-24 16:11:12
8128	14	226	2026-04-24 16:11:12	2026-04-24 16:11:12
8129	14	227	2026-04-24 16:11:12	2026-04-24 16:11:12
8130	14	228	2026-04-24 16:11:12	2026-04-24 16:11:12
8131	14	229	2026-04-24 16:11:12	2026-04-24 16:11:12
8132	14	230	2026-04-24 16:11:12	2026-04-24 16:11:12
8133	14	231	2026-04-24 16:11:12	2026-04-24 16:11:12
8134	14	232	2026-04-24 16:11:12	2026-04-24 16:11:12
8135	14	233	2026-04-24 16:11:12	2026-04-24 16:11:12
8136	14	359	2026-04-24 16:11:12	2026-04-24 16:11:12
8137	14	360	2026-04-24 16:11:12	2026-04-24 16:11:12
8138	14	234	2026-04-24 16:11:12	2026-04-24 16:11:12
8139	14	235	2026-04-24 16:11:12	2026-04-24 16:11:12
8140	14	236	2026-04-24 16:11:12	2026-04-24 16:11:12
8141	14	237	2026-04-24 16:11:12	2026-04-24 16:11:12
8142	14	238	2026-04-24 16:11:12	2026-04-24 16:11:12
8143	14	239	2026-04-24 16:11:12	2026-04-24 16:11:12
8144	14	240	2026-04-24 16:11:12	2026-04-24 16:11:12
8145	14	241	2026-04-24 16:11:12	2026-04-24 16:11:12
8146	14	242	2026-04-24 16:11:12	2026-04-24 16:11:12
8147	14	243	2026-04-24 16:11:12	2026-04-24 16:11:12
8148	14	244	2026-04-24 16:11:12	2026-04-24 16:11:12
8149	14	245	2026-04-24 16:11:12	2026-04-24 16:11:12
8150	14	246	2026-04-24 16:11:12	2026-04-24 16:11:12
8151	14	247	2026-04-24 16:11:12	2026-04-24 16:11:12
8152	14	248	2026-04-24 16:11:12	2026-04-24 16:11:12
8153	14	249	2026-04-24 16:11:12	2026-04-24 16:11:12
8154	14	250	2026-04-24 16:11:12	2026-04-24 16:11:12
8155	14	251	2026-04-24 16:11:12	2026-04-24 16:11:12
8156	14	252	2026-04-24 16:11:12	2026-04-24 16:11:12
8157	14	253	2026-04-24 16:11:12	2026-04-24 16:11:12
8158	14	254	2026-04-24 16:11:12	2026-04-24 16:11:12
8159	14	255	2026-04-24 16:11:12	2026-04-24 16:11:12
8160	14	256	2026-04-24 16:11:12	2026-04-24 16:11:12
8161	14	257	2026-04-24 16:11:12	2026-04-24 16:11:12
8162	14	258	2026-04-24 16:11:12	2026-04-24 16:11:12
8163	14	259	2026-04-24 16:11:12	2026-04-24 16:11:12
8164	14	260	2026-04-24 16:11:12	2026-04-24 16:11:12
8165	14	261	2026-04-24 16:11:12	2026-04-24 16:11:12
8166	14	262	2026-04-24 16:11:12	2026-04-24 16:11:12
8167	14	263	2026-04-24 16:11:12	2026-04-24 16:11:12
8168	14	264	2026-04-24 16:11:12	2026-04-24 16:11:12
8169	14	509	2026-04-24 16:11:12	2026-04-24 16:11:12
8170	14	265	2026-04-24 16:11:12	2026-04-24 16:11:12
8171	14	266	2026-04-24 16:11:12	2026-04-24 16:11:12
8172	14	267	2026-04-24 16:11:12	2026-04-24 16:11:12
8173	14	268	2026-04-24 16:11:12	2026-04-24 16:11:12
8174	14	269	2026-04-24 16:11:12	2026-04-24 16:11:12
8175	14	270	2026-04-24 16:11:12	2026-04-24 16:11:12
8176	14	271	2026-04-24 16:11:12	2026-04-24 16:11:12
8177	14	272	2026-04-24 16:11:12	2026-04-24 16:11:12
8178	14	273	2026-04-24 16:11:12	2026-04-24 16:11:12
8179	14	274	2026-04-24 16:11:12	2026-04-24 16:11:12
8180	14	275	2026-04-24 16:11:12	2026-04-24 16:11:12
8181	14	276	2026-04-24 16:11:12	2026-04-24 16:11:12
8182	14	277	2026-04-24 16:11:12	2026-04-24 16:11:12
8183	14	278	2026-04-24 16:11:12	2026-04-24 16:11:12
8184	14	279	2026-04-24 16:11:12	2026-04-24 16:11:12
8185	14	280	2026-04-24 16:11:12	2026-04-24 16:11:12
8186	14	281	2026-04-24 16:11:12	2026-04-24 16:11:12
8187	14	282	2026-04-24 16:11:12	2026-04-24 16:11:12
8188	14	283	2026-04-24 16:11:12	2026-04-24 16:11:12
8189	14	284	2026-04-24 16:11:12	2026-04-24 16:11:12
8190	14	285	2026-04-24 16:11:12	2026-04-24 16:11:12
8191	14	286	2026-04-24 16:11:12	2026-04-24 16:11:12
8192	14	287	2026-04-24 16:11:12	2026-04-24 16:11:12
8193	14	288	2026-04-24 16:11:12	2026-04-24 16:11:12
8194	14	289	2026-04-24 16:11:12	2026-04-24 16:11:12
8195	14	294	2026-04-24 16:11:12	2026-04-24 16:11:12
8196	14	295	2026-04-24 16:11:12	2026-04-24 16:11:12
8197	14	296	2026-04-24 16:11:12	2026-04-24 16:11:12
8198	14	297	2026-04-24 16:11:12	2026-04-24 16:11:12
8199	14	500	2026-04-24 16:11:12	2026-04-24 16:11:12
8200	14	501	2026-04-24 16:11:12	2026-04-24 16:11:12
8201	14	502	2026-04-24 16:11:12	2026-04-24 16:11:12
8202	14	510	2026-04-24 16:11:12	2026-04-24 16:11:12
8203	14	511	2026-04-24 16:11:12	2026-04-24 16:11:12
8204	14	512	2026-04-24 16:11:12	2026-04-24 16:11:12
8205	14	567	2026-04-24 16:11:12	2026-04-24 16:11:12
8206	14	594	2026-04-24 16:11:12	2026-04-24 16:11:12
8207	14	679	2026-04-24 16:11:12	2026-04-24 16:11:12
8208	14	709	2026-04-24 16:11:12	2026-04-24 16:11:12
8209	14	298	2026-04-24 16:11:12	2026-04-24 16:11:12
8210	14	299	2026-04-24 16:11:12	2026-04-24 16:11:12
8211	14	300	2026-04-24 16:11:12	2026-04-24 16:11:12
8212	14	310	2026-04-24 16:11:12	2026-04-24 16:11:12
8213	14	311	2026-04-24 16:11:12	2026-04-24 16:11:12
8214	14	312	2026-04-24 16:11:12	2026-04-24 16:11:12
8215	14	313	2026-04-24 16:11:12	2026-04-24 16:11:12
8216	14	314	2026-04-24 16:11:12	2026-04-24 16:11:12
8217	14	315	2026-04-24 16:11:12	2026-04-24 16:11:12
8218	14	316	2026-04-24 16:11:12	2026-04-24 16:11:12
8219	14	317	2026-04-24 16:11:12	2026-04-24 16:11:12
8220	14	318	2026-04-24 16:11:12	2026-04-24 16:11:12
8221	14	358	2026-04-24 16:11:12	2026-04-24 16:11:12
8222	14	365	2026-04-24 16:11:12	2026-04-24 16:11:12
8223	14	350	2026-04-24 16:11:12	2026-04-24 16:11:12
8224	14	351	2026-04-24 16:11:12	2026-04-24 16:11:12
8225	14	352	2026-04-24 16:11:12	2026-04-24 16:11:12
8226	14	353	2026-04-24 16:11:12	2026-04-24 16:11:12
8227	14	354	2026-04-24 16:11:12	2026-04-24 16:11:12
8228	14	355	2026-04-24 16:11:12	2026-04-24 16:11:12
8229	14	356	2026-04-24 16:11:12	2026-04-24 16:11:12
8230	14	357	2026-04-24 16:11:12	2026-04-24 16:11:12
8231	14	392	2026-04-24 16:11:12	2026-04-24 16:11:12
8232	14	396	2026-04-24 16:11:12	2026-04-24 16:11:12
8233	14	301	2026-04-24 16:11:12	2026-04-24 16:11:12
8234	14	302	2026-04-24 16:11:12	2026-04-24 16:11:12
8235	14	303	2026-04-24 16:11:12	2026-04-24 16:11:12
8236	14	304	2026-04-24 16:11:12	2026-04-24 16:11:12
8237	14	305	2026-04-24 16:11:12	2026-04-24 16:11:12
8238	14	306	2026-04-24 16:11:12	2026-04-24 16:11:12
8239	14	307	2026-04-24 16:11:12	2026-04-24 16:11:12
8240	14	308	2026-04-24 16:11:12	2026-04-24 16:11:12
8241	14	309	2026-04-24 16:11:12	2026-04-24 16:11:12
8242	14	590	2026-04-24 16:11:12	2026-04-24 16:11:12
8243	14	591	2026-04-24 16:11:12	2026-04-24 16:11:12
8244	14	319	2026-04-24 16:11:12	2026-04-24 16:11:12
8245	14	320	2026-04-24 16:11:12	2026-04-24 16:11:12
8246	14	321	2026-04-24 16:11:12	2026-04-24 16:11:12
8247	14	322	2026-04-24 16:11:12	2026-04-24 16:11:12
8248	14	323	2026-04-24 16:11:12	2026-04-24 16:11:12
8249	14	324	2026-04-24 16:11:12	2026-04-24 16:11:12
8250	14	325	2026-04-24 16:11:12	2026-04-24 16:11:12
8251	14	326	2026-04-24 16:11:12	2026-04-24 16:11:12
8252	14	327	2026-04-24 16:11:12	2026-04-24 16:11:12
8253	14	328	2026-04-24 16:11:12	2026-04-24 16:11:12
8254	14	676	2026-04-24 16:11:12	2026-04-24 16:11:12
8255	14	339	2026-04-24 16:11:12	2026-04-24 16:11:12
8256	14	385	2026-04-24 16:11:12	2026-04-24 16:11:12
8257	14	386	2026-04-24 16:11:12	2026-04-24 16:11:12
8258	14	387	2026-04-24 16:11:12	2026-04-24 16:11:12
8259	14	388	2026-04-24 16:11:12	2026-04-24 16:11:12
8260	14	389	2026-04-24 16:11:12	2026-04-24 16:11:12
8261	14	390	2026-04-24 16:11:12	2026-04-24 16:11:12
8262	14	391	2026-04-24 16:11:12	2026-04-24 16:11:12
8263	14	555	2026-04-24 16:11:12	2026-04-24 16:11:12
8264	14	556	2026-04-24 16:11:12	2026-04-24 16:11:12
8265	14	557	2026-04-24 16:11:12	2026-04-24 16:11:12
8266	14	455	2026-04-24 16:11:12	2026-04-24 16:11:12
8267	14	456	2026-04-24 16:11:12	2026-04-24 16:11:12
8268	14	457	2026-04-24 16:11:12	2026-04-24 16:11:12
8269	14	458	2026-04-24 16:11:12	2026-04-24 16:11:12
8270	14	459	2026-04-24 16:11:12	2026-04-24 16:11:12
8271	14	460	2026-04-24 16:11:12	2026-04-24 16:11:12
8272	14	461	2026-04-24 16:11:12	2026-04-24 16:11:12
8273	14	462	2026-04-24 16:11:12	2026-04-24 16:11:12
8274	14	463	2026-04-24 16:11:12	2026-04-24 16:11:12
8275	14	465	2026-04-24 16:11:12	2026-04-24 16:11:12
8276	14	466	2026-04-24 16:11:12	2026-04-24 16:11:12
8277	14	467	2026-04-24 16:11:12	2026-04-24 16:11:12
8278	14	468	2026-04-24 16:11:12	2026-04-24 16:11:12
8279	14	469	2026-04-24 16:11:12	2026-04-24 16:11:12
8280	14	470	2026-04-24 16:11:12	2026-04-24 16:11:12
8281	14	471	2026-04-24 16:11:12	2026-04-24 16:11:12
8282	14	472	2026-04-24 16:11:12	2026-04-24 16:11:12
8283	14	473	2026-04-24 16:11:12	2026-04-24 16:11:12
8284	14	474	2026-04-24 16:11:12	2026-04-24 16:11:12
8285	14	476	2026-04-24 16:11:12	2026-04-24 16:11:12
8286	14	478	2026-04-24 16:11:12	2026-04-24 16:11:12
8287	14	479	2026-04-24 16:11:12	2026-04-24 16:11:12
8288	14	475	2026-04-24 16:11:12	2026-04-24 16:11:12
8289	14	710	2026-04-24 16:11:12	2026-04-24 16:11:12
8290	14	714	2026-04-24 16:11:12	2026-04-24 16:11:12
8291	14	715	2026-04-24 16:11:12	2026-04-24 16:11:12
8292	14	716	2026-04-24 16:11:12	2026-04-24 16:11:12
8293	14	717	2026-04-24 16:11:12	2026-04-24 16:11:12
8294	14	718	2026-04-24 16:11:12	2026-04-24 16:11:12
8295	14	719	2026-04-24 16:11:12	2026-04-24 16:11:12
8296	14	720	2026-04-24 16:11:12	2026-04-24 16:11:12
8297	14	721	2026-04-24 16:11:12	2026-04-24 16:11:12
8298	14	722	2026-04-24 16:11:12	2026-04-24 16:11:12
8299	14	723	2026-04-24 16:11:12	2026-04-24 16:11:12
8300	14	724	2026-04-24 16:11:12	2026-04-24 16:11:12
8301	14	725	2026-04-24 16:11:12	2026-04-24 16:11:12
8302	14	726	2026-04-24 16:11:12	2026-04-24 16:11:12
8303	14	727	2026-04-24 16:11:12	2026-04-24 16:11:12
8304	14	728	2026-04-24 16:11:12	2026-04-24 16:11:12
8305	14	729	2026-04-24 16:11:12	2026-04-24 16:11:12
8306	14	736	2026-04-24 16:11:12	2026-04-24 16:11:12
8307	14	737	2026-04-24 16:11:12	2026-04-24 16:11:12
8308	14	738	2026-04-24 16:11:12	2026-04-24 16:11:12
8309	14	739	2026-04-24 16:11:12	2026-04-24 16:11:12
8310	14	740	2026-04-24 16:11:12	2026-04-24 16:11:12
8311	14	741	2026-04-24 16:11:12	2026-04-24 16:11:12
8312	14	742	2026-04-24 16:11:12	2026-04-24 16:11:12
8313	14	743	2026-04-24 16:11:12	2026-04-24 16:11:12
8314	14	744	2026-04-24 16:11:12	2026-04-24 16:11:12
8315	14	746	2026-04-24 16:11:12	2026-04-24 16:11:12
8316	14	747	2026-04-24 16:11:12	2026-04-24 16:11:12
8317	14	25	2026-04-24 16:11:12	2026-04-24 16:11:12
8318	14	487	2026-04-24 16:11:12	2026-04-24 16:11:12
8319	14	488	2026-04-24 16:11:12	2026-04-24 16:11:12
8320	14	489	2026-04-24 16:11:12	2026-04-24 16:11:12
8321	14	490	2026-04-24 16:11:12	2026-04-24 16:11:12
8322	14	491	2026-04-24 16:11:12	2026-04-24 16:11:12
8323	14	551	2026-04-24 16:11:12	2026-04-24 16:11:12
8324	14	552	2026-04-24 16:11:12	2026-04-24 16:11:12
8325	14	568	2026-04-24 16:11:12	2026-04-24 16:11:12
8326	14	569	2026-04-24 16:11:12	2026-04-24 16:11:12
8327	14	570	2026-04-24 16:11:12	2026-04-24 16:11:12
8328	14	492	2026-04-24 16:11:12	2026-04-24 16:11:12
8329	14	493	2026-04-24 16:11:12	2026-04-24 16:11:12
8330	14	494	2026-04-24 16:11:12	2026-04-24 16:11:12
8331	14	495	2026-04-24 16:11:12	2026-04-24 16:11:12
8332	14	497	2026-04-24 16:11:13	2026-04-24 16:11:13
8333	14	496	2026-04-24 16:11:13	2026-04-24 16:11:13
8334	14	572	2026-04-24 16:11:13	2026-04-24 16:11:13
8335	14	573	2026-04-24 16:11:13	2026-04-24 16:11:13
8336	14	574	2026-04-24 16:11:13	2026-04-24 16:11:13
8337	14	575	2026-04-24 16:11:13	2026-04-24 16:11:13
8338	14	622	2026-04-24 16:11:13	2026-04-24 16:11:13
8339	14	378	2026-04-24 16:11:13	2026-04-24 16:11:13
8340	14	528	2026-04-24 16:11:13	2026-04-24 16:11:13
8341	14	595	2026-04-24 16:11:13	2026-04-24 16:11:13
8342	14	596	2026-04-24 16:11:13	2026-04-24 16:11:13
8343	14	597	2026-04-24 16:11:13	2026-04-24 16:11:13
8344	14	598	2026-04-24 16:11:13	2026-04-24 16:11:13
8345	14	599	2026-04-24 16:11:13	2026-04-24 16:11:13
8346	14	600	2026-04-24 16:11:13	2026-04-24 16:11:13
8347	14	601	2026-04-24 16:11:13	2026-04-24 16:11:13
8348	14	602	2026-04-24 16:11:13	2026-04-24 16:11:13
8349	14	603	2026-04-24 16:11:13	2026-04-24 16:11:13
8350	14	604	2026-04-24 16:11:13	2026-04-24 16:11:13
8351	14	605	2026-04-24 16:11:13	2026-04-24 16:11:13
8352	14	606	2026-04-24 16:11:13	2026-04-24 16:11:13
8353	14	607	2026-04-24 16:11:13	2026-04-24 16:11:13
8354	14	608	2026-04-24 16:11:13	2026-04-24 16:11:13
8355	14	609	2026-04-24 16:11:13	2026-04-24 16:11:13
8356	14	610	2026-04-24 16:11:13	2026-04-24 16:11:13
8357	14	611	2026-04-24 16:11:13	2026-04-24 16:11:13
8358	14	612	2026-04-24 16:11:13	2026-04-24 16:11:13
8359	14	613	2026-04-24 16:11:13	2026-04-24 16:11:13
8360	14	677	2026-04-24 16:11:13	2026-04-24 16:11:13
8361	14	678	2026-04-24 16:11:13	2026-04-24 16:11:13
8362	14	706	2026-04-24 16:11:13	2026-04-24 16:11:13
8363	14	707	2026-04-24 16:11:13	2026-04-24 16:11:13
8364	14	623	2026-04-24 16:11:13	2026-04-24 16:11:13
8365	14	624	2026-04-24 16:11:13	2026-04-24 16:11:13
8366	14	625	2026-04-24 16:11:13	2026-04-24 16:11:13
8367	14	626	2026-04-24 16:11:13	2026-04-24 16:11:13
8368	14	627	2026-04-24 16:11:13	2026-04-24 16:11:13
8369	14	628	2026-04-24 16:11:13	2026-04-24 16:11:13
8370	14	629	2026-04-24 16:11:13	2026-04-24 16:11:13
8371	14	630	2026-04-24 16:11:13	2026-04-24 16:11:13
8372	14	631	2026-04-24 16:11:13	2026-04-24 16:11:13
8373	14	632	2026-04-24 16:11:13	2026-04-24 16:11:13
8374	14	633	2026-04-24 16:11:13	2026-04-24 16:11:13
8375	14	634	2026-04-24 16:11:13	2026-04-24 16:11:13
8376	14	635	2026-04-24 16:11:13	2026-04-24 16:11:13
8377	14	636	2026-04-24 16:11:13	2026-04-24 16:11:13
8378	14	637	2026-04-24 16:11:13	2026-04-24 16:11:13
8379	14	638	2026-04-24 16:11:13	2026-04-24 16:11:13
8380	14	659	2026-04-24 16:11:13	2026-04-24 16:11:13
8381	14	639	2026-04-24 16:11:13	2026-04-24 16:11:13
8382	14	640	2026-04-24 16:11:13	2026-04-24 16:11:13
8383	14	641	2026-04-24 16:11:13	2026-04-24 16:11:13
8384	14	642	2026-04-24 16:11:13	2026-04-24 16:11:13
8385	14	643	2026-04-24 16:11:13	2026-04-24 16:11:13
8386	14	644	2026-04-24 16:11:13	2026-04-24 16:11:13
8387	14	645	2026-04-24 16:11:13	2026-04-24 16:11:13
8388	14	646	2026-04-24 16:11:13	2026-04-24 16:11:13
8389	14	700	2026-04-24 16:11:13	2026-04-24 16:11:13
8390	14	701	2026-04-24 16:11:13	2026-04-24 16:11:13
8391	14	702	2026-04-24 16:11:13	2026-04-24 16:11:13
8392	14	703	2026-04-24 16:11:13	2026-04-24 16:11:13
8393	14	704	2026-04-24 16:11:13	2026-04-24 16:11:13
8394	14	705	2026-04-24 16:11:13	2026-04-24 16:11:13
8395	14	745	2026-04-24 16:11:13	2026-04-24 16:11:13
8396	14	748	2026-04-24 16:11:13	2026-04-24 16:11:13
8397	14	749	2026-04-24 16:11:13	2026-04-24 16:11:13
8398	14	750	2026-04-24 16:11:13	2026-04-24 16:11:13
8399	14	751	2026-04-24 16:11:13	2026-04-24 16:11:13
8400	14	752	2026-04-24 16:11:13	2026-04-24 16:11:13
8401	14	753	2026-04-24 16:11:13	2026-04-24 16:11:13
8402	14	754	2026-04-24 16:11:13	2026-04-24 16:11:13
8403	14	755	2026-04-24 16:11:13	2026-04-24 16:11:13
8404	14	756	2026-04-24 16:11:13	2026-04-24 16:11:13
8405	14	757	2026-04-24 16:11:13	2026-04-24 16:11:13
8406	14	758	2026-04-24 16:11:13	2026-04-24 16:11:13
8407	14	759	2026-04-24 16:11:13	2026-04-24 16:11:13
8408	14	760	2026-04-24 16:11:13	2026-04-24 16:11:13
8409	14	761	2026-04-24 16:11:13	2026-04-24 16:11:13
8410	14	762	2026-04-24 16:11:13	2026-04-24 16:11:13
8411	14	763	2026-04-24 16:11:13	2026-04-24 16:11:13
8412	14	764	2026-04-24 16:11:13	2026-04-24 16:11:13
8413	14	765	2026-04-24 16:11:13	2026-04-24 16:11:13
8414	14	766	2026-04-24 16:11:13	2026-04-24 16:11:13
8415	14	767	2026-04-24 16:11:13	2026-04-24 16:11:13
8416	14	768	2026-04-24 16:11:13	2026-04-24 16:11:13
8417	14	769	2026-04-24 16:11:13	2026-04-24 16:11:13
8418	14	775	2026-04-24 16:11:13	2026-04-24 16:11:13
8419	14	776	2026-04-24 16:11:13	2026-04-24 16:11:13
8420	14	777	2026-04-24 16:11:13	2026-04-24 16:11:13
8421	14	778	2026-04-24 16:11:13	2026-04-24 16:11:13
8422	14	779	2026-04-24 16:11:13	2026-04-24 16:11:13
8423	14	780	2026-04-24 16:11:13	2026-04-24 16:11:13
8424	14	781	2026-04-24 16:11:13	2026-04-24 16:11:13
8425	14	782	2026-04-24 16:11:13	2026-04-24 16:11:13
8426	14	783	2026-04-24 16:11:13	2026-04-24 16:11:13
8427	14	784	2026-04-24 16:11:13	2026-04-24 16:11:13
8428	14	785	2026-04-24 16:11:13	2026-04-24 16:11:13
8429	14	786	2026-04-24 16:11:13	2026-04-24 16:11:13
8430	14	787	2026-04-24 16:11:13	2026-04-24 16:11:13
8431	14	788	2026-04-24 16:11:13	2026-04-24 16:11:13
8432	14	789	2026-04-24 16:11:13	2026-04-24 16:11:13
8433	14	790	2026-04-24 16:11:13	2026-04-24 16:11:13
8434	14	791	2026-04-24 16:11:13	2026-04-24 16:11:13
8435	14	792	2026-04-24 16:11:13	2026-04-24 16:11:13
8436	14	793	2026-04-24 16:11:13	2026-04-24 16:11:13
8437	14	794	2026-04-24 16:11:13	2026-04-24 16:11:13
8438	14	795	2026-04-24 16:11:13	2026-04-24 16:11:13
8439	14	796	2026-04-24 16:11:13	2026-04-24 16:11:13
8440	14	797	2026-04-24 16:11:13	2026-04-24 16:11:13
8441	14	798	2026-04-24 16:11:13	2026-04-24 16:11:13
8442	14	799	2026-04-24 16:11:13	2026-04-24 16:11:13
8443	14	800	2026-04-24 16:11:13	2026-04-24 16:11:13
8444	14	801	2026-04-24 16:11:13	2026-04-24 16:11:13
8445	14	802	2026-04-24 16:11:13	2026-04-24 16:11:13
8446	14	803	2026-04-24 16:11:13	2026-04-24 16:11:13
8447	14	804	2026-04-24 16:11:13	2026-04-24 16:11:13
8448	14	805	2026-04-24 16:11:13	2026-04-24 16:11:13
8449	14	26	2026-04-24 16:11:13	2026-04-24 16:11:13
8450	14	28	2026-04-24 16:11:13	2026-04-24 16:11:13
8451	14	29	2026-04-24 16:11:13	2026-04-24 16:11:13
8452	14	30	2026-04-24 16:11:13	2026-04-24 16:11:13
8453	14	31	2026-04-24 16:11:13	2026-04-24 16:11:13
8454	14	32	2026-04-24 16:11:13	2026-04-24 16:11:13
8455	14	33	2026-04-24 16:11:13	2026-04-24 16:11:13
8456	14	367	2026-04-24 16:11:13	2026-04-24 16:11:13
8457	14	368	2026-04-24 16:11:13	2026-04-24 16:11:13
8458	14	369	2026-04-24 16:11:13	2026-04-24 16:11:13
8459	14	370	2026-04-24 16:11:13	2026-04-24 16:11:13
8460	14	371	2026-04-24 16:11:13	2026-04-24 16:11:13
8461	14	373	2026-04-24 16:11:13	2026-04-24 16:11:13
8462	14	395	2026-04-24 16:11:13	2026-04-24 16:11:13
8463	14	39	2026-04-24 16:11:13	2026-04-24 16:11:13
8464	14	379	2026-04-24 16:11:13	2026-04-24 16:11:13
8465	14	380	2026-04-24 16:11:13	2026-04-24 16:11:13
8466	14	34	2026-04-24 16:11:13	2026-04-24 16:11:13
8467	14	35	2026-04-24 16:11:13	2026-04-24 16:11:13
8468	14	36	2026-04-24 16:11:13	2026-04-24 16:11:13
8469	14	37	2026-04-24 16:11:13	2026-04-24 16:11:13
8470	14	38	2026-04-24 16:11:13	2026-04-24 16:11:13
8471	14	424	2026-04-24 16:11:13	2026-04-24 16:11:13
8472	14	425	2026-04-24 16:11:13	2026-04-24 16:11:13
8473	14	427	2026-04-24 16:11:13	2026-04-24 16:11:13
8474	14	443	2026-04-24 16:11:13	2026-04-24 16:11:13
8475	14	449	2026-04-24 16:11:13	2026-04-24 16:11:13
8476	14	453	2026-04-24 16:11:13	2026-04-24 16:11:13
8477	14	454	2026-04-24 16:11:13	2026-04-24 16:11:13
8478	14	464	2026-04-24 16:11:13	2026-04-24 16:11:13
8479	14	450	2026-04-24 16:11:13	2026-04-24 16:11:13
8480	14	498	2026-04-24 16:11:13	2026-04-24 16:11:13
8481	14	499	2026-04-24 16:11:13	2026-04-24 16:11:13
8482	14	513	2026-04-24 16:11:13	2026-04-24 16:11:13
8483	14	514	2026-04-24 16:11:13	2026-04-24 16:11:13
8484	14	515	2026-04-24 16:11:13	2026-04-24 16:11:13
8485	14	516	2026-04-24 16:11:13	2026-04-24 16:11:13
8486	14	517	2026-04-24 16:11:13	2026-04-24 16:11:13
8487	14	518	2026-04-24 16:11:13	2026-04-24 16:11:13
8488	14	520	2026-04-24 16:11:13	2026-04-24 16:11:13
8489	14	521	2026-04-24 16:11:13	2026-04-24 16:11:13
8490	14	522	2026-04-24 16:11:13	2026-04-24 16:11:13
8491	14	523	2026-04-24 16:11:13	2026-04-24 16:11:13
8492	14	531	2026-04-24 16:11:13	2026-04-24 16:11:13
8493	14	547	2026-04-24 16:11:13	2026-04-24 16:11:13
8494	14	548	2026-04-24 16:11:13	2026-04-24 16:11:13
8495	14	549	2026-04-24 16:11:13	2026-04-24 16:11:13
8496	14	550	2026-04-24 16:11:13	2026-04-24 16:11:13
8497	14	553	2026-04-24 16:11:13	2026-04-24 16:11:13
8498	14	554	2026-04-24 16:11:13	2026-04-24 16:11:13
8499	14	586	2026-04-24 16:11:13	2026-04-24 16:11:13
8500	14	593	2026-04-24 16:11:13	2026-04-24 16:11:13
8501	14	652	2026-04-24 16:11:13	2026-04-24 16:11:13
8502	14	653	2026-04-24 16:11:13	2026-04-24 16:11:13
8503	14	654	2026-04-24 16:11:13	2026-04-24 16:11:13
8504	14	655	2026-04-24 16:11:13	2026-04-24 16:11:13
8505	14	656	2026-04-24 16:11:13	2026-04-24 16:11:13
8506	14	657	2026-04-24 16:11:13	2026-04-24 16:11:13
8507	14	658	2026-04-24 16:11:13	2026-04-24 16:11:13
8508	14	682	2026-04-24 16:11:13	2026-04-24 16:11:13
8509	14	683	2026-04-24 16:11:13	2026-04-24 16:11:13
8510	14	684	2026-04-24 16:11:13	2026-04-24 16:11:13
8511	14	685	2026-04-24 16:11:13	2026-04-24 16:11:13
8512	14	686	2026-04-24 16:11:13	2026-04-24 16:11:13
8513	14	687	2026-04-24 16:11:13	2026-04-24 16:11:13
8514	14	688	2026-04-24 16:11:13	2026-04-24 16:11:13
8515	14	27	2026-04-24 16:11:13	2026-04-24 16:11:13
8516	14	692	2026-04-24 16:11:13	2026-04-24 16:11:13
8517	14	708	2026-04-24 16:11:13	2026-04-24 16:11:13
8518	14	731	2026-04-24 16:11:13	2026-04-24 16:11:13
8519	14	732	2026-04-24 16:11:13	2026-04-24 16:11:13
8520	14	40	2026-04-24 16:11:13	2026-04-24 16:11:13
8521	14	44	2026-04-24 16:11:13	2026-04-24 16:11:13
8522	14	45	2026-04-24 16:11:13	2026-04-24 16:11:13
8523	14	46	2026-04-24 16:11:13	2026-04-24 16:11:13
8524	14	47	2026-04-24 16:11:13	2026-04-24 16:11:13
8525	14	48	2026-04-24 16:11:13	2026-04-24 16:11:13
8526	14	49	2026-04-24 16:11:13	2026-04-24 16:11:13
8527	14	50	2026-04-24 16:11:13	2026-04-24 16:11:13
8528	14	51	2026-04-24 16:11:13	2026-04-24 16:11:13
8529	14	52	2026-04-24 16:11:13	2026-04-24 16:11:13
8530	14	372	2026-04-24 16:11:13	2026-04-24 16:11:13
8531	14	384	2026-04-24 16:11:13	2026-04-24 16:11:13
8532	14	41	2026-04-24 16:11:13	2026-04-24 16:11:13
8533	14	42	2026-04-24 16:11:13	2026-04-24 16:11:13
8534	14	43	2026-04-24 16:11:13	2026-04-24 16:11:13
8535	14	529	2026-04-24 16:11:13	2026-04-24 16:11:13
8536	14	526	2026-04-24 16:11:13	2026-04-24 16:11:13
8537	14	525	2026-04-24 16:11:13	2026-04-24 16:11:13
8538	14	527	2026-04-24 16:11:13	2026-04-24 16:11:13
8539	14	530	2026-04-24 16:11:13	2026-04-24 16:11:13
8540	14	519	2026-04-24 16:11:13	2026-04-24 16:11:13
8541	14	587	2026-04-24 16:11:13	2026-04-24 16:11:13
8542	14	592	2026-04-24 16:11:13	2026-04-24 16:11:13
8543	14	648	2026-04-24 16:11:13	2026-04-24 16:11:13
8544	14	524	2026-04-24 16:11:13	2026-04-24 16:11:13
8545	14	588	2026-04-24 16:11:13	2026-04-24 16:11:13
8546	14	616	2026-04-24 16:11:13	2026-04-24 16:11:13
8547	14	452	2026-04-24 16:11:13	2026-04-24 16:11:13
8548	14	589	2026-04-24 16:11:13	2026-04-24 16:11:13
8549	14	665	2026-04-24 16:11:13	2026-04-24 16:11:13
8550	14	693	2026-04-24 16:11:13	2026-04-24 16:11:13
8551	14	694	2026-04-24 16:11:13	2026-04-24 16:11:13
8552	14	695	2026-04-24 16:11:13	2026-04-24 16:11:13
8553	14	53	2026-04-24 16:11:13	2026-04-24 16:11:13
8554	14	54	2026-04-24 16:11:13	2026-04-24 16:11:13
8555	14	55	2026-04-24 16:11:13	2026-04-24 16:11:13
8556	14	56	2026-04-24 16:11:13	2026-04-24 16:11:13
8557	14	57	2026-04-24 16:11:13	2026-04-24 16:11:13
8558	14	58	2026-04-24 16:11:13	2026-04-24 16:11:13
8559	14	59	2026-04-24 16:11:13	2026-04-24 16:11:13
8560	14	60	2026-04-24 16:11:13	2026-04-24 16:11:13
8561	14	61	2026-04-24 16:11:13	2026-04-24 16:11:13
8562	14	62	2026-04-24 16:11:13	2026-04-24 16:11:13
8563	14	63	2026-04-24 16:11:13	2026-04-24 16:11:13
8564	14	64	2026-04-24 16:11:13	2026-04-24 16:11:13
8565	14	65	2026-04-24 16:11:13	2026-04-24 16:11:13
8566	14	66	2026-04-24 16:11:13	2026-04-24 16:11:13
8567	14	67	2026-04-24 16:11:13	2026-04-24 16:11:13
8568	14	68	2026-04-24 16:11:13	2026-04-24 16:11:13
8569	14	69	2026-04-24 16:11:13	2026-04-24 16:11:13
8570	14	70	2026-04-24 16:11:13	2026-04-24 16:11:13
8571	14	71	2026-04-24 16:11:13	2026-04-24 16:11:13
8572	14	72	2026-04-24 16:11:13	2026-04-24 16:11:13
8573	14	73	2026-04-24 16:11:13	2026-04-24 16:11:13
8574	14	74	2026-04-24 16:11:13	2026-04-24 16:11:13
8575	14	75	2026-04-24 16:11:13	2026-04-24 16:11:13
8576	14	76	2026-04-24 16:11:13	2026-04-24 16:11:13
8577	14	77	2026-04-24 16:11:13	2026-04-24 16:11:13
8578	14	432	2026-04-24 16:11:13	2026-04-24 16:11:13
8579	14	433	2026-04-24 16:11:13	2026-04-24 16:11:13
8580	14	434	2026-04-24 16:11:13	2026-04-24 16:11:13
8581	14	435	2026-04-24 16:11:13	2026-04-24 16:11:13
8582	14	436	2026-04-24 16:11:13	2026-04-24 16:11:13
8583	14	437	2026-04-24 16:11:13	2026-04-24 16:11:13
8584	14	438	2026-04-24 16:11:13	2026-04-24 16:11:13
8585	14	439	2026-04-24 16:11:13	2026-04-24 16:11:13
8586	14	440	2026-04-24 16:11:13	2026-04-24 16:11:13
8587	14	451	2026-04-24 16:11:13	2026-04-24 16:11:13
8588	14	477	2026-04-24 16:11:13	2026-04-24 16:11:13
8589	14	585	2026-04-24 16:11:13	2026-04-24 16:11:13
8590	14	669	2026-04-24 16:11:13	2026-04-24 16:11:13
8591	14	670	2026-04-24 16:11:13	2026-04-24 16:11:13
8592	14	671	2026-04-24 16:11:13	2026-04-24 16:11:13
8593	14	672	2026-04-24 16:11:13	2026-04-24 16:11:13
8594	14	680	2026-04-24 16:11:13	2026-04-24 16:11:13
8595	14	681	2026-04-24 16:11:13	2026-04-24 16:11:13
8596	14	689	2026-04-24 16:11:13	2026-04-24 16:11:13
8597	14	698	2026-04-24 16:11:13	2026-04-24 16:11:13
8598	14	699	2026-04-24 16:11:13	2026-04-24 16:11:13
8599	14	711	2026-04-24 16:11:13	2026-04-24 16:11:13
8600	14	712	2026-04-24 16:11:13	2026-04-24 16:11:13
8601	14	713	2026-04-24 16:11:13	2026-04-24 16:11:13
8602	14	730	2026-04-24 16:11:13	2026-04-24 16:11:13
8603	14	78	2026-04-24 16:11:13	2026-04-24 16:11:13
8604	14	79	2026-04-24 16:11:13	2026-04-24 16:11:13
8605	14	80	2026-04-24 16:11:13	2026-04-24 16:11:13
8606	14	81	2026-04-24 16:11:13	2026-04-24 16:11:13
8607	14	82	2026-04-24 16:11:13	2026-04-24 16:11:13
8608	14	83	2026-04-24 16:11:13	2026-04-24 16:11:13
8609	14	84	2026-04-24 16:11:13	2026-04-24 16:11:13
8610	14	85	2026-04-24 16:11:13	2026-04-24 16:11:13
8611	14	86	2026-04-24 16:11:13	2026-04-24 16:11:13
8612	14	87	2026-04-24 16:11:13	2026-04-24 16:11:13
8613	14	88	2026-04-24 16:11:13	2026-04-24 16:11:13
8614	14	89	2026-04-24 16:11:13	2026-04-24 16:11:13
8615	14	90	2026-04-24 16:11:13	2026-04-24 16:11:13
8616	14	91	2026-04-24 16:11:13	2026-04-24 16:11:13
8617	14	92	2026-04-24 16:11:13	2026-04-24 16:11:13
8618	14	93	2026-04-24 16:11:13	2026-04-24 16:11:13
8619	14	94	2026-04-24 16:11:13	2026-04-24 16:11:13
8620	14	374	2026-04-24 16:11:13	2026-04-24 16:11:13
8621	14	375	2026-04-24 16:11:13	2026-04-24 16:11:13
8622	14	393	2026-04-24 16:11:13	2026-04-24 16:11:13
8623	14	394	2026-04-24 16:11:13	2026-04-24 16:11:13
8624	14	397	2026-04-24 16:11:13	2026-04-24 16:11:13
8625	14	398	2026-04-24 16:11:13	2026-04-24 16:11:13
8626	14	541	2026-04-24 16:11:13	2026-04-24 16:11:13
8627	14	543	2026-04-24 16:11:13	2026-04-24 16:11:13
8628	14	545	2026-04-24 16:11:13	2026-04-24 16:11:13
8629	14	571	2026-04-24 16:11:13	2026-04-24 16:11:13
8630	14	735	2026-04-24 16:11:13	2026-04-24 16:11:13
8631	14	773	2026-04-24 16:11:13	2026-04-24 16:11:13
8632	14	774	2026-04-24 16:11:13	2026-04-24 16:11:13
8633	14	95	2026-04-24 16:11:13	2026-04-24 16:11:13
8634	14	96	2026-04-24 16:11:13	2026-04-24 16:11:13
8635	14	97	2026-04-24 16:11:13	2026-04-24 16:11:13
8636	14	98	2026-04-24 16:11:13	2026-04-24 16:11:13
8637	14	99	2026-04-24 16:11:13	2026-04-24 16:11:13
8638	14	100	2026-04-24 16:11:13	2026-04-24 16:11:13
8639	14	101	2026-04-24 16:11:13	2026-04-24 16:11:13
8640	14	102	2026-04-24 16:11:13	2026-04-24 16:11:13
8641	14	103	2026-04-24 16:11:13	2026-04-24 16:11:13
8642	14	104	2026-04-24 16:11:13	2026-04-24 16:11:13
8643	14	361	2026-04-24 16:11:13	2026-04-24 16:11:13
8644	14	362	2026-04-24 16:11:13	2026-04-24 16:11:13
8645	14	363	2026-04-24 16:11:13	2026-04-24 16:11:13
8646	14	364	2026-04-24 16:11:13	2026-04-24 16:11:13
8647	14	366	2026-04-24 16:11:13	2026-04-24 16:11:13
8648	14	376	2026-04-24 16:11:13	2026-04-24 16:11:13
8649	14	377	2026-04-24 16:11:13	2026-04-24 16:11:13
8650	14	105	2026-04-24 16:11:13	2026-04-24 16:11:13
8651	14	106	2026-04-24 16:11:13	2026-04-24 16:11:13
8652	14	107	2026-04-24 16:11:13	2026-04-24 16:11:13
8653	14	108	2026-04-24 16:11:13	2026-04-24 16:11:13
8654	14	109	2026-04-24 16:11:13	2026-04-24 16:11:13
8655	14	110	2026-04-24 16:11:13	2026-04-24 16:11:13
8656	14	111	2026-04-24 16:11:13	2026-04-24 16:11:13
8657	14	112	2026-04-24 16:11:13	2026-04-24 16:11:13
8658	14	113	2026-04-24 16:11:13	2026-04-24 16:11:13
8659	14	114	2026-04-24 16:11:13	2026-04-24 16:11:13
8660	14	115	2026-04-24 16:11:13	2026-04-24 16:11:13
8661	14	116	2026-04-24 16:11:13	2026-04-24 16:11:13
8662	14	117	2026-04-24 16:11:13	2026-04-24 16:11:13
8663	14	428	2026-04-24 16:11:13	2026-04-24 16:11:13
8664	14	429	2026-04-24 16:11:13	2026-04-24 16:11:13
8665	14	430	2026-04-24 16:11:13	2026-04-24 16:11:13
8666	14	431	2026-04-24 16:11:13	2026-04-24 16:11:13
8667	14	444	2026-04-24 16:11:13	2026-04-24 16:11:13
8668	14	445	2026-04-24 16:11:13	2026-04-24 16:11:13
8669	14	446	2026-04-24 16:11:13	2026-04-24 16:11:13
8670	14	447	2026-04-24 16:11:13	2026-04-24 16:11:13
8671	14	507	2026-04-24 16:11:13	2026-04-24 16:11:13
8672	14	508	2026-04-24 16:11:13	2026-04-24 16:11:13
8673	14	532	2026-04-24 16:11:13	2026-04-24 16:11:13
8674	14	540	2026-04-24 16:11:13	2026-04-24 16:11:13
8675	14	542	2026-04-24 16:11:13	2026-04-24 16:11:13
8676	14	544	2026-04-24 16:11:13	2026-04-24 16:11:13
8677	14	564	2026-04-24 16:11:13	2026-04-24 16:11:13
8678	14	565	2026-04-24 16:11:13	2026-04-24 16:11:13
8679	14	566	2026-04-24 16:11:13	2026-04-24 16:11:13
8680	14	619	2026-04-24 16:11:13	2026-04-24 16:11:13
8681	14	620	2026-04-24 16:11:13	2026-04-24 16:11:13
8682	14	621	2026-04-24 16:11:13	2026-04-24 16:11:13
8683	14	649	2026-04-24 16:11:13	2026-04-24 16:11:13
8684	14	650	2026-04-24 16:11:13	2026-04-24 16:11:13
8685	14	651	2026-04-24 16:11:13	2026-04-24 16:11:13
8686	14	660	2026-04-24 16:11:13	2026-04-24 16:11:13
8687	14	661	2026-04-24 16:11:13	2026-04-24 16:11:13
8688	14	662	2026-04-24 16:11:13	2026-04-24 16:11:13
8689	14	663	2026-04-24 16:11:13	2026-04-24 16:11:13
8690	14	664	2026-04-24 16:11:13	2026-04-24 16:11:13
8691	14	666	2026-04-24 16:11:13	2026-04-24 16:11:13
8692	14	674	2026-04-24 16:11:13	2026-04-24 16:11:13
8693	14	675	2026-04-24 16:11:13	2026-04-24 16:11:13
8694	14	733	2026-04-24 16:11:13	2026-04-24 16:11:13
8695	14	734	2026-04-24 16:11:13	2026-04-24 16:11:13
8696	14	118	2026-04-24 16:11:13	2026-04-24 16:11:13
8697	14	119	2026-04-24 16:11:13	2026-04-24 16:11:13
8698	14	120	2026-04-24 16:11:13	2026-04-24 16:11:13
8699	14	121	2026-04-24 16:11:13	2026-04-24 16:11:13
8700	14	122	2026-04-24 16:11:13	2026-04-24 16:11:13
8701	14	123	2026-04-24 16:11:13	2026-04-24 16:11:13
8702	14	124	2026-04-24 16:11:13	2026-04-24 16:11:13
8703	14	125	2026-04-24 16:11:13	2026-04-24 16:11:13
8704	14	126	2026-04-24 16:11:13	2026-04-24 16:11:13
8705	14	127	2026-04-24 16:11:13	2026-04-24 16:11:13
8706	14	128	2026-04-24 16:11:13	2026-04-24 16:11:13
8707	14	129	2026-04-24 16:11:13	2026-04-24 16:11:13
8708	14	130	2026-04-24 16:11:13	2026-04-24 16:11:13
8709	14	329	2026-04-24 16:11:13	2026-04-24 16:11:13
8710	14	330	2026-04-24 16:11:13	2026-04-24 16:11:13
8711	14	331	2026-04-24 16:11:13	2026-04-24 16:11:13
8712	14	332	2026-04-24 16:11:13	2026-04-24 16:11:13
8713	14	333	2026-04-24 16:11:13	2026-04-24 16:11:13
8714	14	334	2026-04-24 16:11:13	2026-04-24 16:11:13
8715	14	340	2026-04-24 16:11:13	2026-04-24 16:11:13
8716	14	131	2026-04-24 16:11:13	2026-04-24 16:11:13
8717	14	132	2026-04-24 16:11:13	2026-04-24 16:11:13
8718	14	133	2026-04-24 16:11:13	2026-04-24 16:11:13
8719	14	134	2026-04-24 16:11:13	2026-04-24 16:11:13
8720	14	135	2026-04-24 16:11:13	2026-04-24 16:11:13
8721	14	136	2026-04-24 16:11:13	2026-04-24 16:11:13
8722	14	137	2026-04-24 16:11:13	2026-04-24 16:11:13
8723	14	138	2026-04-24 16:11:13	2026-04-24 16:11:13
8724	14	139	2026-04-24 16:11:13	2026-04-24 16:11:13
8725	14	140	2026-04-24 16:11:13	2026-04-24 16:11:13
8726	14	141	2026-04-24 16:11:13	2026-04-24 16:11:13
8727	14	142	2026-04-24 16:11:13	2026-04-24 16:11:13
8728	14	143	2026-04-24 16:11:13	2026-04-24 16:11:13
8729	14	144	2026-04-24 16:11:13	2026-04-24 16:11:13
8730	14	145	2026-04-24 16:11:13	2026-04-24 16:11:13
8731	14	146	2026-04-24 16:11:13	2026-04-24 16:11:13
8732	14	147	2026-04-24 16:11:13	2026-04-24 16:11:13
8733	14	148	2026-04-24 16:11:13	2026-04-24 16:11:13
8734	14	149	2026-04-24 16:11:13	2026-04-24 16:11:13
8735	14	150	2026-04-24 16:11:13	2026-04-24 16:11:13
8736	14	151	2026-04-24 16:11:13	2026-04-24 16:11:13
8737	14	152	2026-04-24 16:11:13	2026-04-24 16:11:13
8738	14	153	2026-04-24 16:11:13	2026-04-24 16:11:13
8739	14	154	2026-04-24 16:11:13	2026-04-24 16:11:13
8740	14	155	2026-04-24 16:11:13	2026-04-24 16:11:13
8741	14	156	2026-04-24 16:11:13	2026-04-24 16:11:13
8742	14	157	2026-04-24 16:11:13	2026-04-24 16:11:13
8743	14	158	2026-04-24 16:11:13	2026-04-24 16:11:13
8744	14	159	2026-04-24 16:11:13	2026-04-24 16:11:13
8745	14	160	2026-04-24 16:11:13	2026-04-24 16:11:13
8746	14	161	2026-04-24 16:11:13	2026-04-24 16:11:13
8747	14	162	2026-04-24 16:11:13	2026-04-24 16:11:13
8748	14	163	2026-04-24 16:11:13	2026-04-24 16:11:13
8749	14	164	2026-04-24 16:11:13	2026-04-24 16:11:13
8750	14	165	2026-04-24 16:11:13	2026-04-24 16:11:13
8751	14	166	2026-04-24 16:11:13	2026-04-24 16:11:13
8752	14	167	2026-04-24 16:11:13	2026-04-24 16:11:13
8753	14	168	2026-04-24 16:11:13	2026-04-24 16:11:13
8754	14	169	2026-04-24 16:11:13	2026-04-24 16:11:13
8755	14	170	2026-04-24 16:11:13	2026-04-24 16:11:13
8756	14	171	2026-04-24 16:11:13	2026-04-24 16:11:13
8757	14	172	2026-04-24 16:11:13	2026-04-24 16:11:13
8758	14	173	2026-04-24 16:11:13	2026-04-24 16:11:13
8759	14	426	2026-04-24 16:11:13	2026-04-24 16:11:13
8760	14	341	2026-04-24 16:11:13	2026-04-24 16:11:13
8761	14	342	2026-04-24 16:11:13	2026-04-24 16:11:13
8762	14	343	2026-04-24 16:11:13	2026-04-24 16:11:13
8763	14	346	2026-04-24 16:11:13	2026-04-24 16:11:13
8764	14	347	2026-04-24 16:11:13	2026-04-24 16:11:13
8765	14	348	2026-04-24 16:11:13	2026-04-24 16:11:13
8766	14	349	2026-04-24 16:11:13	2026-04-24 16:11:13
8767	14	536	2026-04-24 16:11:13	2026-04-24 16:11:13
8768	14	537	2026-04-24 16:11:13	2026-04-24 16:11:13
8769	14	538	2026-04-24 16:11:13	2026-04-24 16:11:13
8770	14	560	2026-04-24 16:11:13	2026-04-24 16:11:13
8771	14	561	2026-04-24 16:11:13	2026-04-24 16:11:13
8772	14	562	2026-04-24 16:11:13	2026-04-24 16:11:13
8773	14	563	2026-04-24 16:11:13	2026-04-24 16:11:13
8774	14	199	2026-04-24 16:11:13	2026-04-24 16:11:13
8775	14	690	2026-04-24 16:11:13	2026-04-24 16:11:13
8776	14	344	2026-04-24 16:11:13	2026-04-24 16:11:13
8777	14	345	2026-04-24 16:11:13	2026-04-24 16:11:13
8778	14	691	2026-04-24 16:11:13	2026-04-24 16:11:13
8779	14	696	2026-04-24 16:11:13	2026-04-24 16:11:13
8780	14	697	2026-04-24 16:11:13	2026-04-24 16:11:13
8781	14	174	2026-04-24 16:11:13	2026-04-24 16:11:13
8782	14	176	2026-04-24 16:11:13	2026-04-24 16:11:13
8783	14	177	2026-04-24 16:11:13	2026-04-24 16:11:13
8784	14	178	2026-04-24 16:11:13	2026-04-24 16:11:13
8785	14	179	2026-04-24 16:11:13	2026-04-24 16:11:13
8786	14	180	2026-04-24 16:11:13	2026-04-24 16:11:13
8787	14	181	2026-04-24 16:11:13	2026-04-24 16:11:13
8788	14	182	2026-04-24 16:11:13	2026-04-24 16:11:13
8789	14	183	2026-04-24 16:11:13	2026-04-24 16:11:13
8790	14	184	2026-04-24 16:11:13	2026-04-24 16:11:13
8791	14	185	2026-04-24 16:11:13	2026-04-24 16:11:13
8792	14	186	2026-04-24 16:11:13	2026-04-24 16:11:13
8793	14	187	2026-04-24 16:11:13	2026-04-24 16:11:13
8794	14	188	2026-04-24 16:11:13	2026-04-24 16:11:13
8795	14	189	2026-04-24 16:11:13	2026-04-24 16:11:13
8796	14	190	2026-04-24 16:11:13	2026-04-24 16:11:13
8797	14	191	2026-04-24 16:11:13	2026-04-24 16:11:13
8798	14	192	2026-04-24 16:11:13	2026-04-24 16:11:13
8799	14	193	2026-04-24 16:11:13	2026-04-24 16:11:13
8800	14	194	2026-04-24 16:11:13	2026-04-24 16:11:13
8801	14	195	2026-04-24 16:11:13	2026-04-24 16:11:13
8802	14	196	2026-04-24 16:11:13	2026-04-24 16:11:13
8803	14	197	2026-04-24 16:11:13	2026-04-24 16:11:13
8804	14	198	2026-04-24 16:11:13	2026-04-24 16:11:13
8805	14	200	2026-04-24 16:11:13	2026-04-24 16:11:13
8806	14	201	2026-04-24 16:11:13	2026-04-24 16:11:13
8807	14	202	2026-04-24 16:11:13	2026-04-24 16:11:13
8808	14	203	2026-04-24 16:11:13	2026-04-24 16:11:13
8809	14	204	2026-04-24 16:11:13	2026-04-24 16:11:13
8810	14	205	2026-04-24 16:11:13	2026-04-24 16:11:13
8811	14	206	2026-04-24 16:11:13	2026-04-24 16:11:13
8812	14	207	2026-04-24 16:11:13	2026-04-24 16:11:13
8813	14	208	2026-04-24 16:11:13	2026-04-24 16:11:13
8814	14	209	2026-04-24 16:11:13	2026-04-24 16:11:13
8815	14	210	2026-04-24 16:11:13	2026-04-24 16:11:13
8816	14	211	2026-04-24 16:11:13	2026-04-24 16:11:13
8817	14	212	2026-04-24 16:11:13	2026-04-24 16:11:13
8818	14	213	2026-04-24 16:11:13	2026-04-24 16:11:13
8819	14	215	2026-04-24 16:11:13	2026-04-24 16:11:13
8820	14	335	2026-04-24 16:11:13	2026-04-24 16:11:13
8821	14	336	2026-04-24 16:11:13	2026-04-24 16:11:13
8822	14	337	2026-04-24 16:11:13	2026-04-24 16:11:13
8823	14	338	2026-04-24 16:11:13	2026-04-24 16:11:13
8824	14	381	2026-04-24 16:11:13	2026-04-24 16:11:13
8825	14	382	2026-04-24 16:11:13	2026-04-24 16:11:13
8826	14	383	2026-04-24 16:11:13	2026-04-24 16:11:13
8827	14	175	2026-04-24 16:11:13	2026-04-24 16:11:13
8828	14	214	2026-04-24 16:11:13	2026-04-24 16:11:13
8829	14	216	2026-04-24 16:11:13	2026-04-24 16:11:13
8830	14	217	2026-04-24 16:11:13	2026-04-24 16:11:13
8831	14	218	2026-04-24 16:11:13	2026-04-24 16:11:13
8832	14	219	2026-04-24 16:11:13	2026-04-24 16:11:13
8833	14	220	2026-04-24 16:11:13	2026-04-24 16:11:13
8834	14	221	2026-04-24 16:11:13	2026-04-24 16:11:13
8835	14	222	2026-04-24 16:11:13	2026-04-24 16:11:13
8836	14	223	2026-04-24 16:11:13	2026-04-24 16:11:13
8837	14	533	2026-04-24 16:11:13	2026-04-24 16:11:13
8838	14	534	2026-04-24 16:11:13	2026-04-24 16:11:13
8839	14	539	2026-04-24 16:11:13	2026-04-24 16:11:13
8840	14	535	2026-04-24 16:11:13	2026-04-24 16:11:13
8841	14	558	2026-04-24 16:11:13	2026-04-24 16:11:13
8842	14	559	2026-04-24 16:11:13	2026-04-24 16:11:13
8843	14	647	2026-04-24 16:11:13	2026-04-24 16:11:13
8844	14	667	2026-04-24 16:11:13	2026-04-24 16:11:13
8845	14	668	2026-04-24 16:11:13	2026-04-24 16:11:13
8846	14	673	2026-04-24 16:11:13	2026-04-24 16:11:13
8847	14	770	2026-04-24 16:11:13	2026-04-24 16:11:13
8848	14	771	2026-04-24 16:11:13	2026-04-24 16:11:13
8849	14	772	2026-04-24 16:11:13	2026-04-24 16:11:13
8850	15	14	2026-05-22 12:50:35	2026-05-22 12:50:35
8851	15	15	2026-05-22 12:50:35	2026-05-22 12:50:35
8852	15	16	2026-05-22 12:50:35	2026-05-22 12:50:35
8853	15	17	2026-05-22 12:50:35	2026-05-22 12:50:35
8854	15	18	2026-05-22 12:50:35	2026-05-22 12:50:35
8855	15	19	2026-05-22 12:50:35	2026-05-22 12:50:35
8856	15	20	2026-05-22 12:50:35	2026-05-22 12:50:35
8857	15	21	2026-05-22 12:50:35	2026-05-22 12:50:35
8858	15	22	2026-05-22 12:50:35	2026-05-22 12:50:35
8859	15	23	2026-05-22 12:50:35	2026-05-22 12:50:35
8860	15	24	2026-05-22 12:50:35	2026-05-22 12:50:35
8861	15	448	2026-05-22 12:50:35	2026-05-22 12:50:35
8862	15	441	2026-05-22 12:50:35	2026-05-22 12:50:35
8863	15	442	2026-05-22 12:50:35	2026-05-22 12:50:35
8864	15	546	2026-05-22 12:50:35	2026-05-22 12:50:35
8865	15	584	2026-05-22 12:50:35	2026-05-22 12:50:35
8866	15	614	2026-05-22 12:50:35	2026-05-22 12:50:35
8867	15	615	2026-05-22 12:50:35	2026-05-22 12:50:35
8868	15	617	2026-05-22 12:50:35	2026-05-22 12:50:35
8869	15	618	2026-05-22 12:50:35	2026-05-22 12:50:35
8870	15	224	2026-05-22 12:50:35	2026-05-22 12:50:35
8871	15	225	2026-05-22 12:50:35	2026-05-22 12:50:35
8872	15	226	2026-05-22 12:50:35	2026-05-22 12:50:35
8873	15	227	2026-05-22 12:50:35	2026-05-22 12:50:35
8874	15	228	2026-05-22 12:50:35	2026-05-22 12:50:35
8875	15	229	2026-05-22 12:50:35	2026-05-22 12:50:35
8876	15	230	2026-05-22 12:50:35	2026-05-22 12:50:35
8877	15	231	2026-05-22 12:50:35	2026-05-22 12:50:35
8878	15	232	2026-05-22 12:50:35	2026-05-22 12:50:35
8879	15	233	2026-05-22 12:50:35	2026-05-22 12:50:35
8880	15	359	2026-05-22 12:50:35	2026-05-22 12:50:35
8881	15	360	2026-05-22 12:50:35	2026-05-22 12:50:35
8882	15	234	2026-05-22 12:50:35	2026-05-22 12:50:35
8883	15	235	2026-05-22 12:50:35	2026-05-22 12:50:35
8884	15	236	2026-05-22 12:50:35	2026-05-22 12:50:35
8885	15	237	2026-05-22 12:50:35	2026-05-22 12:50:35
8886	15	238	2026-05-22 12:50:35	2026-05-22 12:50:35
8887	15	239	2026-05-22 12:50:35	2026-05-22 12:50:35
8888	15	240	2026-05-22 12:50:35	2026-05-22 12:50:35
8889	15	241	2026-05-22 12:50:35	2026-05-22 12:50:35
8890	15	242	2026-05-22 12:50:35	2026-05-22 12:50:35
8891	15	243	2026-05-22 12:50:35	2026-05-22 12:50:35
8892	15	244	2026-05-22 12:50:35	2026-05-22 12:50:35
8893	15	245	2026-05-22 12:50:35	2026-05-22 12:50:35
8894	15	246	2026-05-22 12:50:35	2026-05-22 12:50:35
8895	15	247	2026-05-22 12:50:35	2026-05-22 12:50:35
8896	15	248	2026-05-22 12:50:35	2026-05-22 12:50:35
8897	15	249	2026-05-22 12:50:35	2026-05-22 12:50:35
8898	15	250	2026-05-22 12:50:35	2026-05-22 12:50:35
8899	15	251	2026-05-22 12:50:35	2026-05-22 12:50:35
8900	15	252	2026-05-22 12:50:35	2026-05-22 12:50:35
8901	15	253	2026-05-22 12:50:35	2026-05-22 12:50:35
8902	15	254	2026-05-22 12:50:35	2026-05-22 12:50:35
8903	15	255	2026-05-22 12:50:35	2026-05-22 12:50:35
8904	15	256	2026-05-22 12:50:35	2026-05-22 12:50:35
8905	15	257	2026-05-22 12:50:35	2026-05-22 12:50:35
8906	15	258	2026-05-22 12:50:35	2026-05-22 12:50:35
8907	15	259	2026-05-22 12:50:35	2026-05-22 12:50:35
8908	15	260	2026-05-22 12:50:35	2026-05-22 12:50:35
8909	15	261	2026-05-22 12:50:35	2026-05-22 12:50:35
8910	15	262	2026-05-22 12:50:35	2026-05-22 12:50:35
8911	15	263	2026-05-22 12:50:35	2026-05-22 12:50:35
8912	15	264	2026-05-22 12:50:35	2026-05-22 12:50:35
8913	15	509	2026-05-22 12:50:35	2026-05-22 12:50:35
8914	15	265	2026-05-22 12:50:35	2026-05-22 12:50:35
8915	15	266	2026-05-22 12:50:35	2026-05-22 12:50:35
8916	15	267	2026-05-22 12:50:35	2026-05-22 12:50:35
8917	15	268	2026-05-22 12:50:35	2026-05-22 12:50:35
8918	15	269	2026-05-22 12:50:35	2026-05-22 12:50:35
8919	15	270	2026-05-22 12:50:35	2026-05-22 12:50:35
8920	15	271	2026-05-22 12:50:35	2026-05-22 12:50:35
8921	15	272	2026-05-22 12:50:35	2026-05-22 12:50:35
8922	15	273	2026-05-22 12:50:35	2026-05-22 12:50:35
8923	15	274	2026-05-22 12:50:35	2026-05-22 12:50:35
8924	15	275	2026-05-22 12:50:35	2026-05-22 12:50:35
8925	15	276	2026-05-22 12:50:35	2026-05-22 12:50:35
8926	15	277	2026-05-22 12:50:35	2026-05-22 12:50:35
8927	15	278	2026-05-22 12:50:35	2026-05-22 12:50:35
8928	15	279	2026-05-22 12:50:35	2026-05-22 12:50:35
8929	15	280	2026-05-22 12:50:35	2026-05-22 12:50:35
8930	15	281	2026-05-22 12:50:35	2026-05-22 12:50:35
8931	15	282	2026-05-22 12:50:35	2026-05-22 12:50:35
8932	15	283	2026-05-22 12:50:35	2026-05-22 12:50:35
8933	15	284	2026-05-22 12:50:35	2026-05-22 12:50:35
8934	15	285	2026-05-22 12:50:35	2026-05-22 12:50:35
8935	15	286	2026-05-22 12:50:35	2026-05-22 12:50:35
8936	15	287	2026-05-22 12:50:35	2026-05-22 12:50:35
8937	15	288	2026-05-22 12:50:35	2026-05-22 12:50:35
8938	15	289	2026-05-22 12:50:35	2026-05-22 12:50:35
8939	15	294	2026-05-22 12:50:35	2026-05-22 12:50:35
8940	15	295	2026-05-22 12:50:35	2026-05-22 12:50:35
8941	15	296	2026-05-22 12:50:35	2026-05-22 12:50:35
8942	15	297	2026-05-22 12:50:35	2026-05-22 12:50:35
8943	15	500	2026-05-22 12:50:35	2026-05-22 12:50:35
8944	15	501	2026-05-22 12:50:35	2026-05-22 12:50:35
8945	15	502	2026-05-22 12:50:35	2026-05-22 12:50:35
8946	15	510	2026-05-22 12:50:35	2026-05-22 12:50:35
8947	15	511	2026-05-22 12:50:35	2026-05-22 12:50:35
8948	15	512	2026-05-22 12:50:35	2026-05-22 12:50:35
8949	15	567	2026-05-22 12:50:35	2026-05-22 12:50:35
8950	15	594	2026-05-22 12:50:35	2026-05-22 12:50:35
8951	15	679	2026-05-22 12:50:35	2026-05-22 12:50:35
8952	15	709	2026-05-22 12:50:35	2026-05-22 12:50:35
8953	15	298	2026-05-22 12:50:35	2026-05-22 12:50:35
8954	15	299	2026-05-22 12:50:35	2026-05-22 12:50:35
8955	15	300	2026-05-22 12:50:35	2026-05-22 12:50:35
8956	15	310	2026-05-22 12:50:35	2026-05-22 12:50:35
8957	15	311	2026-05-22 12:50:35	2026-05-22 12:50:35
8958	15	312	2026-05-22 12:50:35	2026-05-22 12:50:35
8959	15	313	2026-05-22 12:50:35	2026-05-22 12:50:35
8960	15	314	2026-05-22 12:50:35	2026-05-22 12:50:35
8961	15	315	2026-05-22 12:50:35	2026-05-22 12:50:35
8962	15	316	2026-05-22 12:50:35	2026-05-22 12:50:35
8963	15	317	2026-05-22 12:50:35	2026-05-22 12:50:35
8964	15	318	2026-05-22 12:50:35	2026-05-22 12:50:35
8965	15	358	2026-05-22 12:50:35	2026-05-22 12:50:35
8966	15	365	2026-05-22 12:50:35	2026-05-22 12:50:35
8967	15	350	2026-05-22 12:50:35	2026-05-22 12:50:35
8968	15	351	2026-05-22 12:50:35	2026-05-22 12:50:35
8969	15	352	2026-05-22 12:50:35	2026-05-22 12:50:35
8970	15	353	2026-05-22 12:50:35	2026-05-22 12:50:35
8971	15	354	2026-05-22 12:50:35	2026-05-22 12:50:35
8972	15	355	2026-05-22 12:50:35	2026-05-22 12:50:35
8973	15	356	2026-05-22 12:50:35	2026-05-22 12:50:35
8974	15	357	2026-05-22 12:50:35	2026-05-22 12:50:35
8975	15	392	2026-05-22 12:50:35	2026-05-22 12:50:35
8976	15	396	2026-05-22 12:50:35	2026-05-22 12:50:35
8977	15	301	2026-05-22 12:50:35	2026-05-22 12:50:35
8978	15	302	2026-05-22 12:50:35	2026-05-22 12:50:35
8979	15	303	2026-05-22 12:50:35	2026-05-22 12:50:35
8980	15	304	2026-05-22 12:50:35	2026-05-22 12:50:35
8981	15	305	2026-05-22 12:50:35	2026-05-22 12:50:35
8982	15	306	2026-05-22 12:50:35	2026-05-22 12:50:35
8983	15	307	2026-05-22 12:50:35	2026-05-22 12:50:35
8984	15	308	2026-05-22 12:50:35	2026-05-22 12:50:35
8985	15	309	2026-05-22 12:50:35	2026-05-22 12:50:35
8986	15	590	2026-05-22 12:50:35	2026-05-22 12:50:35
8987	15	591	2026-05-22 12:50:35	2026-05-22 12:50:35
8988	15	319	2026-05-22 12:50:35	2026-05-22 12:50:35
8989	15	320	2026-05-22 12:50:35	2026-05-22 12:50:35
8990	15	321	2026-05-22 12:50:35	2026-05-22 12:50:35
8991	15	322	2026-05-22 12:50:35	2026-05-22 12:50:35
8992	15	323	2026-05-22 12:50:35	2026-05-22 12:50:35
8993	15	324	2026-05-22 12:50:35	2026-05-22 12:50:35
8994	15	325	2026-05-22 12:50:35	2026-05-22 12:50:35
8995	15	326	2026-05-22 12:50:35	2026-05-22 12:50:35
8996	15	327	2026-05-22 12:50:35	2026-05-22 12:50:35
8997	15	328	2026-05-22 12:50:35	2026-05-22 12:50:35
8998	15	676	2026-05-22 12:50:35	2026-05-22 12:50:35
8999	15	807	2026-05-22 12:50:35	2026-05-22 12:50:35
9000	15	808	2026-05-22 12:50:35	2026-05-22 12:50:35
9001	15	809	2026-05-22 12:50:35	2026-05-22 12:50:35
9002	15	810	2026-05-22 12:50:35	2026-05-22 12:50:35
9003	15	811	2026-05-22 12:50:35	2026-05-22 12:50:35
9004	15	812	2026-05-22 12:50:35	2026-05-22 12:50:35
9005	15	813	2026-05-22 12:50:35	2026-05-22 12:50:35
9006	15	814	2026-05-22 12:50:35	2026-05-22 12:50:35
9007	15	815	2026-05-22 12:50:35	2026-05-22 12:50:35
9008	15	816	2026-05-22 12:50:35	2026-05-22 12:50:35
9009	15	817	2026-05-22 12:50:35	2026-05-22 12:50:35
9010	15	818	2026-05-22 12:50:35	2026-05-22 12:50:35
9011	15	819	2026-05-22 12:50:35	2026-05-22 12:50:35
9012	15	820	2026-05-22 12:50:35	2026-05-22 12:50:35
9013	15	821	2026-05-22 12:50:35	2026-05-22 12:50:35
9014	15	822	2026-05-22 12:50:35	2026-05-22 12:50:35
9015	15	823	2026-05-22 12:50:35	2026-05-22 12:50:35
9016	15	824	2026-05-22 12:50:35	2026-05-22 12:50:35
9017	15	825	2026-05-22 12:50:35	2026-05-22 12:50:35
9018	15	826	2026-05-22 12:50:35	2026-05-22 12:50:35
9019	15	827	2026-05-22 12:50:35	2026-05-22 12:50:35
9020	15	828	2026-05-22 12:50:35	2026-05-22 12:50:35
9021	15	829	2026-05-22 12:50:35	2026-05-22 12:50:35
9022	15	830	2026-05-22 12:50:35	2026-05-22 12:50:35
9023	15	831	2026-05-22 12:50:35	2026-05-22 12:50:35
9024	15	339	2026-05-22 12:50:35	2026-05-22 12:50:35
9025	15	385	2026-05-22 12:50:35	2026-05-22 12:50:35
9026	15	386	2026-05-22 12:50:35	2026-05-22 12:50:35
9027	15	387	2026-05-22 12:50:35	2026-05-22 12:50:35
9028	15	388	2026-05-22 12:50:35	2026-05-22 12:50:35
9029	15	389	2026-05-22 12:50:35	2026-05-22 12:50:35
9030	15	390	2026-05-22 12:50:35	2026-05-22 12:50:35
9031	15	391	2026-05-22 12:50:35	2026-05-22 12:50:35
9032	15	555	2026-05-22 12:50:35	2026-05-22 12:50:35
9033	15	556	2026-05-22 12:50:35	2026-05-22 12:50:35
9034	15	557	2026-05-22 12:50:35	2026-05-22 12:50:35
9035	15	455	2026-05-22 12:50:35	2026-05-22 12:50:35
9036	15	456	2026-05-22 12:50:35	2026-05-22 12:50:35
9037	15	457	2026-05-22 12:50:35	2026-05-22 12:50:35
9038	15	458	2026-05-22 12:50:35	2026-05-22 12:50:35
9039	15	459	2026-05-22 12:50:35	2026-05-22 12:50:35
9040	15	460	2026-05-22 12:50:35	2026-05-22 12:50:35
9041	15	461	2026-05-22 12:50:35	2026-05-22 12:50:35
9042	15	462	2026-05-22 12:50:35	2026-05-22 12:50:35
9043	15	463	2026-05-22 12:50:35	2026-05-22 12:50:35
9044	15	465	2026-05-22 12:50:35	2026-05-22 12:50:35
9045	15	466	2026-05-22 12:50:35	2026-05-22 12:50:35
9046	15	467	2026-05-22 12:50:35	2026-05-22 12:50:35
9047	15	468	2026-05-22 12:50:35	2026-05-22 12:50:35
9048	15	469	2026-05-22 12:50:35	2026-05-22 12:50:35
9049	15	470	2026-05-22 12:50:35	2026-05-22 12:50:35
9050	15	471	2026-05-22 12:50:35	2026-05-22 12:50:35
9051	15	472	2026-05-22 12:50:35	2026-05-22 12:50:35
9052	15	473	2026-05-22 12:50:35	2026-05-22 12:50:35
9053	15	474	2026-05-22 12:50:36	2026-05-22 12:50:36
9054	15	476	2026-05-22 12:50:36	2026-05-22 12:50:36
9055	15	478	2026-05-22 12:50:36	2026-05-22 12:50:36
9056	15	479	2026-05-22 12:50:36	2026-05-22 12:50:36
9057	15	475	2026-05-22 12:50:36	2026-05-22 12:50:36
9058	15	710	2026-05-22 12:50:36	2026-05-22 12:50:36
9059	15	714	2026-05-22 12:50:36	2026-05-22 12:50:36
9060	15	715	2026-05-22 12:50:36	2026-05-22 12:50:36
9061	15	716	2026-05-22 12:50:36	2026-05-22 12:50:36
9062	15	717	2026-05-22 12:50:36	2026-05-22 12:50:36
9063	15	718	2026-05-22 12:50:36	2026-05-22 12:50:36
9064	15	719	2026-05-22 12:50:36	2026-05-22 12:50:36
9065	15	720	2026-05-22 12:50:36	2026-05-22 12:50:36
9066	15	721	2026-05-22 12:50:36	2026-05-22 12:50:36
9067	15	722	2026-05-22 12:50:36	2026-05-22 12:50:36
9068	15	723	2026-05-22 12:50:36	2026-05-22 12:50:36
9069	15	724	2026-05-22 12:50:36	2026-05-22 12:50:36
9070	15	725	2026-05-22 12:50:36	2026-05-22 12:50:36
9071	15	726	2026-05-22 12:50:36	2026-05-22 12:50:36
9072	15	727	2026-05-22 12:50:36	2026-05-22 12:50:36
9073	15	728	2026-05-22 12:50:36	2026-05-22 12:50:36
9074	15	729	2026-05-22 12:50:36	2026-05-22 12:50:36
9075	15	736	2026-05-22 12:50:36	2026-05-22 12:50:36
9076	15	737	2026-05-22 12:50:36	2026-05-22 12:50:36
9077	15	738	2026-05-22 12:50:36	2026-05-22 12:50:36
9078	15	739	2026-05-22 12:50:36	2026-05-22 12:50:36
9079	15	740	2026-05-22 12:50:36	2026-05-22 12:50:36
9080	15	741	2026-05-22 12:50:36	2026-05-22 12:50:36
9081	15	742	2026-05-22 12:50:36	2026-05-22 12:50:36
9082	15	743	2026-05-22 12:50:36	2026-05-22 12:50:36
9083	15	744	2026-05-22 12:50:36	2026-05-22 12:50:36
9084	15	746	2026-05-22 12:50:36	2026-05-22 12:50:36
9085	15	747	2026-05-22 12:50:36	2026-05-22 12:50:36
9086	15	806	2026-05-22 12:50:36	2026-05-22 12:50:36
9087	15	25	2026-05-22 12:50:36	2026-05-22 12:50:36
9088	15	487	2026-05-22 12:50:36	2026-05-22 12:50:36
9089	15	488	2026-05-22 12:50:36	2026-05-22 12:50:36
9090	15	489	2026-05-22 12:50:36	2026-05-22 12:50:36
9091	15	490	2026-05-22 12:50:36	2026-05-22 12:50:36
9092	15	491	2026-05-22 12:50:36	2026-05-22 12:50:36
9093	15	551	2026-05-22 12:50:36	2026-05-22 12:50:36
9094	15	552	2026-05-22 12:50:36	2026-05-22 12:50:36
9095	15	568	2026-05-22 12:50:36	2026-05-22 12:50:36
9096	15	569	2026-05-22 12:50:36	2026-05-22 12:50:36
9097	15	570	2026-05-22 12:50:36	2026-05-22 12:50:36
9098	15	492	2026-05-22 12:50:36	2026-05-22 12:50:36
9099	15	493	2026-05-22 12:50:36	2026-05-22 12:50:36
9100	15	494	2026-05-22 12:50:36	2026-05-22 12:50:36
9101	15	495	2026-05-22 12:50:36	2026-05-22 12:50:36
9102	15	497	2026-05-22 12:50:36	2026-05-22 12:50:36
9103	15	496	2026-05-22 12:50:36	2026-05-22 12:50:36
9104	15	572	2026-05-22 12:50:36	2026-05-22 12:50:36
9105	15	573	2026-05-22 12:50:36	2026-05-22 12:50:36
9106	15	574	2026-05-22 12:50:36	2026-05-22 12:50:36
9107	15	575	2026-05-22 12:50:36	2026-05-22 12:50:36
9108	15	622	2026-05-22 12:50:36	2026-05-22 12:50:36
9109	15	378	2026-05-22 12:50:36	2026-05-22 12:50:36
9110	15	528	2026-05-22 12:50:36	2026-05-22 12:50:36
9111	15	595	2026-05-22 12:50:36	2026-05-22 12:50:36
9112	15	596	2026-05-22 12:50:36	2026-05-22 12:50:36
9113	15	597	2026-05-22 12:50:36	2026-05-22 12:50:36
9114	15	598	2026-05-22 12:50:36	2026-05-22 12:50:36
9115	15	599	2026-05-22 12:50:36	2026-05-22 12:50:36
9116	15	600	2026-05-22 12:50:36	2026-05-22 12:50:36
9117	15	601	2026-05-22 12:50:36	2026-05-22 12:50:36
9118	15	602	2026-05-22 12:50:36	2026-05-22 12:50:36
9119	15	603	2026-05-22 12:50:36	2026-05-22 12:50:36
9120	15	604	2026-05-22 12:50:36	2026-05-22 12:50:36
9121	15	605	2026-05-22 12:50:36	2026-05-22 12:50:36
9122	15	606	2026-05-22 12:50:36	2026-05-22 12:50:36
9123	15	607	2026-05-22 12:50:36	2026-05-22 12:50:36
9124	15	608	2026-05-22 12:50:36	2026-05-22 12:50:36
9125	15	609	2026-05-22 12:50:36	2026-05-22 12:50:36
9126	15	610	2026-05-22 12:50:36	2026-05-22 12:50:36
9127	15	611	2026-05-22 12:50:36	2026-05-22 12:50:36
9128	15	612	2026-05-22 12:50:36	2026-05-22 12:50:36
9129	15	613	2026-05-22 12:50:36	2026-05-22 12:50:36
9130	15	677	2026-05-22 12:50:36	2026-05-22 12:50:36
9131	15	678	2026-05-22 12:50:36	2026-05-22 12:50:36
9132	15	706	2026-05-22 12:50:36	2026-05-22 12:50:36
9133	15	707	2026-05-22 12:50:36	2026-05-22 12:50:36
9134	15	623	2026-05-22 12:50:36	2026-05-22 12:50:36
9135	15	624	2026-05-22 12:50:36	2026-05-22 12:50:36
9136	15	625	2026-05-22 12:50:36	2026-05-22 12:50:36
9137	15	626	2026-05-22 12:50:36	2026-05-22 12:50:36
9138	15	627	2026-05-22 12:50:36	2026-05-22 12:50:36
9139	15	628	2026-05-22 12:50:36	2026-05-22 12:50:36
9140	15	629	2026-05-22 12:50:36	2026-05-22 12:50:36
9141	15	630	2026-05-22 12:50:36	2026-05-22 12:50:36
9142	15	631	2026-05-22 12:50:36	2026-05-22 12:50:36
9143	15	632	2026-05-22 12:50:36	2026-05-22 12:50:36
9144	15	633	2026-05-22 12:50:36	2026-05-22 12:50:36
9145	15	634	2026-05-22 12:50:36	2026-05-22 12:50:36
9146	15	635	2026-05-22 12:50:36	2026-05-22 12:50:36
9147	15	636	2026-05-22 12:50:36	2026-05-22 12:50:36
9148	15	637	2026-05-22 12:50:36	2026-05-22 12:50:36
9149	15	638	2026-05-22 12:50:36	2026-05-22 12:50:36
9150	15	659	2026-05-22 12:50:36	2026-05-22 12:50:36
9151	15	639	2026-05-22 12:50:36	2026-05-22 12:50:36
9152	15	640	2026-05-22 12:50:36	2026-05-22 12:50:36
9153	15	641	2026-05-22 12:50:36	2026-05-22 12:50:36
9154	15	642	2026-05-22 12:50:36	2026-05-22 12:50:36
9155	15	643	2026-05-22 12:50:36	2026-05-22 12:50:36
9156	15	644	2026-05-22 12:50:36	2026-05-22 12:50:36
9157	15	645	2026-05-22 12:50:36	2026-05-22 12:50:36
9158	15	646	2026-05-22 12:50:36	2026-05-22 12:50:36
9159	15	700	2026-05-22 12:50:36	2026-05-22 12:50:36
9160	15	701	2026-05-22 12:50:36	2026-05-22 12:50:36
9161	15	702	2026-05-22 12:50:36	2026-05-22 12:50:36
9162	15	703	2026-05-22 12:50:36	2026-05-22 12:50:36
9163	15	704	2026-05-22 12:50:36	2026-05-22 12:50:36
9164	15	705	2026-05-22 12:50:36	2026-05-22 12:50:36
9165	15	745	2026-05-22 12:50:36	2026-05-22 12:50:36
9166	15	748	2026-05-22 12:50:36	2026-05-22 12:50:36
9167	15	749	2026-05-22 12:50:36	2026-05-22 12:50:36
9168	15	750	2026-05-22 12:50:36	2026-05-22 12:50:36
9169	15	751	2026-05-22 12:50:36	2026-05-22 12:50:36
9170	15	752	2026-05-22 12:50:36	2026-05-22 12:50:36
9171	15	753	2026-05-22 12:50:36	2026-05-22 12:50:36
9172	15	754	2026-05-22 12:50:36	2026-05-22 12:50:36
9173	15	755	2026-05-22 12:50:36	2026-05-22 12:50:36
9174	15	756	2026-05-22 12:50:36	2026-05-22 12:50:36
9175	15	757	2026-05-22 12:50:36	2026-05-22 12:50:36
9176	15	758	2026-05-22 12:50:36	2026-05-22 12:50:36
9177	15	759	2026-05-22 12:50:36	2026-05-22 12:50:36
9178	15	760	2026-05-22 12:50:36	2026-05-22 12:50:36
9179	15	761	2026-05-22 12:50:36	2026-05-22 12:50:36
9180	15	762	2026-05-22 12:50:36	2026-05-22 12:50:36
9181	15	763	2026-05-22 12:50:36	2026-05-22 12:50:36
9182	15	764	2026-05-22 12:50:36	2026-05-22 12:50:36
9183	15	765	2026-05-22 12:50:36	2026-05-22 12:50:36
9184	15	766	2026-05-22 12:50:36	2026-05-22 12:50:36
9185	15	767	2026-05-22 12:50:36	2026-05-22 12:50:36
9186	15	768	2026-05-22 12:50:36	2026-05-22 12:50:36
9187	15	769	2026-05-22 12:50:36	2026-05-22 12:50:36
9188	15	775	2026-05-22 12:50:36	2026-05-22 12:50:36
9189	15	776	2026-05-22 12:50:36	2026-05-22 12:50:36
9190	15	777	2026-05-22 12:50:36	2026-05-22 12:50:36
9191	15	778	2026-05-22 12:50:36	2026-05-22 12:50:36
9192	15	779	2026-05-22 12:50:36	2026-05-22 12:50:36
9193	15	780	2026-05-22 12:50:36	2026-05-22 12:50:36
9194	15	781	2026-05-22 12:50:36	2026-05-22 12:50:36
9195	15	782	2026-05-22 12:50:36	2026-05-22 12:50:36
9196	15	783	2026-05-22 12:50:36	2026-05-22 12:50:36
9197	15	784	2026-05-22 12:50:36	2026-05-22 12:50:36
9198	15	785	2026-05-22 12:50:36	2026-05-22 12:50:36
9199	15	786	2026-05-22 12:50:36	2026-05-22 12:50:36
9200	15	787	2026-05-22 12:50:36	2026-05-22 12:50:36
9201	15	788	2026-05-22 12:50:36	2026-05-22 12:50:36
9202	15	789	2026-05-22 12:50:36	2026-05-22 12:50:36
9203	15	790	2026-05-22 12:50:36	2026-05-22 12:50:36
9204	15	791	2026-05-22 12:50:36	2026-05-22 12:50:36
9205	15	792	2026-05-22 12:50:36	2026-05-22 12:50:36
9206	15	793	2026-05-22 12:50:36	2026-05-22 12:50:36
9207	15	794	2026-05-22 12:50:36	2026-05-22 12:50:36
9208	15	795	2026-05-22 12:50:36	2026-05-22 12:50:36
9209	15	796	2026-05-22 12:50:36	2026-05-22 12:50:36
9210	15	797	2026-05-22 12:50:36	2026-05-22 12:50:36
9211	15	798	2026-05-22 12:50:36	2026-05-22 12:50:36
9212	15	799	2026-05-22 12:50:36	2026-05-22 12:50:36
9213	15	800	2026-05-22 12:50:36	2026-05-22 12:50:36
9214	15	801	2026-05-22 12:50:36	2026-05-22 12:50:36
9215	15	802	2026-05-22 12:50:36	2026-05-22 12:50:36
9216	15	803	2026-05-22 12:50:36	2026-05-22 12:50:36
9217	15	804	2026-05-22 12:50:36	2026-05-22 12:50:36
9218	15	805	2026-05-22 12:50:36	2026-05-22 12:50:36
9219	15	26	2026-05-22 12:50:36	2026-05-22 12:50:36
9220	15	28	2026-05-22 12:50:36	2026-05-22 12:50:36
9221	15	29	2026-05-22 12:50:36	2026-05-22 12:50:36
9222	15	30	2026-05-22 12:50:36	2026-05-22 12:50:36
9223	15	31	2026-05-22 12:50:36	2026-05-22 12:50:36
9224	15	32	2026-05-22 12:50:36	2026-05-22 12:50:36
9225	15	33	2026-05-22 12:50:36	2026-05-22 12:50:36
9226	15	367	2026-05-22 12:50:36	2026-05-22 12:50:36
9227	15	368	2026-05-22 12:50:36	2026-05-22 12:50:36
9228	15	369	2026-05-22 12:50:36	2026-05-22 12:50:36
9229	15	370	2026-05-22 12:50:36	2026-05-22 12:50:36
9230	15	371	2026-05-22 12:50:36	2026-05-22 12:50:36
9231	15	373	2026-05-22 12:50:36	2026-05-22 12:50:36
9232	15	395	2026-05-22 12:50:36	2026-05-22 12:50:36
9233	15	39	2026-05-22 12:50:36	2026-05-22 12:50:36
9234	15	379	2026-05-22 12:50:36	2026-05-22 12:50:36
9235	15	380	2026-05-22 12:50:36	2026-05-22 12:50:36
9236	15	34	2026-05-22 12:50:36	2026-05-22 12:50:36
9237	15	35	2026-05-22 12:50:36	2026-05-22 12:50:36
9238	15	36	2026-05-22 12:50:36	2026-05-22 12:50:36
9239	15	37	2026-05-22 12:50:36	2026-05-22 12:50:36
9240	15	38	2026-05-22 12:50:36	2026-05-22 12:50:36
9241	15	424	2026-05-22 12:50:36	2026-05-22 12:50:36
9242	15	425	2026-05-22 12:50:36	2026-05-22 12:50:36
9243	15	427	2026-05-22 12:50:36	2026-05-22 12:50:36
9244	15	443	2026-05-22 12:50:36	2026-05-22 12:50:36
9245	15	449	2026-05-22 12:50:36	2026-05-22 12:50:36
9246	15	453	2026-05-22 12:50:36	2026-05-22 12:50:36
9247	15	454	2026-05-22 12:50:36	2026-05-22 12:50:36
9248	15	464	2026-05-22 12:50:36	2026-05-22 12:50:36
9249	15	450	2026-05-22 12:50:36	2026-05-22 12:50:36
9250	15	498	2026-05-22 12:50:36	2026-05-22 12:50:36
9251	15	499	2026-05-22 12:50:36	2026-05-22 12:50:36
9252	15	513	2026-05-22 12:50:36	2026-05-22 12:50:36
9253	15	514	2026-05-22 12:50:36	2026-05-22 12:50:36
9254	15	515	2026-05-22 12:50:36	2026-05-22 12:50:36
9255	15	516	2026-05-22 12:50:36	2026-05-22 12:50:36
9256	15	517	2026-05-22 12:50:36	2026-05-22 12:50:36
9257	15	518	2026-05-22 12:50:36	2026-05-22 12:50:36
9258	15	520	2026-05-22 12:50:36	2026-05-22 12:50:36
9259	15	521	2026-05-22 12:50:36	2026-05-22 12:50:36
9260	15	522	2026-05-22 12:50:36	2026-05-22 12:50:36
9261	15	523	2026-05-22 12:50:36	2026-05-22 12:50:36
9262	15	531	2026-05-22 12:50:36	2026-05-22 12:50:36
9263	15	547	2026-05-22 12:50:36	2026-05-22 12:50:36
9264	15	548	2026-05-22 12:50:36	2026-05-22 12:50:36
9265	15	549	2026-05-22 12:50:36	2026-05-22 12:50:36
9266	15	550	2026-05-22 12:50:36	2026-05-22 12:50:36
9267	15	553	2026-05-22 12:50:36	2026-05-22 12:50:36
9268	15	554	2026-05-22 12:50:36	2026-05-22 12:50:36
9269	15	586	2026-05-22 12:50:36	2026-05-22 12:50:36
9270	15	593	2026-05-22 12:50:36	2026-05-22 12:50:36
9271	15	652	2026-05-22 12:50:36	2026-05-22 12:50:36
9272	15	653	2026-05-22 12:50:36	2026-05-22 12:50:36
9273	15	654	2026-05-22 12:50:36	2026-05-22 12:50:36
9274	15	655	2026-05-22 12:50:36	2026-05-22 12:50:36
9275	15	656	2026-05-22 12:50:36	2026-05-22 12:50:36
9276	15	657	2026-05-22 12:50:36	2026-05-22 12:50:36
9277	15	658	2026-05-22 12:50:36	2026-05-22 12:50:36
9278	15	682	2026-05-22 12:50:36	2026-05-22 12:50:36
9279	15	683	2026-05-22 12:50:36	2026-05-22 12:50:36
9280	15	684	2026-05-22 12:50:36	2026-05-22 12:50:36
9281	15	685	2026-05-22 12:50:36	2026-05-22 12:50:36
9282	15	686	2026-05-22 12:50:36	2026-05-22 12:50:36
9283	15	687	2026-05-22 12:50:36	2026-05-22 12:50:36
9284	15	688	2026-05-22 12:50:36	2026-05-22 12:50:36
9285	15	27	2026-05-22 12:50:36	2026-05-22 12:50:36
9286	15	692	2026-05-22 12:50:36	2026-05-22 12:50:36
9287	15	708	2026-05-22 12:50:36	2026-05-22 12:50:36
9288	15	731	2026-05-22 12:50:36	2026-05-22 12:50:36
9289	15	732	2026-05-22 12:50:36	2026-05-22 12:50:36
9290	15	40	2026-05-22 12:50:36	2026-05-22 12:50:36
9291	15	44	2026-05-22 12:50:36	2026-05-22 12:50:36
9292	15	45	2026-05-22 12:50:36	2026-05-22 12:50:36
9293	15	46	2026-05-22 12:50:36	2026-05-22 12:50:36
9294	15	47	2026-05-22 12:50:36	2026-05-22 12:50:36
9295	15	48	2026-05-22 12:50:36	2026-05-22 12:50:36
9296	15	49	2026-05-22 12:50:36	2026-05-22 12:50:36
9297	15	50	2026-05-22 12:50:36	2026-05-22 12:50:36
9298	15	51	2026-05-22 12:50:36	2026-05-22 12:50:36
9299	15	52	2026-05-22 12:50:36	2026-05-22 12:50:36
9300	15	372	2026-05-22 12:50:36	2026-05-22 12:50:36
9301	15	384	2026-05-22 12:50:36	2026-05-22 12:50:36
9302	15	41	2026-05-22 12:50:36	2026-05-22 12:50:36
9303	15	42	2026-05-22 12:50:36	2026-05-22 12:50:36
9304	15	43	2026-05-22 12:50:36	2026-05-22 12:50:36
9305	15	529	2026-05-22 12:50:36	2026-05-22 12:50:36
9306	15	526	2026-05-22 12:50:36	2026-05-22 12:50:36
9307	15	525	2026-05-22 12:50:36	2026-05-22 12:50:36
9308	15	527	2026-05-22 12:50:36	2026-05-22 12:50:36
9309	15	530	2026-05-22 12:50:36	2026-05-22 12:50:36
9310	15	519	2026-05-22 12:50:36	2026-05-22 12:50:36
9311	15	587	2026-05-22 12:50:36	2026-05-22 12:50:36
9312	15	592	2026-05-22 12:50:36	2026-05-22 12:50:36
9313	15	648	2026-05-22 12:50:36	2026-05-22 12:50:36
9314	15	524	2026-05-22 12:50:36	2026-05-22 12:50:36
9315	15	588	2026-05-22 12:50:36	2026-05-22 12:50:36
9316	15	616	2026-05-22 12:50:36	2026-05-22 12:50:36
9317	15	452	2026-05-22 12:50:36	2026-05-22 12:50:36
9318	15	589	2026-05-22 12:50:36	2026-05-22 12:50:36
9319	15	665	2026-05-22 12:50:36	2026-05-22 12:50:36
9320	15	693	2026-05-22 12:50:36	2026-05-22 12:50:36
9321	15	694	2026-05-22 12:50:36	2026-05-22 12:50:36
9322	15	695	2026-05-22 12:50:36	2026-05-22 12:50:36
9323	15	53	2026-05-22 12:50:36	2026-05-22 12:50:36
9324	15	54	2026-05-22 12:50:36	2026-05-22 12:50:36
9325	15	55	2026-05-22 12:50:36	2026-05-22 12:50:36
9326	15	56	2026-05-22 12:50:36	2026-05-22 12:50:36
9327	15	57	2026-05-22 12:50:36	2026-05-22 12:50:36
9328	15	58	2026-05-22 12:50:36	2026-05-22 12:50:36
9329	15	59	2026-05-22 12:50:36	2026-05-22 12:50:36
9330	15	60	2026-05-22 12:50:36	2026-05-22 12:50:36
9331	15	61	2026-05-22 12:50:36	2026-05-22 12:50:36
9332	15	62	2026-05-22 12:50:36	2026-05-22 12:50:36
9333	15	63	2026-05-22 12:50:36	2026-05-22 12:50:36
9334	15	64	2026-05-22 12:50:36	2026-05-22 12:50:36
9335	15	65	2026-05-22 12:50:36	2026-05-22 12:50:36
9336	15	66	2026-05-22 12:50:36	2026-05-22 12:50:36
9337	15	67	2026-05-22 12:50:36	2026-05-22 12:50:36
9338	15	68	2026-05-22 12:50:36	2026-05-22 12:50:36
9339	15	69	2026-05-22 12:50:36	2026-05-22 12:50:36
9340	15	70	2026-05-22 12:50:36	2026-05-22 12:50:36
9341	15	71	2026-05-22 12:50:36	2026-05-22 12:50:36
9342	15	72	2026-05-22 12:50:36	2026-05-22 12:50:36
9343	15	73	2026-05-22 12:50:36	2026-05-22 12:50:36
9344	15	74	2026-05-22 12:50:36	2026-05-22 12:50:36
9345	15	75	2026-05-22 12:50:36	2026-05-22 12:50:36
9346	15	76	2026-05-22 12:50:36	2026-05-22 12:50:36
9347	15	77	2026-05-22 12:50:36	2026-05-22 12:50:36
9348	15	432	2026-05-22 12:50:36	2026-05-22 12:50:36
9349	15	433	2026-05-22 12:50:36	2026-05-22 12:50:36
9350	15	434	2026-05-22 12:50:36	2026-05-22 12:50:36
9351	15	435	2026-05-22 12:50:36	2026-05-22 12:50:36
9352	15	436	2026-05-22 12:50:36	2026-05-22 12:50:36
9353	15	437	2026-05-22 12:50:36	2026-05-22 12:50:36
9354	15	438	2026-05-22 12:50:36	2026-05-22 12:50:36
9355	15	439	2026-05-22 12:50:36	2026-05-22 12:50:36
9356	15	440	2026-05-22 12:50:36	2026-05-22 12:50:36
9357	15	451	2026-05-22 12:50:36	2026-05-22 12:50:36
9358	15	477	2026-05-22 12:50:36	2026-05-22 12:50:36
9359	15	585	2026-05-22 12:50:36	2026-05-22 12:50:36
9360	15	669	2026-05-22 12:50:36	2026-05-22 12:50:36
9361	15	670	2026-05-22 12:50:36	2026-05-22 12:50:36
9362	15	671	2026-05-22 12:50:36	2026-05-22 12:50:36
9363	15	672	2026-05-22 12:50:36	2026-05-22 12:50:36
9364	15	680	2026-05-22 12:50:36	2026-05-22 12:50:36
9365	15	681	2026-05-22 12:50:36	2026-05-22 12:50:36
9366	15	689	2026-05-22 12:50:36	2026-05-22 12:50:36
9367	15	698	2026-05-22 12:50:36	2026-05-22 12:50:36
9368	15	699	2026-05-22 12:50:36	2026-05-22 12:50:36
9369	15	711	2026-05-22 12:50:36	2026-05-22 12:50:36
9370	15	712	2026-05-22 12:50:36	2026-05-22 12:50:36
9371	15	713	2026-05-22 12:50:36	2026-05-22 12:50:36
9372	15	730	2026-05-22 12:50:36	2026-05-22 12:50:36
9373	15	78	2026-05-22 12:50:36	2026-05-22 12:50:36
9374	15	79	2026-05-22 12:50:36	2026-05-22 12:50:36
9375	15	80	2026-05-22 12:50:36	2026-05-22 12:50:36
9376	15	81	2026-05-22 12:50:36	2026-05-22 12:50:36
9377	15	82	2026-05-22 12:50:36	2026-05-22 12:50:36
9378	15	83	2026-05-22 12:50:36	2026-05-22 12:50:36
9379	15	84	2026-05-22 12:50:36	2026-05-22 12:50:36
9380	15	85	2026-05-22 12:50:36	2026-05-22 12:50:36
9381	15	86	2026-05-22 12:50:36	2026-05-22 12:50:36
9382	15	87	2026-05-22 12:50:36	2026-05-22 12:50:36
9383	15	88	2026-05-22 12:50:36	2026-05-22 12:50:36
9384	15	89	2026-05-22 12:50:36	2026-05-22 12:50:36
9385	15	90	2026-05-22 12:50:36	2026-05-22 12:50:36
9386	15	91	2026-05-22 12:50:36	2026-05-22 12:50:36
9387	15	92	2026-05-22 12:50:36	2026-05-22 12:50:36
9388	15	93	2026-05-22 12:50:36	2026-05-22 12:50:36
9389	15	94	2026-05-22 12:50:36	2026-05-22 12:50:36
9390	15	374	2026-05-22 12:50:36	2026-05-22 12:50:36
9391	15	375	2026-05-22 12:50:36	2026-05-22 12:50:36
9392	15	393	2026-05-22 12:50:36	2026-05-22 12:50:36
9393	15	394	2026-05-22 12:50:36	2026-05-22 12:50:36
9394	15	397	2026-05-22 12:50:36	2026-05-22 12:50:36
9395	15	398	2026-05-22 12:50:36	2026-05-22 12:50:36
9396	15	541	2026-05-22 12:50:36	2026-05-22 12:50:36
9397	15	543	2026-05-22 12:50:36	2026-05-22 12:50:36
9398	15	545	2026-05-22 12:50:36	2026-05-22 12:50:36
9399	15	571	2026-05-22 12:50:36	2026-05-22 12:50:36
9400	15	735	2026-05-22 12:50:36	2026-05-22 12:50:36
9401	15	773	2026-05-22 12:50:36	2026-05-22 12:50:36
9402	15	774	2026-05-22 12:50:36	2026-05-22 12:50:36
9403	15	95	2026-05-22 12:50:36	2026-05-22 12:50:36
9404	15	96	2026-05-22 12:50:36	2026-05-22 12:50:36
9405	15	97	2026-05-22 12:50:36	2026-05-22 12:50:36
9406	15	98	2026-05-22 12:50:36	2026-05-22 12:50:36
9407	15	99	2026-05-22 12:50:36	2026-05-22 12:50:36
9408	15	100	2026-05-22 12:50:36	2026-05-22 12:50:36
9409	15	101	2026-05-22 12:50:36	2026-05-22 12:50:36
9410	15	102	2026-05-22 12:50:36	2026-05-22 12:50:36
9411	15	103	2026-05-22 12:50:36	2026-05-22 12:50:36
9412	15	104	2026-05-22 12:50:36	2026-05-22 12:50:36
9413	15	361	2026-05-22 12:50:36	2026-05-22 12:50:36
9414	15	362	2026-05-22 12:50:36	2026-05-22 12:50:36
9415	15	363	2026-05-22 12:50:36	2026-05-22 12:50:36
9416	15	364	2026-05-22 12:50:36	2026-05-22 12:50:36
9417	15	366	2026-05-22 12:50:36	2026-05-22 12:50:36
9418	15	376	2026-05-22 12:50:36	2026-05-22 12:50:36
9419	15	377	2026-05-22 12:50:36	2026-05-22 12:50:36
9420	15	105	2026-05-22 12:50:36	2026-05-22 12:50:36
9421	15	106	2026-05-22 12:50:36	2026-05-22 12:50:36
9422	15	107	2026-05-22 12:50:36	2026-05-22 12:50:36
9423	15	108	2026-05-22 12:50:36	2026-05-22 12:50:36
9424	15	109	2026-05-22 12:50:36	2026-05-22 12:50:36
9425	15	110	2026-05-22 12:50:36	2026-05-22 12:50:36
9426	15	111	2026-05-22 12:50:36	2026-05-22 12:50:36
9427	15	112	2026-05-22 12:50:36	2026-05-22 12:50:36
9428	15	113	2026-05-22 12:50:36	2026-05-22 12:50:36
9429	15	114	2026-05-22 12:50:36	2026-05-22 12:50:36
9430	15	115	2026-05-22 12:50:36	2026-05-22 12:50:36
9431	15	116	2026-05-22 12:50:36	2026-05-22 12:50:36
9432	15	117	2026-05-22 12:50:36	2026-05-22 12:50:36
9433	15	428	2026-05-22 12:50:36	2026-05-22 12:50:36
9434	15	429	2026-05-22 12:50:36	2026-05-22 12:50:36
9435	15	430	2026-05-22 12:50:36	2026-05-22 12:50:36
9436	15	431	2026-05-22 12:50:36	2026-05-22 12:50:36
9437	15	444	2026-05-22 12:50:36	2026-05-22 12:50:36
9438	15	445	2026-05-22 12:50:36	2026-05-22 12:50:36
9439	15	446	2026-05-22 12:50:36	2026-05-22 12:50:36
9440	15	447	2026-05-22 12:50:36	2026-05-22 12:50:36
9441	15	507	2026-05-22 12:50:36	2026-05-22 12:50:36
9442	15	508	2026-05-22 12:50:36	2026-05-22 12:50:36
9443	15	532	2026-05-22 12:50:36	2026-05-22 12:50:36
9444	15	540	2026-05-22 12:50:36	2026-05-22 12:50:36
9445	15	542	2026-05-22 12:50:36	2026-05-22 12:50:36
9446	15	544	2026-05-22 12:50:36	2026-05-22 12:50:36
9447	15	564	2026-05-22 12:50:36	2026-05-22 12:50:36
9448	15	565	2026-05-22 12:50:36	2026-05-22 12:50:36
9449	15	566	2026-05-22 12:50:36	2026-05-22 12:50:36
9450	15	619	2026-05-22 12:50:36	2026-05-22 12:50:36
9451	15	620	2026-05-22 12:50:36	2026-05-22 12:50:36
9452	15	621	2026-05-22 12:50:36	2026-05-22 12:50:36
9453	15	649	2026-05-22 12:50:36	2026-05-22 12:50:36
9454	15	650	2026-05-22 12:50:36	2026-05-22 12:50:36
9455	15	651	2026-05-22 12:50:36	2026-05-22 12:50:36
9456	15	660	2026-05-22 12:50:36	2026-05-22 12:50:36
9457	15	661	2026-05-22 12:50:36	2026-05-22 12:50:36
9458	15	662	2026-05-22 12:50:36	2026-05-22 12:50:36
9459	15	663	2026-05-22 12:50:36	2026-05-22 12:50:36
9460	15	664	2026-05-22 12:50:36	2026-05-22 12:50:36
9461	15	666	2026-05-22 12:50:36	2026-05-22 12:50:36
9462	15	674	2026-05-22 12:50:36	2026-05-22 12:50:36
9463	15	675	2026-05-22 12:50:36	2026-05-22 12:50:36
9464	15	733	2026-05-22 12:50:36	2026-05-22 12:50:36
9465	15	734	2026-05-22 12:50:36	2026-05-22 12:50:36
9466	15	118	2026-05-22 12:50:36	2026-05-22 12:50:36
9467	15	119	2026-05-22 12:50:36	2026-05-22 12:50:36
9468	15	120	2026-05-22 12:50:36	2026-05-22 12:50:36
9469	15	121	2026-05-22 12:50:36	2026-05-22 12:50:36
9470	15	122	2026-05-22 12:50:36	2026-05-22 12:50:36
9471	15	123	2026-05-22 12:50:36	2026-05-22 12:50:36
9472	15	124	2026-05-22 12:50:36	2026-05-22 12:50:36
9473	15	125	2026-05-22 12:50:36	2026-05-22 12:50:36
9474	15	126	2026-05-22 12:50:36	2026-05-22 12:50:36
9475	15	127	2026-05-22 12:50:36	2026-05-22 12:50:36
9476	15	128	2026-05-22 12:50:36	2026-05-22 12:50:36
9477	15	129	2026-05-22 12:50:36	2026-05-22 12:50:36
9478	15	130	2026-05-22 12:50:36	2026-05-22 12:50:36
9479	15	329	2026-05-22 12:50:36	2026-05-22 12:50:36
9480	15	330	2026-05-22 12:50:36	2026-05-22 12:50:36
9481	15	331	2026-05-22 12:50:36	2026-05-22 12:50:36
9482	15	332	2026-05-22 12:50:36	2026-05-22 12:50:36
9483	15	333	2026-05-22 12:50:36	2026-05-22 12:50:36
9484	15	334	2026-05-22 12:50:36	2026-05-22 12:50:36
9485	15	340	2026-05-22 12:50:36	2026-05-22 12:50:36
9486	15	131	2026-05-22 12:50:36	2026-05-22 12:50:36
9487	15	132	2026-05-22 12:50:36	2026-05-22 12:50:36
9488	15	133	2026-05-22 12:50:36	2026-05-22 12:50:36
9489	15	134	2026-05-22 12:50:36	2026-05-22 12:50:36
9490	15	135	2026-05-22 12:50:36	2026-05-22 12:50:36
9491	15	136	2026-05-22 12:50:36	2026-05-22 12:50:36
9492	15	137	2026-05-22 12:50:36	2026-05-22 12:50:36
9493	15	138	2026-05-22 12:50:36	2026-05-22 12:50:36
9494	15	139	2026-05-22 12:50:36	2026-05-22 12:50:36
9495	15	140	2026-05-22 12:50:36	2026-05-22 12:50:36
9496	15	141	2026-05-22 12:50:36	2026-05-22 12:50:36
9497	15	142	2026-05-22 12:50:36	2026-05-22 12:50:36
9498	15	143	2026-05-22 12:50:36	2026-05-22 12:50:36
9499	15	144	2026-05-22 12:50:36	2026-05-22 12:50:36
9500	15	145	2026-05-22 12:50:36	2026-05-22 12:50:36
9501	15	146	2026-05-22 12:50:36	2026-05-22 12:50:36
9502	15	147	2026-05-22 12:50:36	2026-05-22 12:50:36
9503	15	148	2026-05-22 12:50:36	2026-05-22 12:50:36
9504	15	149	2026-05-22 12:50:36	2026-05-22 12:50:36
9505	15	150	2026-05-22 12:50:36	2026-05-22 12:50:36
9506	15	151	2026-05-22 12:50:36	2026-05-22 12:50:36
9507	15	152	2026-05-22 12:50:36	2026-05-22 12:50:36
9508	15	153	2026-05-22 12:50:36	2026-05-22 12:50:36
9509	15	154	2026-05-22 12:50:36	2026-05-22 12:50:36
9510	15	155	2026-05-22 12:50:36	2026-05-22 12:50:36
9511	15	156	2026-05-22 12:50:36	2026-05-22 12:50:36
9512	15	157	2026-05-22 12:50:36	2026-05-22 12:50:36
9513	15	158	2026-05-22 12:50:36	2026-05-22 12:50:36
9514	15	159	2026-05-22 12:50:36	2026-05-22 12:50:36
9515	15	160	2026-05-22 12:50:36	2026-05-22 12:50:36
9516	15	161	2026-05-22 12:50:36	2026-05-22 12:50:36
9517	15	162	2026-05-22 12:50:36	2026-05-22 12:50:36
9518	15	163	2026-05-22 12:50:36	2026-05-22 12:50:36
9519	15	164	2026-05-22 12:50:36	2026-05-22 12:50:36
9520	15	165	2026-05-22 12:50:36	2026-05-22 12:50:36
9521	15	166	2026-05-22 12:50:36	2026-05-22 12:50:36
9522	15	167	2026-05-22 12:50:36	2026-05-22 12:50:36
9523	15	168	2026-05-22 12:50:36	2026-05-22 12:50:36
9524	15	169	2026-05-22 12:50:36	2026-05-22 12:50:36
9525	15	170	2026-05-22 12:50:36	2026-05-22 12:50:36
9526	15	171	2026-05-22 12:50:36	2026-05-22 12:50:36
9527	15	172	2026-05-22 12:50:36	2026-05-22 12:50:36
9528	15	173	2026-05-22 12:50:36	2026-05-22 12:50:36
9529	15	426	2026-05-22 12:50:36	2026-05-22 12:50:36
9530	15	341	2026-05-22 12:50:36	2026-05-22 12:50:36
9531	15	342	2026-05-22 12:50:36	2026-05-22 12:50:36
9532	15	343	2026-05-22 12:50:36	2026-05-22 12:50:36
9533	15	346	2026-05-22 12:50:36	2026-05-22 12:50:36
9534	15	347	2026-05-22 12:50:36	2026-05-22 12:50:36
9535	15	348	2026-05-22 12:50:36	2026-05-22 12:50:36
9536	15	349	2026-05-22 12:50:36	2026-05-22 12:50:36
9537	15	536	2026-05-22 12:50:36	2026-05-22 12:50:36
9538	15	537	2026-05-22 12:50:36	2026-05-22 12:50:36
9539	15	538	2026-05-22 12:50:36	2026-05-22 12:50:36
9540	15	560	2026-05-22 12:50:36	2026-05-22 12:50:36
9541	15	561	2026-05-22 12:50:36	2026-05-22 12:50:36
9542	15	562	2026-05-22 12:50:36	2026-05-22 12:50:36
9543	15	563	2026-05-22 12:50:36	2026-05-22 12:50:36
9544	15	199	2026-05-22 12:50:36	2026-05-22 12:50:36
9545	15	690	2026-05-22 12:50:36	2026-05-22 12:50:36
9546	15	344	2026-05-22 12:50:36	2026-05-22 12:50:36
9547	15	345	2026-05-22 12:50:36	2026-05-22 12:50:36
9548	15	691	2026-05-22 12:50:36	2026-05-22 12:50:36
9549	15	696	2026-05-22 12:50:36	2026-05-22 12:50:36
9550	15	697	2026-05-22 12:50:36	2026-05-22 12:50:36
9551	15	174	2026-05-22 12:50:36	2026-05-22 12:50:36
9552	15	176	2026-05-22 12:50:36	2026-05-22 12:50:36
9553	15	177	2026-05-22 12:50:36	2026-05-22 12:50:36
9554	15	178	2026-05-22 12:50:36	2026-05-22 12:50:36
9555	15	179	2026-05-22 12:50:36	2026-05-22 12:50:36
9556	15	180	2026-05-22 12:50:36	2026-05-22 12:50:36
9557	15	181	2026-05-22 12:50:36	2026-05-22 12:50:36
9558	15	182	2026-05-22 12:50:36	2026-05-22 12:50:36
9559	15	183	2026-05-22 12:50:36	2026-05-22 12:50:36
9560	15	184	2026-05-22 12:50:36	2026-05-22 12:50:36
9561	15	185	2026-05-22 12:50:36	2026-05-22 12:50:36
9562	15	186	2026-05-22 12:50:36	2026-05-22 12:50:36
9563	15	187	2026-05-22 12:50:36	2026-05-22 12:50:36
9564	15	188	2026-05-22 12:50:36	2026-05-22 12:50:36
9565	15	189	2026-05-22 12:50:36	2026-05-22 12:50:36
9566	15	190	2026-05-22 12:50:36	2026-05-22 12:50:36
9567	15	191	2026-05-22 12:50:36	2026-05-22 12:50:36
9568	15	192	2026-05-22 12:50:36	2026-05-22 12:50:36
9569	15	193	2026-05-22 12:50:36	2026-05-22 12:50:36
9570	15	194	2026-05-22 12:50:36	2026-05-22 12:50:36
9571	15	195	2026-05-22 12:50:36	2026-05-22 12:50:36
9572	15	196	2026-05-22 12:50:36	2026-05-22 12:50:36
9573	15	197	2026-05-22 12:50:36	2026-05-22 12:50:36
9574	15	198	2026-05-22 12:50:36	2026-05-22 12:50:36
9575	15	200	2026-05-22 12:50:36	2026-05-22 12:50:36
9576	15	201	2026-05-22 12:50:36	2026-05-22 12:50:36
9577	15	202	2026-05-22 12:50:36	2026-05-22 12:50:36
9578	15	203	2026-05-22 12:50:36	2026-05-22 12:50:36
9579	15	204	2026-05-22 12:50:36	2026-05-22 12:50:36
9580	15	205	2026-05-22 12:50:36	2026-05-22 12:50:36
9581	15	206	2026-05-22 12:50:36	2026-05-22 12:50:36
9582	15	207	2026-05-22 12:50:36	2026-05-22 12:50:36
9583	15	208	2026-05-22 12:50:36	2026-05-22 12:50:36
9584	15	209	2026-05-22 12:50:36	2026-05-22 12:50:36
9585	15	210	2026-05-22 12:50:36	2026-05-22 12:50:36
9586	15	211	2026-05-22 12:50:36	2026-05-22 12:50:36
9587	15	212	2026-05-22 12:50:36	2026-05-22 12:50:36
9588	15	213	2026-05-22 12:50:36	2026-05-22 12:50:36
9589	15	215	2026-05-22 12:50:36	2026-05-22 12:50:36
9590	15	335	2026-05-22 12:50:36	2026-05-22 12:50:36
9591	15	336	2026-05-22 12:50:36	2026-05-22 12:50:36
9592	15	337	2026-05-22 12:50:36	2026-05-22 12:50:36
9593	15	338	2026-05-22 12:50:36	2026-05-22 12:50:36
9594	15	381	2026-05-22 12:50:36	2026-05-22 12:50:36
9595	15	382	2026-05-22 12:50:36	2026-05-22 12:50:36
9596	15	383	2026-05-22 12:50:36	2026-05-22 12:50:36
9597	15	175	2026-05-22 12:50:36	2026-05-22 12:50:36
9598	15	214	2026-05-22 12:50:36	2026-05-22 12:50:36
9599	15	216	2026-05-22 12:50:36	2026-05-22 12:50:36
9600	15	217	2026-05-22 12:50:36	2026-05-22 12:50:36
9601	15	218	2026-05-22 12:50:36	2026-05-22 12:50:36
9602	15	219	2026-05-22 12:50:36	2026-05-22 12:50:36
9603	15	220	2026-05-22 12:50:36	2026-05-22 12:50:36
9604	15	221	2026-05-22 12:50:36	2026-05-22 12:50:36
9605	15	222	2026-05-22 12:50:36	2026-05-22 12:50:36
9606	15	223	2026-05-22 12:50:36	2026-05-22 12:50:36
9607	15	533	2026-05-22 12:50:36	2026-05-22 12:50:36
9608	15	534	2026-05-22 12:50:36	2026-05-22 12:50:36
9609	15	539	2026-05-22 12:50:36	2026-05-22 12:50:36
9610	15	535	2026-05-22 12:50:36	2026-05-22 12:50:36
9611	15	558	2026-05-22 12:50:36	2026-05-22 12:50:36
9612	15	559	2026-05-22 12:50:36	2026-05-22 12:50:36
9613	15	647	2026-05-22 12:50:36	2026-05-22 12:50:36
9614	15	667	2026-05-22 12:50:36	2026-05-22 12:50:36
9615	15	668	2026-05-22 12:50:36	2026-05-22 12:50:36
9616	15	673	2026-05-22 12:50:36	2026-05-22 12:50:36
9617	15	770	2026-05-22 12:50:36	2026-05-22 12:50:36
9618	15	771	2026-05-22 12:50:36	2026-05-22 12:50:36
9619	15	772	2026-05-22 12:50:36	2026-05-22 12:50:36
\.


--
-- Data for Name: packages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.packages (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
15	All	All	\N	\N
\.


--
-- Data for Name: partners; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.partners (id, "Name", "Shares_Number", "Nominal_Value_of_Shares", "Actual_Share_Value", "Profits_Precentage", "Profits", "Withdraw_Profits", "Remaining_Profits", "Account", created_at, updated_at, "Gary_Account", "Recent_Profit_Account", "Stage_Profit_Account", "First_Partner_Share", "Now_Partner_Share", "Capital_Increase_Rate", "Capital_Increase_Value", "Partnership_Ratio") FROM stdin;
\.


--
-- Data for Name: password_resets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.password_resets (email, token, created_at) FROM stdin;
\.


--
-- Data for Name: pay_profit_investors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.pay_profit_investors (id, "Date", "Profit", "Investor", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: pay_salaries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.pay_salaries (id, "Code", "Date", "Month", "Salary", "Pre_Sales", "Pre_Execu", "Deduction", "Entitlement", "Borrow", "Overtime", "Attendence_Hours", "Attendence", "Loan", "Holidays", "Resduial_Salary", "Note", "Draw", "Safe", "Coin", "Cost_Center", "Emp", "User", arr, created_at, updated_at, "Attendence_Discount", "Holiday_Discount", "Settlements", "Later_Sales_Bill", "Allowances", "Discounts", "ProducationPoints", "DiscountLate", "DiscountDeparture", "Shipping_Precent", "Delete", "Refernce_Number") FROM stdin;
\.


--
-- Data for Name: payment_voucher_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.payment_voucher_details (id, "Debitor", "Statement", "Account", "PV_ID", created_at, updated_at, "Date", "Time", "Cost_Center", "Coin", "User", "Branch", "Safe", "Bill_Num", "Order_Number", "Tax") FROM stdin;
\.


--
-- Data for Name: payment_vouchers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.payment_vouchers (id, "Code", "Date", "Draw", "Total_Debaitor", "Note", "Coin", "Cost_Center", "Safe", arr, created_at, updated_at, "Shift", "Store", "User", "Branch", "Status", "File", "Edit", "Edit_New_Code", "Delete", "Responsiple", "Project", "Documentary_ID", "Documentary_Type", "Unit") FROM stdin;
\.


--
-- Data for Name: paymentss_products_real_projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.paymentss_products_real_projects (id, "Product_Code", "P_Ar_Name", "P_En_Name", "AvQty", "Qty", "Price", "CostPrice", "Discount", "TDiscount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "TotCostNew", "Total_Net", "Store", "Product", "Unit", "Payment", created_at, updated_at, "Pro_Desc") FROM stdin;
\.


--
-- Data for Name: paymentss_real_projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.paymentss_real_projects (id, "Code", "Date", "Time", "Branch", "Draw", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Total_Cost", "Total_Net", "DiscountBill", "Pay", "Safe", "Client", "Delegate", "Store", "Coin", "Cost_Center", "User", "Edit", "Delete", "Edit_New_Code", "Project", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: permission_to_exchange_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.permission_to_exchange_goods (id, "Code", "Date", "Draw", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Account", "Store", "To_Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "Status", "Edit", "Delete", "Edit_New_Code", "DiscountBill") FROM stdin;
\.


--
-- Data for Name: permission_to_recived_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.permission_to_recived_goods (id, "Code", "Date", "Draw", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Account", "Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "To_Store", "Status", "Edit", "Delete", "Edit_New_Code", "DiscountBill") FROM stdin;
\.


--
-- Data for Name: permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.permissions (id, name, guard_name, created_at, updated_at, "Parent", "Main", "nameEn", "Package") FROM stdin;
319	التصنيع	admin	2021-09-11 14:55:30	2021-09-11 14:55:30	0	14	Manufacturing	\N
25	استيراد ملفات اكسيل	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	0	2	Importing Excel Sheets	\N
26	التقارير	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	0	3	Reports	\N
28	اصناف وصلت حد الطلب	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	3	0	Items to be ordered	\N
29	تقرير اصناف بدايه فتره	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	3	0	Beginning Inventory Report	\N
30	تقارير التسويات	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	3	0	Inventory Adjustments Reports	\N
31	تكلفه المخزون	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	3	0	Inventory Cost	\N
32	اصناف راكده	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	3	0	Ageing Stock	\N
33	حركه الاصناف	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	3	0	Items Movement	\N
44	ارصده الحسابات	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	Account Balances	\N
45	كشف حساب خزنه، بنك	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	TreasuryBank Account Statement	\N
46	تقارير الشيكات	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	Check Reports	\N
47	كشف حساب موردين	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	Supplier Account Statement	\N
48	كشف حساب عملاء	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	Customer Account Statement	\N
49	ارصده العملاء	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	Customer Balances	\N
50	تقارير مركز التكلفه	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	Cost Center Reports	\N
51	قائمه الدخل	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	Income Statement	\N
52	قائمه المركز المالي	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	4	0	Statement Of Financial Position	\N
53	اداره علاقه العملاء	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	0	5	CRM - Customer Relationship Management	\N
54	المحافظه	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Governorate	\N
55	اضافه محافظه	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Adding a Governorate	\N
56	تعديل محافظه	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Modifying a Governorate	\N
57	حذف محافظه	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Deleting a Governorate	\N
58	النشاطات	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Activities	\N
59	اضافه نشاط	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Adding an Actifity	\N
60	تعديل نشاط	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Modifying an Actifity	\N
61	حذف نشاط	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Deleting an Actifity	\N
62	حالات العملاء	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Customer Status	\N
63	اضافه حاله عميل	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Adding a Customer Status	\N
64	تعديل حاله عميل	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Modifying a Customer Status	\N
65	حذف حاله عميل	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Deleting a Customer Status	\N
66	المنصات	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Social Media	\N
67	اضافه منصه	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Adding Social Media	\N
68	تعديل منصه	admin	2021-08-19 17:49:47	2021-08-19 17:49:47	5	0	Modifying Social Media	\N
69	حذف منصه	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Deleting Social Media	\N
78	المشتريات	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	0	6	Procurement	\N
79	الموردين	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	6	0	Suppliers	\N
80	اضافه مورد	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	6	0	Adding a Supplier	\N
81	تعديل مورد	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	6	0	Modifying a Supplier	\N
82	حذف مورد	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	6	0	Deleting a Supplier	\N
83	اضافه امر شراء	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	6	0	Adding a Purchase Order	\N
84	اضافه مشتريات	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	6	0	Adding a purchase Invoice	\N
85	جدول مرتجع المشتريات	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	6	0	Purchases Return Table	\N
86	جدول آوامر الشراء	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	6	0	Purchase Orders Table	\N
87	تعديل آوامر الشراء	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	6	0	Modifying Purchase Orders	\N
88	حذف آوامر الشراء	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	6	0	Deleting Purchase Orders	\N
89	تحويل آوامر الشراء	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	6	0	Converting purchase Orders	\N
90	جدول المشتريات	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	6	0	Purchase Invoices Table	\N
91	ارتجاع فاتوره مشتريات	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	6	0	Purchase Invoice Return	\N
92	الفواتير المعلقه مشتريات	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	6	0	Pending Purchase Invoice	\N
93	استلام الفواتير المعلقه مشتريات	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	6	0	Reciving Pending Purchase Invoice	\N
94	المنتجات المستلمه مشتريات	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	6	0	Purchased Items Received	\N
95	المبيعات	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	0	7	Sales	\N
96	اضافه عملاء	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Adding a Customer	\N
97	العملاء	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Customers	\N
98	تعديل العملاء	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Modifying a Customer	\N
99	حذف العملاء	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Deleting a Customer	\N
100	اضافه عرض سعر	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Adding a Quotation	\N
101	اضافه امر بيع	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Adding a Sales Order	\N
102	اضافه  مبيعات	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Adding Sales	\N
103	جدول عرض سعر	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Quotations Table	\N
104	تعديل عرض سعر	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Modifying a Quotation	\N
339	راس المال	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	0	15	Contributed Capital	\N
224	HR	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	0	10	HR - Human Resources	\N
176	اضافه المخازن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Adding a Store	\N
177	حذف المخازن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Deleting a Store	\N
178	تعديل المخازن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Modifying a Store	\N
179	شركات الشحن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Freight Companies	\N
180	اضافه شركات الشحن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Adding a Freight Company	\N
181	حذف شركات الشحن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Deleting a Freight Company	\N
182	تعديل شركات الشحن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Modifying a Freight Company	\N
183	وحدات القياس	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Units	\N
184	اضافه وحدات القياس	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Adding an Unit	\N
185	حذف وحدات القياس	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Deleting an Unit	\N
186	تعديل وحدات القياس	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Modifying an Unit	\N
187	مجموعه الاصناف	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Items Group	\N
188	اضافه مجموعه الاصناف	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Adding Items Group	\N
189	حذف مجموعه الاصناف	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Deleting Items Group	\N
190	تعديل مجموعه الاصناف	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Modifying Items Group	\N
191	الصناعه و الماركات	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Industries and Brands	\N
192	اضافه الصناعه و الماركات	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Adding Industries and Brands	\N
193	حذف الصناعه و الماركات	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Deleting Industries and Brands	\N
194	تعديل الصناعه و الماركات	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Modifying Industries and Brands	\N
195	المتغيرات	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Variables	\N
196	اضافه المتغيرات	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Adding Variables	\N
197	حذف المتغيرات	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Deleting Variables	\N
198	تعديل المتغيرات	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Modifying Variables	\N
200	اضافه الضرائب	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Adding Taxes	\N
201	حذف الضرائب	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	9	0	Deleting Taxes	\N
202	تعديل الضرائب	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Modifying Taxes	\N
203	انواع الاشتراكات	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Subscription Types	\N
204	اضافه انواع الاشتراكات	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Adding Subscription Types	\N
119	الدليل المحاسبي	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Chart of Accounts	\N
120	اضافه حساب في الدليل المحاسبي	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Adding an Account into Chart of Accounts	\N
121	تعديل حساب في الدليل المحاسبي	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Modifying an Account into Chart of Accounts	\N
122	حذف حساب في الدليل المحاسبي	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Deleting an Account from Chart of Accounts	\N
123	الاصول	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Assets	\N
124	اضافه اصل	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Adding an Asset	\N
125	حذف اصل	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Deleting an Asset	\N
126	الخزائن و البنوك	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Cashes and Bank Accounts	\N
127	اضافه خزنه وبنك	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	8	0	Adding Cashe and/Or Bank Account	\N
128	تعديل خزنه وبنك	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Modifying Cashe and/Or Bank Account	\N
129	حذف خزنه وبنك	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Deleting Cashe and/Or Bank Account	\N
130	مراكز التكلفه	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Cost Centers	\N
205	حذف انواع الاشتراكات	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Deleting Subscription Types	\N
206	تعديل انواع الاشتراكات	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Modifying Subscription Types	\N
207	دليل الاصناف	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Chart of Items	\N
208	اضافه صنف	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Adding an Item	\N
209	جدول الاصناف	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Items Table	\N
210	تعديل صنف	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Modifying an Item	\N
211	حذف صنف	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Deleting an Item	\N
212	اضافه جرد	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Adding an Inventory	\N
213	جدول الجرد	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Inventory Table	\N
215	حذف الجرد	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Deleting an Inventory	\N
310	اضافه نوع عطل	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Adding a Malfunction Type	\N
225	انواع الوظائف	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Jobs Types	\N
226	اضافه نوع وظيفه	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Adding a Job Type	\N
227	حذف نوع وظيفه	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Deleting a Job Type	\N
228	تعديل نوع وظيفه	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Modifying a Job Type	\N
229	اضافه موظف	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Adding an Employee	\N
230	تعديل موظف	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Modifying an Employee	\N
231	حذف موظف	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Deleting an Employee	\N
232	جدول الموظفين	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Employees Table	\N
233	انواع الاجازات	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Vacations Types	\N
311	تعديل نوع عطل	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Modifying Malfunction Type	\N
312	حذف نوع عطل	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Deleting Malfunction Type	\N
313	سند استلام صيانه	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Maintenance Receipt	\N
314	جدول سند استلام صيانه	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Maintenance Receipts Table	\N
315	تعديل سند استلام صيانه	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Modifying a Maintenance Receipt	\N
316	حذف سند استلام صيانه	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Deleting a Maintenance Receipt	\N
317	فاتوره صيانه	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Maintenance Invoice	\N
318	جدول فواتير الصيانه	admin	2021-09-03 20:53:32	2021-09-03 20:53:32	13	0	Maintenance Invoices Table	\N
320	صالات التصنيع	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Manufacturing Areas	\N
321	اضافه صاله تصنيع	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Adding a Manufacturing Area	\N
322	حذف صاله تصنيع	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Deleting a Manufacturing Area	\N
323	تعديل صاله تصنيع	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Modifying a Manufacturing Area	\N
324	نموذج التصنيع	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Manufacturing Model	\N
325	جدول نماذج التصنيع	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Manufacturing Models Table	\N
326	حذف نموذج تصنيع	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Deleting a Manufacturing Model	\N
327	تعديل نموذج تصنيع	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Modifying a Manufacturing Model	\N
328	التنفيذ و الاستلام	admin	2021-09-11 14:55:31	2021-09-11 14:55:31	14	0	Execution and Receiving	\N
329	وصل امانه	admin	2021-10-14 19:34:56	2021-10-14 19:34:56	8	0	Bond	\N
330	اضافه وصل امانه	admin	2021-10-14 19:34:57	2021-10-14 19:34:57	8	0	Adding a Bond	\N
331	حذف وصل امانه	admin	2021-10-14 19:34:57	2021-10-14 19:34:57	8	0	Deleting a Bond	\N
332	استلام وصل امانه	admin	2021-10-14 19:34:57	2021-10-14 19:34:57	8	0	Receiving a Bond	\N
333	مصاريف اصول	admin	2021-10-14 19:34:57	2021-10-14 19:34:57	8	0	Assets Expenses	\N
334	اضافه مصاريف اصول	admin	2021-10-14 19:34:57	2021-10-14 19:34:57	8	0	Adding Assets Expenses	\N
335	اذن صرف بضاعه	admin	2021-10-14 19:34:57	2021-10-14 19:34:57	9	0	Goods Delivery Order	\N
358	تأكيد فاتوره صيانه	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	13	0	Confirming a Maintenance Invoice	\N
359	صرف عمولات	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	10	0	Paying commissions	\N
360	جدول صرف العمولات	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	10	0	Paying commissions Table	\N
361	مجموعه العملاء	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	7	0	Customers Group	\N
362	اضافه مجموعه العملاء	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	7	0	Adding Customers Group	\N
363	حذف مجموعه العملاء	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	7	0	Deleting Customers Group	\N
364	تعديل مجموعه العملاء	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	7	0	Modifying Customers Group	\N
365	جدول مرتجع الصيانه	admin	2021-10-29 05:03:37	2021-10-29 05:03:37	13	0	Maintenance Return Table	\N
366	نقاط البيع	admin	\N	\N	7	0	Points of Sale (POS)	\N
336	اذن استلام بضاعه	admin	2021-10-14 19:34:57	2021-10-14 19:34:57	9	0	Goods Recipt Order	\N
337	جدول صرف بضاعه	admin	2021-10-14 19:34:57	2021-10-14 19:34:57	9	0	Goods Delivery Table	\N
338	جدول استلام بضاعه	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	9	0	Goods Receipt Table	\N
385	الامانات	admin	2021-12-26 16:23:52	2021-12-26 16:23:52	0	16	Deposits	\N
350	اوصاف الاجهزه	admin	2021-10-29 04:47:09	2021-10-29 04:47:09	13	0	Device Description	\N
351	اضافه وصف جهاز	admin	2021-10-29 04:47:09	2021-10-29 04:47:09	13	0	Adding a Device Description	\N
352	حذف وصف جهاز	admin	2021-10-29 04:47:09	2021-10-29 04:47:09	13	0	Deleting a Device Description	\N
353	تعديل وصف جهاز	admin	2021-10-29 04:47:09	2021-10-29 04:47:09	13	0	Modifying a Device Description	\N
354	شروط و احكام الصيانه	admin	2021-10-29 04:47:09	2021-10-29 04:47:09	13	0	Maintenance Terms and Conditions	\N
355	تأكيد سند استلام	admin	2021-10-29 04:47:09	2021-10-29 04:47:09	13	0	Confirming a Maintenance Receipt	\N
356	رفض سند استلام	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	13	0	Rejecting a Maintenance Receipt	\N
357	ارتجاع فاتوره صيانه	admin	2021-10-29 04:47:10	2021-10-29 04:47:10	13	0	Maintenance Invoice Return	\N
367	الورديات	admin	2021-12-09 13:27:05	2021-12-09 13:27:05	3	0	Shifts	\N
368	تفاصيل الورديات	admin	2021-12-09 13:27:06	2021-12-09 13:27:06	3	0	Shifts Details	\N
369	تقفيل اليوميه	admin	2021-12-09 13:27:06	2021-12-09 13:27:06	3	0	Closing a Shift	\N
370	تقرير المنتجات	admin	2021-12-09 13:27:06	2021-12-09 13:27:06	3	0	Items Report	\N
371	الورديات اليوميه	admin	2021-12-09 13:27:06	2021-12-09 13:27:06	3	0	Dialy Shifts	\N
373	الاصناف اليوميه	admin	2021-12-09 13:27:06	2021-12-09 13:27:06	3	0	Dialy Items	\N
374	تعديل فاتوره مشتريات	admin	2021-12-23 06:57:08	2021-12-23 06:57:08	6	0	Modifying a Purchasing Invoice	\N
375	حذف فاتوره مشتريات	admin	2021-12-23 06:57:08	2021-12-23 06:57:08	6	0	Deleting a Purchasing Invoice	\N
376	تعديل فاتوره مبيعات	admin	2021-12-23 06:57:08	2021-12-23 06:57:08	7	0	Modifying a Sales Invoice	\N
377	حذف فاتوره مبيعات	admin	2021-12-23 06:57:08	2021-12-23 06:57:08	7	0	Deleting a Sales Invoice	\N
234	اضافه نوع اجازه	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Adding a Vacation Type	\N
235	حذف نوع اجازه	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Deleting a Vacation Type	\N
236	تعديل نوع اجازه	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Modifying a Vacation Type	\N
237	انواع الاستحقاقات	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	10	0	Entitlements Types	\N
238	اضافه نوع استحقاق	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Adding an Entitlement Type	\N
239	حذف نوع استحقاق	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Deleting an Entitlement Type	\N
386	مخازن الامانات	admin	2021-12-26 16:23:52	2021-12-26 16:23:52	16	0	Deposit Stores	\N
387	وارد بضاعه الامانات	admin	2021-12-26 16:23:53	2021-12-26 16:23:53	16	0	Goods Receipt of Deposit	\N
388	جدول وارد بضاعه الامانات	admin	2021-12-26 16:23:53	2021-12-26 16:23:53	16	0	Goods Receipt of Deposit Table	\N
389	صرف بضاعه امانات	admin	2021-12-26 16:23:53	2021-12-26 16:23:53	16	0	Goods Delivery of Deposit	\N
390	جدول صرف بضاعه الامانات	admin	2021-12-26 16:23:53	2021-12-26 16:23:53	16	0	Goods Delivery of Deposit Table	\N
391	كميات مخازن الامانات	admin	2021-12-26 16:23:53	2021-12-26 16:23:53	16	0	Deposit Stores Quantities	\N
392	الوان الصيانه	admin	2021-12-26 16:23:53	2021-12-26 16:23:53	13	0	Maintenance Colors	\N
393	النواقص	admin	2022-01-01 13:28:46	2022-01-01 13:28:46	6	0	Purchase Request	\N
394	جدول النواقص	admin	2022-01-01 13:28:46	2022-01-01 13:28:46	6	0	Purchase Request Table	\N
395	مبيعات المجموعات	admin	2022-01-01 13:28:46	2022-01-01 13:28:46	3	0	Sales of Groups	\N
396	اسباب رفض الصيانه	admin	2022-01-01 13:28:46	2022-01-01 13:28:46	13	0	Reasons of Maintenance Rejection	\N
397	الكميات امر الشراء	admin	2022-01-12 00:45:17	2022-01-12 00:45:17	6	0	Quantities of Purchase Order	\N
39	الارباح	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	3	0	Profits	\N
372	تقرير المصاريف	admin	2021-12-09 13:27:06	2021-12-09 13:27:06	4	0	Expenses Report	\N
340	اضافه راس المال	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	8	0	Adding the Capital	\N
398	الجوده امر الشراء	admin	2022-01-12 00:45:18	2022-01-12 00:45:18	6	0	Quality of Purchase Order	\N
240	تعديل نوع استحقاق	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Modifying an Entitlement Type	\N
241	انواع الاستقطاعات	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Deductions Types	\N
242	اضافه نوع استقطاع	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Adding a Deduction Type	\N
243	حذف نوع استقطاع	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Deleting a Deduction Type	\N
244	تعديل نوع استقطاع	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Modifying a Deduction Type	\N
245	الساعات الاضافيه	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Extra Hours	\N
246	اضافه ساعه اضافيه	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Adding an Extra Hour	\N
247	حذف ساعه اضافيه	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Deleting an Extra Hour	\N
248	تعديل ساعه اضافيه	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Modifying an Extra Hour	\N
249	انواع القروض	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Loans Types	\N
250	اضافه نوع قرض	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Adding a Loan Type	\N
251	حذف نوع قرض	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Deleting a Loan Type	\N
301	الشركه المصنعه	admin	2021-09-03 20:53:30	2021-09-03 20:53:30	13	0	The Manufacturer	\N
302	اضافه شركه مصنعه	admin	2021-09-03 20:53:30	2021-09-03 20:53:30	13	0	Adding a Manufacturer	\N
303	تعديل شركه مصنعه	admin	2021-09-03 20:53:30	2021-09-03 20:53:30	13	0	Modifying a Manufacturer	\N
304	حذف شركه مصنعه	admin	2021-09-03 20:53:30	2021-09-03 20:53:30	13	0	Deleting a Manufacturer	\N
305	حالات الاجهزه	admin	2021-09-03 20:53:30	2021-09-03 20:53:30	13	0	Devices Types	\N
306	اضافه حاله جهاز	admin	2021-09-03 20:53:30	2021-09-03 20:53:30	13	0	Adding a Device Type	\N
307	تعديل حاله جهاز	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Modifying a Device Type	\N
308	حذف حاله جهاز	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Deleting a Device Type	\N
309	انواع الاعطال	admin	2021-09-03 20:53:31	2021-09-03 20:53:31	13	0	Malfunctions Types	\N
379	اسعار الموردين	admin	2021-12-26 16:23:52	2021-12-26 16:23:52	3	0	Suppliers prices	\N
380	الحركات اليوميه	admin	2021-12-26 16:23:52	2021-12-26 16:23:52	3	0	Journal Entries	\N
381	تالف	admin	2021-12-26 16:23:52	2021-12-26 16:23:52	9	0	Damaged	\N
382	جدول التوالف	admin	2021-12-26 16:23:52	2021-12-26 16:23:52	9	0	Damaged Table	\N
383	كميات المخازن	admin	2021-12-26 16:23:52	2021-12-26 16:23:52	9	0	Stores Quantities	\N
384	ارصده الخزائن و البنوك	admin	2021-12-26 16:23:52	2021-12-26 16:23:52	4	0	Bank/Cashe Accounts Balances	\N
252	تعديل نوع قرض	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Modifying Loan Type	\N
253	اضافه سلفه	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Adding Advance	\N
254	السلف	admin	2021-08-19 17:49:57	2021-08-19 17:49:57	10	0	Advances	\N
255	حذف سلفه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Deleting Advance	\N
256	طلب اجازه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Vacation Request	\N
257	 اضافه طلب اجازه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Adding a Vacation Request	\N
258	 تعديل طلب اجازه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Modifying a Vacation Request	\N
259	 حذف طلب اجازه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Deleting a Vacation Request	\N
260	 تحويل طلب اجازه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Converting a Vacation Request	\N
261	الاجازات	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Vacations	\N
262	 اضافه  اجازه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Adding a Vacation	\N
263	 تعديل  اجازه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Modifying a Vacation	\N
264	 حذف  اجازه	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Deleting a Vacation	\N
14	الاعدادات	admin	2021-08-19 00:32:48	2021-08-19 00:32:48	0	1	Settings	\N
15	المستخدمين	admin	2021-08-19 00:32:48	2021-08-19 00:32:48	1	0	Users	\N
16	صلاحيات المستخدمين	admin	2021-08-19 00:32:48	2021-08-19 00:32:48	1	0	Users Permissions	\N
17	البيانات الافتراضيه	admin	\N	\N	1	0	Default Data	\N
18	اضافه المستخدمين	admin	2021-08-19 17:49:44	2021-08-19 17:49:44	1	0	Adding Users	\N
19	تعديل المستخدمين	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	1	0	Modifying Users	\N
20	حذف المستخدمين	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	1	0	Deleting Users	\N
21	اضافه صلاحيه	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	1	0	Adding a Permission	\N
22	تعديل صلاحيه	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	1	0	Modifying a Permission	\N
23	حذف صلاحيه	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	1	0	Deleting a Permission	\N
24	تقارير المالك	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	1	0	Owner Reports	\N
34	ارصده المخزون	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	3	0	Store Quantities	\N
35	صافي المشتريات	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	3	0	Net Purchases	\N
36	صافي المبيعات	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	3	0	Net Sales	\N
37	اجمالي صافي المشتريات	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	3	0	Total Net Purchases	\N
38	اجمالي صافي المبيعات	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	3	0	Total Net Sales	\N
40	تقارير الحسابات	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	0	4	Account Reports	\N
41	اليوميه العامه	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	General Journal	\N
42	ميزان المراجعه	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	Trial Balance	\N
43	دفتر الاستاذ	admin	2021-08-19 17:49:46	2021-08-19 17:49:46	4	0	General Ledger	\N
70	انواع المقابلات	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Meetings Types	\N
71	اضافه نوع مقابله	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Adding a Meeting Type	\N
72	تعديل نوع مقابله	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Modifying a Meeting Type	\N
73	حذف نوع مقابله	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Deleting a Meeting Type	\N
74	المقابلات	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Meetings	\N
75	اضافه مقابله	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Adding a Meeting	\N
76	تعديل مقابله	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Modifying a Meeting	\N
77	حذف مقابله	admin	2021-08-19 17:49:48	2021-08-19 17:49:48	5	0	Deleting a Meeting	\N
105	حذف عرض سعر	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Deleting a Quotation	\N
106	تحويل عرض سعر	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Converting a Quotation	\N
107	جدول امر البيع	admin	2021-08-19 17:49:49	2021-08-19 17:49:49	7	0	Sales Order Table	\N
108	تعديل امر البيع	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Modifying a Sales Order	\N
109	حذف امر البيع	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Deleting a Sales Order	\N
110	تحويل امر البيع	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Converting a Sales Order	\N
111	جدول مرتجع المبيعات	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Sales Return Table	\N
112	جدول المبيعات	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Sales Table	\N
113	ارتجاع فاتوره مبيعات	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Returning a Sales Invoice	\N
114	الفواتير المعلقه مبيعات	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Pending Sales Invoices	\N
115	استلام الفواتير المعلقه مبيعات	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Receiving Pending Sales Invoices	\N
116	المنتجات المستلمه مبيعات	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Sales Delivered Goods	\N
117	جدول الاقساط مبيعات	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	7	0	Sales Installments Table	\N
118	الحسابات	admin	2021-08-19 17:49:50	2021-08-19 17:49:50	0	8	Accounts	\N
131	اضافه مركز تكلفه	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Adding a Cost Center	\N
132	تعديل مركز تكلفه	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Modifying a Cost Center	\N
133	حذف مركز تكلفه	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Deleting a Cost Center	\N
134	العملات	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Currencies	\N
135	اضافه عمله	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Adding a Currency	\N
136	تعديل عمله	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Modifying a Currency	\N
137	حذف عمله	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Deleting a Currency	\N
138	انواع الشيكات	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Checks Type	\N
139	اضافه نوع شيك	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Adding a Check Type	\N
140	تعديل نوع شيك	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Modifying a Check Type	\N
141	حذف نوع شيك	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Deleting a Check Type	\N
142	اضافه قيد افتتاحي	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Adding an Opening Entry	\N
143	اضافه قيد يومي	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Adding a Journal Entry	\N
144	اضافه سند قبض	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Adding a Receiving Voucher	\N
145	اضافه سند صرف	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Adding a Payment Voucher	\N
146	جدول القيود اليوميه	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Journal Entries Table	\N
147	تعديل القيود اليوميه	admin	2021-08-19 17:49:51	2021-08-19 17:49:51	8	0	Modifying Journal Entries	\N
148	حذف القيود اليوميه	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Deleting Journal Entries	\N
149	جدول القيود الافتتاحيه	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Opening Entries Table	\N
150	تعديل القيود الافتتاحيه	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Modifying Opening Entries	\N
151	حذف القيود الافتتاحيه	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Deleting Opening Entries	\N
152	جدول سند القبض	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Receiving Voucher Table	\N
153	تعديل سند القبض	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Modifying a Receiving Voucher	\N
154	حذف سند القبض	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Deleting a Receiving Voucher	\N
155	جدول سند الصرف	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Payment Voucher Table	\N
156	تعديل سند الصرف	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Modifying a Payment Voucher	\N
157	حذف سند الصرف	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Deleting a Payment Voucher	\N
158	تحويلات الخزائن	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Transfers Between Cashes	\N
159	جدول تحويلات الخزائن	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Transfers Between Cashes Table	\N
160	الشيكات الصادره	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Issued Checks	\N
161	اضافه شيك صادر	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Adding an Issued Check	\N
162	تعديل شيك صادر	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Modifying an Issued Check	\N
163	حذف شيك صادر	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Deleting an Issued Check	\N
164	رفض شيك صادر	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Rejecting an Issued Check	\N
165	صرف شيك صادر	admin	2021-08-19 17:49:52	2021-08-19 17:49:52	8	0	Cashing an issued check	\N
166	تحويل الي شيك وارد	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	8	0	Converting to a Received Check	\N
167	الشيكات الوارده	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	8	0	Received Checks	\N
168	اضافه شيك وارد	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	8	0	Adding a Received Check	\N
169	تعديل شيك وارد	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	8	0	Modifying a Received Check	\N
170	حذف شيك وارد	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	8	0	Deleting a Received Check	\N
171	رفض شيك وارد	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	8	0	Rejecting a Received Check	\N
509	اهدافي	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	10	0	My Goals	\N
172	صرف شيك وارد	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	8	0	Cashing a Received Check	\N
173	تحويل الي شيك صادر	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	8	0	Converting to an Issued Check	\N
174	المخازن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	0	9	Stores	\N
175	عرض المخازن	admin	2021-08-19 17:49:53	2021-08-19 17:49:53	9	0	Stores Report	\N
214	تعديل الجرد	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Modifying Inventory	\N
216	تسويه الجرد	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Adjusting Inventory	\N
217	جدول التسويه	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Adjusting Inventory Table	\N
218	اضافه اصناف بدايه فتره	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Adding Beginning Inventory	\N
219	جدول اصناف بدايه فتره	admin	2021-08-19 17:49:55	2021-08-19 17:49:55	9	0	Beginning Inventory Table	\N
220	اضافه تحويلات المخازن	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	9	0	Adding Transfers Between Stores	\N
221	جدول تحويلات المخازن	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	9	0	Transfers Between Stores Table	\N
222	طباعه الباركود	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	9	0	Barcode Printing	\N
223	اعدادات طباعه الباركود	admin	2021-08-19 17:49:56	2021-08-19 17:49:56	9	0	Barcode Printing Setup	\N
298	مقابلاتي	admin	2021-08-20 16:28:09	2021-08-20 16:28:09	0	11	My Meetings	\N
299	طلباتي	admin	2021-08-21 02:07:03	2021-08-21 02:07:03	0	12	My Requests	\N
300	الصيانه	admin	2021-09-03 20:53:30	2021-09-03 20:53:30	0	13	Maintenance	\N
265	الاستحقاقات	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Entitlements	\N
266	 اضافه  استحقاق	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Adding Entitlement	\N
267	 تعديل  استحقاق	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Modifying Entitlement	\N
268	 حذف  استحقاق	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Deleting Entitlement	\N
269	الاستقطاعات	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Deductions	\N
270	 اضافه  استقطاع	admin	2021-08-19 17:49:58	2021-08-19 17:49:58	10	0	Adding a Deduction	\N
271	 تعديل  استقطاع	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Modifying a Deduction	\N
272	 حذف  استقطاع	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Deleting a Deduction	\N
273	 الحضور	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Attendance	\N
274	جدول الحضور	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Attendance Table	\N
275	حذف الحضور	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Deleting an Attendance	\N
276	تعديل الحضور	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Modifying an Attendance	\N
277	انصراف	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Leaving	\N
278	جدول الانصراف	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Leaving Table	\N
279	تعديل الانصراف	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Modifying a Leaving	\N
280	تسجيل الساعات الاضافيه	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Recording Extra Hours	\N
281	اضافه تسجيل الساعات الاضافيه	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Adding Extra Hours Record	\N
282	حذف تسجيل الساعات الاضافيه	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Deleting Extra Hours Record	\N
283	تعديل تسجيل الساعات الاضافيه	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Modifying Extra Hours Record	\N
284	اضافه قرض	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Adding a Loan	\N
285	حذف قرض	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Deleting a Loan	\N
286	القروض	admin	2021-08-19 17:49:59	2021-08-19 17:49:59	10	0	Loans	\N
287	اقساط الموظفين	admin	2021-08-19 17:50:00	2021-08-19 17:50:00	10	0	Employees Installments	\N
288	صرف راتب	admin	2021-08-19 17:50:00	2021-08-19 17:50:00	10	0	Paying a Salary	\N
289	جدول الرواتب	admin	2021-08-19 17:50:00	2021-08-19 17:50:00	10	0	Payroll Table	\N
294	اقسام العمل	admin	2021-08-19 21:51:44	2021-08-19 21:51:44	10	0	Departments	\N
295	اضافه قسم عمل	admin	2021-08-19 21:51:44	2021-08-19 21:51:44	10	0	Adding a Department	\N
296	تعديل قسم عمل	admin	2021-08-19 21:51:45	2021-08-19 21:51:45	10	0	Modifying a Department	\N
297	حذف قسم عمل	admin	2021-08-19 21:51:45	2021-08-19 21:51:45	10	0	Deleting a Department	\N
424	تحصيل مناديب	admin	2022-03-04 20:28:39	2022-03-04 20:28:39	3	0	Representatives Collections	\N
425	مبيعات مناديب	admin	2022-03-04 20:28:39	2022-03-04 20:28:39	3	0	Representatives Sales	\N
426	سند عميل	admin	2022-03-04 20:28:40	2022-03-04 20:28:40	8	0	Customer Receipt	\N
427	جرد المخازن	admin	2022-03-06 21:29:45	2022-03-06 21:29:45	3	0	Stores Inventory	\N
428	عرض سعر مصور	admin	2022-03-08 00:40:00	2022-03-08 00:40:00	7	0	Illustrated Quotation	\N
429	جدول عرض سعر مصور	admin	2022-03-08 00:40:01	2022-03-08 00:40:01	7	0	Illustrated Quotation Table	\N
430	حذف عرض سعر مصور	admin	2022-03-08 00:40:01	2022-03-08 00:40:01	7	0	Deleting an Illustrated Quotation	\N
431	تعديل عرض سعر مصور	admin	2022-03-08 00:40:01	2022-03-08 00:40:01	7	0	Modifying an Illustrated Quotation	\N
432	المشاريع	admin	2022-03-19 12:24:54	2022-03-19 12:24:54	5	0	Projects	\N
433	اضافه مشروع	admin	2022-03-19 12:24:54	2022-03-19 12:24:54	5	0	Adding a project	\N
434	تعديل مشروع	admin	2022-03-19 12:24:54	2022-03-19 12:24:54	5	0	Deleting a project	\N
444	مبيعات اشتراكات	admin	2022-04-07 20:04:13	2022-04-07 20:04:13	7	0	Subscriptions Sales	\N
445	جدول مبيعات اشتراكات	admin	2022-04-07 20:04:14	2022-04-07 20:04:14	7	0	Subscriptions Sales Table	\N
446	حذف مبيعات اشتراكات	admin	2022-04-07 20:04:14	2022-04-07 20:04:14	7	0	Deleting Subscriptions Sales	\N
435	حذف مشروع	admin	2022-03-19 12:24:54	2022-03-19 12:24:54	5	0	Deleting a project	\N
436	المهام	admin	2022-03-19 12:24:55	2022-03-19 12:24:55	5	0	Tasks	\N
437	اضافه مهمه	admin	2022-03-19 12:24:55	2022-03-19 12:24:55	5	0	Adding a Task	\N
438	تعديل مهمه	admin	2022-03-19 12:24:55	2022-03-19 12:24:55	5	0	Modifying a Task	\N
439	حذف مهمه	admin	2022-03-19 12:24:55	2022-03-19 12:24:55	5	0	Deleting a Task	\N
440	مهامي	admin	2022-03-19 12:24:55	2022-03-19 12:24:55	5	0	My Tasks	\N
448	الترجمه	admin	2022-04-07 22:20:45	2022-04-07 22:20:45	1	0	Translation	\N
441	حركه المستخدمين	admin	2022-04-03 13:59:10	2022-04-03 13:59:10	1	0	Users Activities	\N
442	مواقع الموظفين	admin	2022-04-03 13:59:10	2022-04-03 13:59:10	1	0	Employees Locations	\N
443	مبيعات العملاء	admin	2022-04-03 13:59:10	2022-04-03 13:59:10	3	0	Customers Sales	\N
447	تعديل مبيعات اشتراكات	admin	2022-04-07 20:04:14	2022-04-07 20:04:14	7	0	Modifying Subscriptions Sales	\N
449	مشتريات موردين	admin	\N	\N	3	0	Suppliers Purchases	\N
451	جدول الزيارات و عدد الفواتير	admin	\N	\N	5	0	Visiting and Number of Invoices Table	\N
453	الارباح المتوقعه	admin	\N	\N	3	0	Expected Profits	\N
454	صلاحيات الاصناف	admin	\N	\N	3	0	Validity of Items	\N
456	سيارات الشركه	admin	2022-05-21 00:51:43	2022-05-21 00:51:43	17	0	Company Vehicles	\N
457	انواع البونات	admin	2022-05-21 00:51:43	2022-05-21 00:51:43	17	0	Tickets Types	\N
458	انواع الايصالات	admin	2022-05-21 00:51:43	2022-05-21 00:51:43	17	0	Receipts Types	\N
459	انواع العدادات	admin	2022-05-21 00:51:43	2022-05-21 00:51:43	17	0	Counters Types	\N
460	مشتريات الوقود	admin	2022-05-21 00:51:44	2022-05-21 00:51:44	17	0	Fuel Purchases	\N
461	جدول مشتريات الوقود	admin	2022-05-21 00:51:44	2022-05-21 00:51:44	17	0	Fuel Purchases Table	\N
462	مبيعات الوقود	admin	2022-05-21 00:51:44	2022-05-21 00:51:44	17	0	Fuel Sales	\N
463	جدول مبيعات الوقود	admin	2022-05-21 00:51:44	2022-05-21 00:51:44	17	0	Fuel Sales Table	\N
455	البنزينه	admin	2022-05-21 00:51:43	2022-05-21 00:51:43	0	17	Petrol Station	\N
464	اجمالي الحركات اليوميه	admin	\N	\N	3	0	Total of Journal Entries	\N
465	الموقع	admin	2022-06-04 14:36:30	2022-06-04 14:36:30	0	18	The Site	\N
466	سلايدر الموقع	admin	2022-06-04 14:36:30	2022-06-04 14:36:30	18	0	Site Slider	\N
467	من نحن	admin	2022-06-04 14:36:31	2022-06-04 14:36:31	18	0	About Us	\N
468	التواصل الاجتماعي	admin	2022-06-04 14:36:31	2022-06-04 14:36:31	18	0	Social Media	\N
469	رسايل التواصل	admin	2022-06-04 14:36:31	2022-06-04 14:36:31	18	0	Social Media Messages	\N
470	التواصل معنا	admin	2022-06-04 14:36:31	2022-06-04 14:36:31	18	0	Contuct Us	\N
471	المقالات	admin	2022-06-04 14:36:32	2022-06-04 14:36:32	18	0	Articles	\N
472	السياسات	admin	2022-06-04 14:36:32	2022-06-04 14:36:32	18	0	Policies	\N
473	الشروط و الاحكام	admin	2022-06-04 14:36:32	2022-06-04 14:36:32	18	0	Terms and Conditions	\N
474	كوبون كود	admin	2022-06-04 14:36:32	2022-06-04 14:36:32	18	0	Ticket Code	\N
476	الاسئله الشائعه	admin	2022-06-04 16:44:16	2022-06-04 16:44:16	18	0	Frequently Asked Questions	\N
478	اعلانات تفاصيل االمنتج	admin	2022-06-04 16:44:17	2022-06-04 16:44:17	18	0	Advertisements Product Details	\N
479	صور سياسه المتجر	admin	2022-06-04 16:44:17	2022-06-04 16:44:17	18	0	Store Policy Pictures	\N
477	الدول	admin	2022-06-04 16:44:17	2022-06-04 16:44:17	5	0	Countries	\N
475	طلبات المتجر	admin	2022-06-04 14:36:32	2022-06-04 14:36:32	18	0	Store Requests	\N
450	مبيعات المنفذ	admin	\N	\N	3	0	Store Sales	\N
487	الفاتوره الالكترونيه	admin	2022-08-20 09:58:54	2022-08-20 09:58:54	0	20	Electronic Invoice	\N
488	ارسال فواتير مشتريات	admin	2022-08-20 09:58:54	2022-08-20 09:58:54	20	0	Sending Purchase Invoices	\N
489	ارسال فواتير مبيعات	admin	2022-08-20 09:58:54	2022-08-20 09:58:54	20	0	Sending Sales Invoices	\N
490	فواتير مشتريات مرسله	admin	2022-08-20 09:58:54	2022-08-20 09:58:54	20	0	Purchases Invoices Sent	\N
491	فواتير مبيعات مرسله	admin	2022-08-20 09:58:54	2022-08-20 09:58:54	20	0	Sales Invoices Sent	\N
492	الفنادق	admin	2022-08-20 09:58:54	2022-08-20 09:58:54	0	21	Hotels	\N
493	الغرف	admin	2022-08-20 09:58:54	2022-08-20 09:58:54	21	0	Rooms	\N
494	الحجز	admin	2022-08-20 09:58:54	2022-08-20 09:58:54	21	0	Reservation	\N
495	جدول الحجوزات	admin	2022-08-20 09:58:55	2022-08-20 09:58:55	21	0	Reservation Table	\N
497	تقرير الحجوزات	admin	\N	\N	21	0	Reservation Reports	\N
498	مبيعات مناديب تفصيلي	admin	\N	\N	3	0	Sales Detailed Report of Representative	\N
499	مبيعات مخازن تفصيلي	admin	\N	\N	3	0	Sales Detailed Report of Stores	\N
500	مستويات التوظيف	admin	\N	\N	10	0	Employment Levels	\N
501	شركات التأمين	admin	\N	\N	10	0	Insurance Companies	\N
502	جدول طلبات توظيف	admin	\N	\N	10	0	Employment Applications Table	\N
341	الشركاء	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	8	0	Partners	\N
342	اضافه شركاء	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	8	0	Adding a Partner	\N
343	حذف شركاء	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	8	0	Deleting a Partner	\N
346	الفروع	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	8	0	Branches	\N
347	اضافه فرع	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	8	0	Adding a Branch	\N
348	حذف فرع	admin	2021-10-14 19:34:59	2021-10-14 19:34:59	8	0	Deleting a Branch	\N
349	تعديل فرع	admin	2021-10-14 19:34:59	2021-10-14 19:34:59	8	0	Modifying a Branch	\N
507	نسبه الربح	admin	\N	\N	7	0	Profit Ratio	\N
508	شركات التقسيط	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	7	0	Installment Companies	\N
510	طلب استقاله	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	10	0	Resignation Request	\N
511	طلبات استقاله	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	10	0	Resignation Requests	\N
512	اخلاء طرف	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	10	0	Disclaimer	\N
513	تقرير ارباح اصناف	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	3	0	Items Profit Report	\N
514	تقرير ارباح اصناف متوقعه	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	3	0	Items Expected Profit Report	\N
515	تقرير فواتير المبيعات	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	3	0	Sales Invoices Report	\N
516	تقرير فواتير المشتريات	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	3	0	Purchasing Invoices Report	\N
517	تقرير حركات المخازن	admin	2022-10-18 20:30:32	2022-10-18 20:30:32	3	0	Stores Transactions Report	\N
518	تقرير تحويلات مخازن	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	3	0	Transfers Between Stores Report	\N
520	تقرير مقارنه اسعار بيع	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	3	0	Selling Price Comparison Report	\N
521	تقرير حزكه صنف تفصيلي	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	3	0	Detailed Report on Item Transaction	\N
522	تقرير الاصناف الاكثر مبيعا	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	3	0	Best-Selling Items Report	\N
523	تقرير ربحيه اصناف مباعه	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	3	0	Profitability Report of Sold Items	\N
531	تقرير جرد السيريال	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	3	0	Inventory Report for Items with Serial Number	\N
532	قائمه الاسعار	admin	\N	\N	7	0	Pricing List	\N
533	تعديل تحويل مخازن	admin	\N	\N	9	0	Modifying Transfers Between Stores	\N
534	رفض تحويل مخازن	admin	\N	\N	9	0	Rejecting Transfers Between Stores	\N
536	تعديل تحويل خزائن	admin	\N	\N	8	0	Modifying Transfers Between Cashes	\N
537	رفض تحويل خزائن	admin	\N	\N	8	0	Rejecting Transfers Between Cashes	\N
539	حذف تحويل مخازن	admin	\N	\N	9	0	Deleting Transfers Between Stores	\N
540	رسوم خدمات شركات التقسيط	admin	\N	\N	7	0	Installment Companies Service Fees	\N
541	ايقونه اضافه صنف	admin	\N	\N	6	0	Icon for Adding an Item	\N
542	ايقونه اضافه عميل	admin	\N	\N	7	0	Icon for Adding a Customer	\N
543	ايقونه اضافه مورد	admin	\N	\N	6	0	Icon for Adding a Supplier	\N
544	خانه رصيد حساب العميل	admin	\N	\N	7	0	Customer Account Balance	\N
545	خانه رصيد حساب مورد	admin	\N	\N	6	0	Supplier Account Balance	\N
546	حذف الحركات	admin	\N	\N	1	0	Deleting Entries	\N
547	تقفيل اليوميه بتفاصيل	admin	\N	\N	3	0	Closing the Journal Entries with Details	\N
538	تأكيد تحويل خزائن	admin	\N	\N	8	0	Confirming the Transfers Between Cashes	\N
535	تأكيد تحويل مخازن	admin	\N	\N	9	0	Confirming the Transfers Between Stores	\N
548	ارباح مبيعات مناديب تفصيلي	admin	\N	\N	3	0	Detailed Report on Sales Profitability for Representatives	\N
549	مبيعات شركات التقسيط	admin	\N	\N	3	0	The Sales of Installment Companies	\N
550	تكلفه المخازن	admin	\N	\N	3	0	Inventory Coast	\N
551	ارسال فواتير مرتجعات مبيعات	admin	\N	\N	20	0	Sending Sales Return Invoices	\N
552	فواتير مرتجعات مرسله	admin	\N	\N	20	0	Sales Return Invoices had been Sent	\N
553	تقرير مبيعات مفصله	admin	\N	\N	3	0	Detailed Sales Report	\N
554	مبيعات مجموعات عملاء تفصيلي	admin	\N	\N	3	0	Detailed Sales of Customers Groups Report	\N
555	نموذج تصنيع للغير	admin	\N	\N	16	0	Manufacturing Model for Others	\N
556	جدول نماذج تصنيع للغير	admin	\N	\N	16	0	Manufacturing Model for Others Table	\N
557	تنفيذ و استلام للغير	admin	\N	\N	16	0	Manufacturing Implementation and Receiving for Others	\N
558	التحكم في طريقه تحويل المخازن	admin	\N	\N	9	0	Controling the way of Transfers Between Stores	\N
559	جدول مبيعات  تحويلات المخازن	admin	\N	\N	9	0	Sales Table of Transfers Between Stores	\N
560	تأكيد سند قبض	admin	\N	\N	8	0	Confirming a Receiving Voucher	\N
561	تأكيد سند صرف	admin	\N	\N	8	0	Confirming a Payment Voucher	\N
562	تأكيد قيد يومي	admin	\N	\N	8	0	Confirming a Journal Entry	\N
563	تأكيد قيد افتتاحي	admin	\N	\N	8	0	Confirming an Opening Entry	\N
564	سند مصروف	admin	\N	\N	7	0	Expense Voucher	\N
565	سند مورد	admin	\N	\N	7	0	Supplier Voucher	\N
566	مرتجع بدون فاتوره	admin	\N	\N	7	0	Sales Return Without an Invoice	\N
567	نقاط الانتاج	admin	\N	\N	10	0	Production Points	\N
568	ارسال ايصال الكتروني	admin	\N	\N	20	0	Sending an Electronic Receipt	\N
569	ايصالات مرسله	admin	\N	\N	20	0	Electronic Receipts had been sent	\N
570	ارسال مرتجع ايصال الكتروني	admin	\N	\N	20	0	Sending a Sales Return Electronic Receipt	\N
571	المنافسين	admin	\N	\N	6	0	Competitors	\N
572	تقارير الموارد البشريه	admin	\N	\N	0	22	Human Resources Reports	\N
573	تقرير الحضور و الانصراف	admin	\N	\N	22	0	Attendance Reports	\N
574	تقرير قيمة الحضور	admin	\N	\N	22	0	Attendance Value Reports	\N
575	تقرير صرف الرواتب	admin	\N	\N	22	0	Payroll Report	\N
529	تقرير قائمه الدخل الفرعي	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	4	0	Sub-Income Statement Report	\N
526	تقرير كشف حساب عملاء	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	4	0	Customers Account Statements Report	\N
525	تقرير كشف حساب مورد مفصل	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	4	0	Detailed Supplier Account Statement Report	\N
527	تقرير كشف حساب موردين	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	4	0	Suppliers Account Statements Report	\N
530	تقرير قائمه المصاريف	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	4	0	Expense List Report	\N
519	تقرير تحويلات خزائن	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	4	0	Transfers Between Cashes Report	\N
584	نسخ قاعده البيانات	admin	\N	\N	1	0	Copying the Database	\N
585	متابعه العملاء	admin	\N	\N	5	0	Following up with Customers	\N
586	مبيعات البرندات	admin	\N	\N	3	0	Brands Sales	\N
587	تقرير الاصول الثابته	admin	\N	\N	4	0	Fixed Assets Report	\N
592	تقرير وصلات الامانه	admin	\N	\N	4	0	Bonds Report	\N
593	تقرير ربح مجموعات	admin	\N	\N	3	0	Groups Profitability Report	\N
496	انواع الغرف	admin	\N	\N	21	0	Rooms Type	\N
594	تقرير الرواتب المسدده	admin	\N	\N	10	0	Report of paid salaries	\N
595	المطاعم	admin	\N	\N	0	23	Resturant	\N
596	الطاولات	admin	\N	\N	23	0	Tables	\N
597	مبيعات المطعم	admin	\N	\N	23	0	Resturant Sales	\N
598	شاشة المطبخ	admin	\N	\N	23	0	Kitchen Screen	\N
599	شاشة التسليمات	admin	\N	\N	23	0	Recived Screen	\N
600	شاشة العميل	admin	\N	\N	23	0	Client Screen	\N
601	سلايدر المطاعم	admin	\N	\N	23	0	Resturant Slider	\N
602	هوم ٢ المطاعم	admin	\N	\N	23	0	Resturant Home 2	\N
603	من نحن المطاعم	admin	\N	\N	23	0	Resturant About	\N
604	قسم الفيديو المطاعم	admin	\N	\N	23	0	Resturant Video Section	\N
605	تواصل اجتماعي المطاعم	admin	\N	\N	23	0	Resturant Social Media	\N
606	المقالات المطاعم	admin	\N	\N	23	0	Resturant Blogs	\N
607	سياسه الخصوصيه المطاعم	admin	\N	\N	23	0	Resturant Privacy and Policy	\N
608	شروط و احكام المطاعم	admin	\N	\N	23	0	Resturant Terms and Conditions	\N
609	كود خصم المطاعم	admin	\N	\N	23	0	Resturant Cupon Code	\N
610	الاستوديو المطاعم	admin	\N	\N	23	0	Resturant Gallery	\N
611	مراجعات المطاعم	admin	\N	\N	23	0	Resturant Reviews	\N
612	حجوزات المطاعم	admin	\N	\N	23	0	Resturant Reservations	\N
613	طلبات المطعم	admin	\N	\N	23	0	Resturant Orders	\N
614	قائمة الزوار	admin	\N	\N	1	0	Guest List	\N
615	الاحصائيات	admin	\N	\N	1	0	Statistics	\N
617	جدول المواعيد	admin	\N	\N	1	0	Calendar	\N
618	الاشعارات	admin	\N	\N	1	0	Notifications	\N
619	اوامر الشغل	admin	\N	\N	7	0	Job Order	\N
620	جدول اوامر الشغل	admin	\N	\N	7	0	Job Order Sechdule	\N
621	جدول تنفيذ اوامر الشغل	admin	\N	\N	7	0	Execute Job Order Sechdule	\N
622	تقرير رواتب الموظفين	admin	\N	\N	22	0	Report Employees Salaries	\N
623	مراكز التدريب	admin	\N	\N	0	24	Traning Center	\N
624	فئات الكورسات	admin	\N	\N	24	0	Courses Categories	\N
625	المواد العلمية	admin	\N	\N	24	0	Scientfic Matrial	\N
626	مجموعة الطلاب	admin	\N	\N	24	0	Students Group	\N
627	انواع الكورسات	admin	\N	\N	24	0	Courses Type	\N
628	الحالات الخاصة	admin	\N	\N	24	0	Special Cases	\N
629	القاعات	admin	\N	\N	24	0	Courses Halls	\N
630	المدربين	admin	\N	\N	24	0	Teachers	\N
631	جدول المدربين	admin	\N	\N	24	0	Teachers Sechdule	\N
632	الطلاب	admin	\N	\N	24	0	Students	\N
633	جدول الطلاب	admin	\N	\N	24	0	Students Sechdule	\N
634	الكورسات	admin	\N	\N	24	0	Courses	\N
635	حجز كورس	admin	\N	\N	24	0	Courses Reservation	\N
636	جدول حجوزات الكورسات	admin	\N	\N	24	0	Courses Reservation Sechdule	\N
637	تسجيل حضور كورسات	admin	\N	\N	24	0	Courses Attendance	\N
638	جدول تسجيل حضور كورسات	admin	\N	\N	24	0	Courses Attendance	\N
199	الضرائب	admin	2021-08-19 17:49:54	2021-08-19 17:49:54	8	0	Taxes	\N
639	الترجمة	admin	\N	\N	0	25	Translate	\N
640	الغرض من السفر	admin	\N	\N	25	0	Purpose Travel	\N
641	اللغات	admin	\N	\N	25	0	Languages	\N
642	السفارات	admin	\N	\N	25	0	Empassies	\N
643	شركات الترجمة و السياحة	admin	\N	\N	25	0	Translate/Toursim Companies	\N
644	نماذج الترجمة	admin	\N	\N	25	0	Translate Modules	\N
645	حجز ميعاد سفارة	admin	\N	\N	25	0	Empassy Reserve Date	\N
646	اضافة ترجمة	admin	\N	\N	25	0	Add Translate	\N
647	تغيير الاسعار	admin	\N	\N	9	0	Chang Prices	\N
648	اجمالي مصاريف الخزائن	admin	\N	\N	4	0	Total Expenses Safe	\N
378	عمولات و خصومات الموظفين	admin	2021-12-26 16:23:51	2021-12-26 16:23:51	22	0	Employee Commissions and Detuctions	\N
528	تقرير اهداف الموظفين	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	22	0	Employee Goals Report	\N
590	مبيعات الصيانه	admin	\N	\N	13	0	Maintenance Sales	\N
591	توالف الصيانه	admin	\N	\N	13	0	Maintenance Damaged	\N
524	تقرير كشف حساب عميل مفصل	admin	2022-10-18 20:30:33	2022-10-18 20:30:33	4	0	Detailed Customer Account Statement Report	\N
588	اعمار ديون العملاء	admin	\N	\N	4	0	Customers Debt Ages	\N
616	تقرير قائمه المقبوضات	admin	\N	\N	4	0	Incom List Report	\N
452	الاقساط الغير مدفوعه	admin	\N	\N	4	0	Unpaid Installments	\N
589	اعمار ديون الموردين	admin	\N	\N	4	0	Suppliers Debt Ages	\N
649	جدول المبيعات الضريبية	admin	\N	\N	7	0	Sales Tax Sechdule	\N
650	جدول مبيعات الدليفري	admin	\N	\N	7	0	Sales Delivery Sechdule	\N
651	جدول مرتجع المبيعات الضريبية	admin	\N	\N	7	0	Return Sales Tax Sechdule	\N
652	كميات صنف تجميعي	admin	\N	\N	3	0	Assembly Products Qties	\N
653	جرد المخزون	admin	\N	\N	3	0	Stores Inventories	\N
654	اصناف راكدة جديد	admin	\N	\N	3	0	New Stegnant Items	\N
655	رصيد المخزون	admin	\N	\N	3	0	Cresdit Stores	\N
656	ارصدة المخزون بالفئات	admin	\N	\N	3	0	Credit Stores by Categories 	\N
657	حركات ارصدة مخزون	admin	\N	\N	3	0	Credit Stores Moves	\N
658	مبيعات مناديب تفصيلي جديد	admin	\N	\N	3	0	New Delegate Sales Details 	\N
659	تقرير المدرسين	admin	\N	\N	24	0	Teacher Report	\N
660	عينات	admin	\N	\N	7	0	Samples	\N
661	جدول العينات	admin	\N	\N	7	0	Samples Sechdule	\N
662	استبدال بدون فاتوره	admin	\N	\N	7	0	Transfer Without Bill	\N
663	جدول مرتجع بدون فاتورة	admin	\N	\N	7	0	Return Without Bill Sechdule	\N
664	اضافه مبيعات	admin	\N	\N	7	0	Add Sales	\N
665	اجمالي تحصيل المناديب	admin	\N	\N	4	0	Total Collector of Delegates	\N
666	الفواتير المعلقة نقاط البيع	admin	\N	\N	7	0	Hold Sales POS	\N
667	جدول مبيعات تحويلات المخازن	admin	\N	\N	9	0	Stores Transfer Sales Sechdule	\N
668	جدول مرتجع مبيعات تحويلات المخازن	admin	\N	\N	9	0	Return Stores Transfer Sales Sechdule	\N
669	انواع تقيمات العملاء	admin	\N	\N	5	0	Customers Rate Types	\N
670	اضافة تعليق عميل	admin	\N	\N	5	0	Add Comment Customer	\N
671	تقرير قياس العملاء	admin	\N	\N	5	0	Customer Period Report	\N
672	تقرير التعليقات	admin	\N	\N	5	0	Comments Report	\N
673	السعر في تحويلات المخازن	admin	\N	\N	9	0	Stores Transfer Price	\N
674	الهدايا	admin	\N	\N	7	0	Gifts	\N
675	جدول الهدابا	admin	\N	\N	7	0	Gifts Sechdule	\N
676	سعر التكلفة في التصنيع	admin	\N	\N	14	0	Manufacturing Cost Price 	\N
677	جدول مبيعات المطاعم	admin	\N	\N	23	0	Resturant Sales Sechdule	\N
678	جدول مبيعات المطاعم المعلقة	admin	\N	\N	23	0	Resturant Sales Hold Sechdule	\N
679	عهد الموظفين	admin	\N	\N	10	0	Employees Covenant	\N
680	خط السير	admin	\N	\N	5	0	Itinerary	\N
681	خط سيري	admin	\N	\N	5	0	My Itinerary	\N
682	تقرير الفواتير المعدلة و المحذوفة	admin	\N	\N	3	0	Edit and Delete Bills Report	\N
683	الكميات المحجوزة	admin	\N	\N	3	0	Hold Qties Report	\N
684	تقرير مرتجع بدون فاتورة	admin	\N	\N	3	0	Return Without Bill Report	\N
685	كميات المخزون	admin	\N	\N	3	0	StoresQties Report	\N
686	مبيعات الاصناف بالمجموعات	admin	\N	\N	3	0	Products Sales Groups Report	\N
687	مبيعات الاصناف بالماركات	admin	\N	\N	3	0	Products Sales Brands Report	\N
688	تقرير نسب الموظفين من الماركات و المجموعات	admin	\N	\N	3	0	Employees Precents Brands and Groups Report	\N
689	تقرير زيارات المندوب	admin	\N	\N	5	0	Delegate Vistis Report	\N
690	المستثمرين	admin	\N	\N	8	0	Investors	\N
344	صرف ارباح	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	8	0	Paying Dividends	\N
345	اضافه صرف ارباح	admin	2021-10-14 19:34:58	2021-10-14 19:34:58	8	0	Adding a Paying Dividends	\N
691	تقرير راس المال	admin	\N	\N	8	0	Capital Report	\N
27	استعلام عن منتج	admin	2021-08-19 17:49:45	2021-08-19 17:49:45	3	0	Query about an item	\N
692	تقرير مبيعات برندات مفصله	admin	\N	\N	3	0	Brands Sales in Details	\N
693	تقرير اعمار ديون العملاء	admin	\N	\N	4	0	Customer Debt Restructuring	\N
694	تقرير اعمار ديون الموردين	admin	\N	\N	4	0	Vendor Debt Restructuring	\N
695	ارصدة الموردين	admin	\N	\N	4	0	Vendors Balances Report	\N
696	امر دفع	admin	\N	\N	8	0	Order Pay	\N
697	جدول اوامر الدفع	admin	\N	\N	8	0	Order Pay Sechdule	\N
698	متابعاتي	admin	\N	\N	5	0	My Follow List	\N
699	قائمة المتابعات	admin	\N	\N	5	0	Follow List	\N
701	حالات المشاريع	admin	\N	\N	26	0	Project Status	\N
702	حالات العقود	admin	\N	\N	26	0	Contract Status	\N
703	اضافة مشروع	admin	\N	\N	26	0	Add New Project	\N
704	مشاريع عقارات	admin	\N	\N	26	0	Projects	\N
705	تقرير ارباح المشاريع	admin	\N	\N	26	0	Projects Profit Report	\N
706	تطبيقات التوصيل	admin	\N	\N	23	0	Delivery Apps	\N
707	تغير اسعار تطبيقات التوصيل	admin	\N	\N	23	0	Change Price Delivery Apps	\N
708	مكافأت الموردين	admin	\N	\N	3	0	Vendor Bonus Report	\N
709	جهاز البصمة	admin	\N	\N	10	0	Fingerprint Device	\N
710	موديول الشحن	admin	\N	\N	0	19	Shipping Module	\N
711	مشاكل التذاكر	admin	\N	\N	5	0	Ticket Issues	\N
712	تحليل الصفقات	admin	\N	\N	5	0	Deals Analysis	\N
713	تقرير التذاكر	admin	\N	\N	5	0	Ticket Report	\N
700	المقاولات	admin	\N	\N	0	26	Contracting	\N
714	طلب شحنة	admin	2025-08-21 11:12:09	2025-08-21 11:12:09	19	0	Shipment Request	\N
715	جدول طلبات الشحنات	admin	2025-08-21 11:12:09	2025-08-21 11:12:09	19	0	Shipment Request Sechdule	\N
716	الشحنة	admin	2025-08-21 11:12:09	2025-08-21 11:12:09	19	0	Shipment	\N
717	جدول الشحنات	admin	2025-08-21 11:12:09	2025-08-21 11:12:09	19	0	Shipment Sechdule	\N
718	توزيع الشحنات	admin	2025-08-21 11:12:10	2025-08-21 11:12:10	19	0	Shipments Distribution	\N
719	جدول توزيع الشحنات	admin	2025-08-21 11:12:10	2025-08-21 11:12:10	19	0	Shipments Distribution Sechdule	\N
720	تفريغ الشحنات	admin	2025-08-21 11:12:10	2025-08-21 11:12:10	19	0	Unloading Shipments	\N
721	جدول تفريغ الشحنات	admin	2025-08-21 11:12:10	2025-08-21 11:12:10	19	0	Unloading Shipments Sechdule	\N
722	تسليمات الشحنات	admin	2025-08-21 11:12:10	2025-08-21 11:12:10	19	0	Recived Shipments	\N
723	جدول تسليمات الشحنات	admin	2025-08-21 11:12:10	2025-08-21 11:12:10	19	0	Recived Shipments Sechdule	\N
724	انواع الشحنات	admin	2025-08-21 11:12:11	2025-08-21 11:12:11	19	0	Shipping Types	\N
725	تصنيفات الشحنات	admin	2025-08-21 11:12:11	2025-08-21 11:12:11	19	0	Shipping Categories	\N
726	انواع طلبات الشحنات	admin	2025-08-21 11:12:11	2025-08-21 11:12:11	19	0	Shipping Rqst Types	\N
727	اسعار الشحنات	admin	2025-08-21 11:12:11	2025-08-21 11:12:11	19	0	Shipping Prices	\N
728	سيارات الشحنات	admin	2025-08-21 11:12:11	2025-08-21 11:12:11	19	0	Car Shipping	\N
729	حركات الشحنات	admin	2025-08-21 11:12:11	2025-08-21 11:12:11	19	0	Shipment Moves	\N
730	تقرير تعليقات العملاء	admin	\N	\N	5	0	Comment Customers Report	\N
731	تقرير اصناف اوامر البيع	admin	\N	\N	3	0	Sales Order Products Report	\N
732	اسعار شحن فواتير المبيعات	admin	\N	\N	3	0	Price Shipping Sales Bill Report	\N
733	طلبات العملاء	admin	\N	\N	7	0	Client Requests	\N
734	جدول طلبات العملاء	admin	\N	\N	7	0	Client Requests Sechdule	\N
735	انواع مصاريف الاستيراد	admin	\N	\N	6	0	Import Expenses Types	\N
736	مقاولين النقل	admin	\N	\N	19	0	Transport Contractors	\N
737	اسعار النقل	admin	\N	\N	19	0	Transport Prices	\N
738	مستلمين النقل	admin	\N	\N	19	0	TransportReceiver	\N
739	النقل	admin	\N	\N	19	0	Transport	\N
740	جدول النقل	admin	\N	\N	19	0	Transport Sechdule	\N
741	طلب نقل	admin	\N	\N	19	0	Rqst Transport	\N
742	جدول طلبات النقل	admin	\N	\N	19	0	Rqst Transport Sechdule	\N
743	اذن النقل	admin	\N	\N	19	0	Transport Permit	\N
744	جدول اذونات النقل	admin	\N	\N	19	0	Transport Permit Sechdule	\N
745	تقرير فرق المقايسات	admin	\N	\N	26	0	Assay Difference Report	\N
746	تقرير نسب المقاول	admin	\N	\N	19	0	Contractor Transport Report	\N
747	تقرير نسب السائق	admin	\N	\N	19	0	Driver Transport Report	\N
748	التفصيل	admin	\N	\N	0	27	Sewing	\N
749	انواع التفصيل	admin	\N	\N	27	0	Sewing Types	\N
750	الاكمام	admin	2026-03-09 08:39:43	2026-03-09 08:39:43	27	0	Sleeves	\N
751	جبذور الاكمام	admin	2026-03-09 08:39:43	2026-03-09 08:39:43	27	0	Cseed Sleeves	\N
752	الكبكات	admin	2026-03-09 08:39:43	2026-03-09 08:39:43	27	0	AlKabkat	\N
753	الطقطق	admin	2026-03-09 08:39:43	2026-03-09 08:39:43	27	0	AlTaktak	\N
754	جيب الجنب	admin	2026-03-09 08:39:43	2026-03-09 08:39:43	27	0	Side Pocket	\N
755	حشوة الكبك	admin	2026-03-09 08:39:44	2026-03-09 08:39:44	27	0	Cupcake Filling	\N
756	الياقة	admin	2026-03-09 08:39:44	2026-03-09 08:39:44	27	0	Collar	\N
757	حشوة الياقة	admin	2026-03-09 08:39:44	2026-03-09 08:39:44	27	0	Collar Padding	\N
758	جيب الصدر	admin	2026-03-09 08:39:44	2026-03-09 08:39:44	27	0	Chest Pocket	\N
759	حشوة جيب الصدر	admin	2026-03-09 08:39:44	2026-03-09 08:39:44	27	0	Chest Pocket Filling	\N
760	الجبذور	admin	2026-03-09 08:39:45	2026-03-09 08:39:45	27	0	Seeds	\N
761	حشوة الجبذور	admin	2026-03-09 08:39:45	2026-03-09 08:39:45	27	0	Seed Filling	\N
762	التطريز	admin	2026-03-09 08:39:45	2026-03-09 08:39:45	27	0	Embroidery	\N
763	الازرار	admin	2026-03-09 08:39:45	2026-03-09 08:39:45	27	0	Buttons	\N
764	ارتفاعات الدي اكس اف	admin	2026-03-09 08:39:45	2026-03-09 08:39:45	27	0	DXF Heights	\N
765	امر التفصيل	admin	2026-03-09 08:39:45	2026-03-09 08:39:45	27	0	Sewing Order	\N
766	جدول اوامر التفصيل	admin	2026-03-09 08:39:46	2026-03-09 08:39:46	27	0	Sewing Order Sechdule	\N
767	طلب تفصيل	admin	\N	\N	27	0	Sewing Request	\N
768	جدول طلبات التفصيل	admin	\N	\N	27	0	Sewing Request Sechdule	\N
769	جدول تنفيذات التفصيل	admin	\N	\N	27	0	Execute Sewing Order Sechdule	\N
770	سمك الاصناف	admin	\N	\N	9	0	Product Thikness	\N
771	مقاس الاصناف	admin	\N	\N	9	0	Product Sizes	\N
772	الوان الاصناف	admin	\N	\N	9	0	Product Colors	\N
773	الاعتمادات المستندية	admin	\N	\N	6	0	Documentary Credits	\N
774	جدول الاعتمادات المستندية	admin	\N	\N	6	0	Documentary Credits Sechdule	\N
775	العقارات	admin	\N	\N	0	28	Real States	\N
776	الملاك	admin	2026-04-23 08:49:09	2026-04-23 08:49:09	28	0	Owners Real	\N
777	اماكن العقارات	admin	2026-04-23 08:49:09	2026-04-23 08:49:09	28	0	Places Real	\N
778	الاستوديو	admin	2026-04-23 08:49:10	2026-04-23 08:49:10	28	0	Studio	\N
779	الشقق	admin	2026-04-23 08:49:10	2026-04-23 08:49:10	28	0	Apartment	\N
780	البيوت	admin	2026-04-23 08:49:10	2026-04-23 08:49:10	28	0	Houses	\N
781	الفيلل	admin	2026-04-23 08:49:10	2026-04-23 08:49:10	28	0	Villas	\N
782	الاستراحات	admin	2026-04-23 08:49:11	2026-04-23 08:49:11	28	0	Rest Stop	\N
783	المحلات	admin	2026-04-23 08:49:11	2026-04-23 08:49:11	28	0	Shop	\N
784	المكاتب	admin	2026-04-23 08:49:11	2026-04-23 08:49:11	28	0	Office	\N
785	المخازن العقارية	admin	2026-04-23 08:49:11	2026-04-23 08:49:11	28	0	Stores	\N
786	المصانع العقارية	admin	2026-04-23 08:49:12	2026-04-23 08:49:12	28	0	Factories	\N
787	الاراضي الزراعية	admin	2026-04-23 08:49:12	2026-04-23 08:49:12	28	0	Agricultural Lands	\N
788	عقد البيع	admin	2026-04-23 08:49:12	2026-04-23 08:49:12	28	0	Sales Contract	\N
789	عقد الايجار	admin	2026-04-23 08:49:12	2026-04-23 08:49:12	28	0	Rent Contract	\N
790	المخالصه	admin	2026-04-23 08:49:12	2026-04-23 08:49:12	28	0	Clearance	\N
791	الخدمات العقارية	admin	2026-04-23 08:49:13	2026-04-23 08:49:13	28	0	Services Real	\N
792	المدد الايجارية	admin	2026-04-23 08:49:13	2026-04-23 08:49:13	28	0	Rent Period Real	\N
793	جدول الاستوديو	admin	2026-04-23 08:49:13	2026-04-23 08:49:13	28	0	Studio Sechdule	\N
794	جدول الشقق	admin	2026-04-23 08:49:13	2026-04-23 08:49:13	28	0	Apartment Sechdule	\N
795	جدول البيوت	admin	2026-04-23 08:49:14	2026-04-23 08:49:14	28	0	Houses Sechdule	\N
796	جدول الفيلل	admin	2026-04-23 08:49:14	2026-04-23 08:49:14	28	0	Villas Sechdule	\N
797	جدول الاستراحات	admin	2026-04-23 08:49:14	2026-04-23 08:49:14	28	0	Rest Stop Sechdule	\N
798	جدول المحلات	admin	2026-04-23 08:49:14	2026-04-23 08:49:14	28	0	Shop Sechdule	\N
799	جدول المكاتب	admin	2026-04-23 08:49:15	2026-04-23 08:49:15	28	0	Office Sechdule	\N
800	جدول المخازن العقارية	admin	2026-04-23 08:49:15	2026-04-23 08:49:15	28	0	Stores Sechdule	\N
801	جدول المصانع العقارية	admin	2026-04-23 08:49:15	2026-04-23 08:49:15	28	0	Factories Sechdule	\N
802	جدول الاراضي الزراعية	admin	2026-04-23 08:49:15	2026-04-23 08:49:15	28	0	Agricultural Lands Sechdule	\N
803	جدول عقد البيع	admin	2026-04-23 08:49:16	2026-04-23 08:49:16	28	0	Sales Contract Sechdule	\N
804	جدول عقد الايجار	admin	2026-04-23 08:49:16	2026-04-23 08:49:16	28	0	Rent Contract Sechdule	\N
805	جدول المخالصه	admin	2026-04-23 08:49:16	2026-04-23 08:49:16	28	0	Clearance Sechdule	\N
806	تقرير تكلفة السائق	admin	\N	\N	19	0	Driver Cost Report	\N
807	طلب تصنيع	admin	2026-05-22 12:48:32	2026-05-22 12:48:32	14	0	Manufacturing Request	\N
808	جدول طلبات التصنيع	admin	2026-05-22 12:48:32	2026-05-22 12:48:32	14	0	Manufacturing Request Sechdule	\N
809	حذف طلب تصنيع	admin	2026-05-22 12:48:32	2026-05-22 12:48:32	14	0	Delete Manufacturing Request	\N
810	تعديل طلب تصنيع	admin	2026-05-22 12:48:32	2026-05-22 12:48:32	14	0	Edit Manufacturing Request	\N
811	تأكيد طلب تصنيع	admin	2026-05-22 12:48:32	2026-05-22 12:48:32	14	0	Sure Manufacturing Request	\N
812	تحويل الي آمر تصنيع	admin	2026-05-22 12:48:33	2026-05-22 12:48:33	14	0	Transfer Manufacturing Order	\N
813	انهاء آمر تصنيع	admin	2026-05-22 12:48:33	2026-05-22 12:48:33	14	0	End Manufacturing Order	\N
814	آمر تصنيع	admin	2026-05-22 12:48:33	2026-05-22 12:48:33	14	0	Manufacturing Order	\N
815	جدول اوامر التصنيع	admin	2026-05-22 12:48:33	2026-05-22 12:48:33	14	0	Manufacturing Order Sechdule	\N
816	حذف آمر تصنيع	admin	2026-05-22 12:48:33	2026-05-22 12:48:33	14	0	Delete Manufacturing Order	\N
817	تعديل آمر تصنيع	admin	2026-05-22 12:48:34	2026-05-22 12:48:34	14	0	Edit Manufacturing Order	\N
818	اذن صرف بضاعه تصنيع	admin	2026-05-22 12:48:34	2026-05-22 12:48:34	14	0	Exchange Manufacturing Goods	\N
819	جدول اذن صرف بضاعه تصنيع	admin	2026-05-22 12:48:34	2026-05-22 12:48:34	14	0	Exchange Manufacturing Goods Sechdule	\N
820	تأكيد اذن صرف بضاعه تصنيع	admin	2026-05-22 12:48:34	2026-05-22 12:48:34	14	0	Sure Exchange Manufacturing Goods	\N
821	تنفيذ التصنيع	admin	2026-05-22 12:48:34	2026-05-22 12:48:34	14	0	Manufacturing Execution	\N
822	جدول تنفيذ التصنيع	admin	2026-05-22 12:48:34	2026-05-22 12:48:34	14	0	Manufacturing Execution Sechdule	\N
823	حذف تنفيذ التصنيع	admin	2026-05-22 12:48:35	2026-05-22 12:48:35	14	0	Delete Manufacturing Execution	\N
824	انواع الفحوصات	admin	2026-05-22 12:48:35	2026-05-22 12:48:35	14	0	Examinations Types	\N
825	اضافه فحص	admin	2026-05-22 12:48:35	2026-05-22 12:48:35	14	0	Add Examinations Types	\N
826	حذف فحص	admin	2026-05-22 12:48:35	2026-05-22 12:48:35	14	0	Delete Examinations Types	\N
827	تعديل فحص	admin	2026-05-22 12:48:35	2026-05-22 12:48:35	14	0	Edit Examinations Types	\N
828	جدول الجوده	admin	2026-05-22 12:48:36	2026-05-22 12:48:36	14	0	Quality Sechdule	\N
829	الجوده	admin	2026-05-22 12:48:36	2026-05-22 12:48:36	14	0	Quality	\N
830	حذف الجوده	admin	2026-05-22 12:48:36	2026-05-22 12:48:36	14	0	Delete Quality	\N
831	اتمام الجوده	admin	2026-05-22 12:48:36	2026-05-22 12:48:36	14	0	Quality Done	\N
\.


--
-- Data for Name: places; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.places (id, "Arabic_Name", "English_Name", "Ship_Price", "City", "Delivery", created_at, updated_at, "SearchCode") FROM stdin;
5	العليا	Oliya	1	9	41	2024-02-09 00:57:13	2024-02-09 00:57:13	\N
6	اول مكرم	Makrm Obied	1	1	41	2024-02-09 00:58:59	2024-02-09 00:58:59	\N
\.


--
-- Data for Name: places_reals; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.places_reals (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: platforms; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.platforms (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
8	فيس بوك	Facebook	2022-04-13 02:50:18	2024-02-09 00:51:17
\.


--
-- Data for Name: polices; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.polices (id, "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
2	<h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Returns Policy</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eros justo, accumsan non dui sit amet. Phasellus semper volutpat mi sed imperdiet. Ut odio lectus, vulputate non ex non, mattis sollicitudin purus. Mauris consequat justo a enim interdum, in consequat dolor accumsan. Nulla iaculis diam purus, ut vehicula leo efficitur at.</p><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Interdum et malesuada fames ac ante ipsum primis in faucibus. In blandit nunc enim, sit amet pharetra erat aliquet ac.</p><h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Shipping</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Pellentesque ultrices ut sem sit amet lacinia. Sed nisi dui, ultrices ut turpis pulvinar. Sed fringilla ex eget lorem consectetur, consectetur blandit lacus varius. Duis vel scelerisque elit, et vestibulum metus. Integer sit amet tincidunt tortor. Ut lacinia ullamcorper massa, a fermentum arcu vehicula ut. Ut efficitur faucibus dui Nullam tristique dolor eget turpis consequat varius. Quisque a interdum augue. Nam ut nibh mauris.</p>	<h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Returns Policy</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eros justo, accumsan non dui sit amet. Phasellus semper volutpat mi sed imperdiet. Ut odio lectus, vulputate non ex non, mattis sollicitudin purus. Mauris consequat justo a enim interdum, in consequat dolor accumsan. Nulla iaculis diam purus, ut vehicula leo efficitur at.</p><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Interdum et malesuada fames ac ante ipsum primis in faucibus. In blandit nunc enim, sit amet pharetra erat aliquet ac.</p><h4 style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 1.2; font-size: 13px; overflow-wrap: break-word; letter-spacing: normal; text-align: left; text-size-adjust: auto;">Shipping</h4><p style="font-family: &quot;IBM Plex Sans Arabic&quot;, sans-serif; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(85, 85, 85); letter-spacing: normal; text-align: left; text-size-adjust: auto;">Pellentesque ultrices ut sem sit amet lacinia. Sed nisi dui, ultrices ut turpis pulvinar. Sed fringilla ex eget lorem consectetur, consectetur blandit lacus varius. Duis vel scelerisque elit, et vestibulum metus. Integer sit amet tincidunt tortor. Ut lacinia ullamcorper massa, a fermentum arcu vehicula ut. Ut efficitur faucibus dui Nullam tristique dolor eget turpis consequat varius. Quisque a interdum augue. Nam ut nibh mauris.</p>	\N	2022-06-06 22:23:41
\.


--
-- Data for Name: pro_details_imgs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.pro_details_imgs (id, "Image", "Arabic_Title", "Arabic_Desc", "English_Title", "English_Desc", created_at, updated_at) FROM stdin;
1	WebsliderImages/v0CfLNCcIGAOnQeBUxOm.png	Safe Payment	Pay with the world's most payment methods.	Safe Payment	Pay with the world's most payment methods.	\N	2022-06-04 19:45:52
2	WebsliderImages/Sl0geXTxU3RwT7CXWSx1.png	Confidence	Protection covers your purchase and personal data.	Confidence	Protection covers your purchase and personal data.	\N	2022-06-04 19:46:40
3	WebsliderImages/h2xcgSYBdXMeAaCf83Ob.png	Worldwide Delivery	FREE & fast shipping to over 200+ countries & regions.	Worldwide Delivery	FREE & fast shipping to over 200+ countries & regions.	\N	2022-06-04 19:47:09
4	WebsliderImages/DgVQ96oWJbl2ZfP3DGiM.png	Hotline	Talk to help line for your question on 4141 456 789, 4125 666 888	Hotline	Talk to help line for your question on 4141 456 789, 4125 666 888	\N	2022-06-04 19:47:44
\.


--
-- Data for Name: pro_notes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.pro_notes (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: product_colors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_colors (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: product_details_e_com_designs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_details_e_com_designs (id, "Title_Color", "Txt_Color", "Price_Color", "Rate_Color", "Select_BG_Color", "Select_Txt_Color", "Qty_BG_Color", "Qty_Txt_Color", "Qty_Input_BG_Color", "Qty_Input_Txt_Color", "Comment_Input_BG_Color", "Comment_Button_BG_Color", "Comment_Button_Txt_Color", "Comment_Button_BG_Hover_Color", "Comment_Button_Txt_Hover_Color", "Related_Title_BG_Color", "Related_Title_Txt_Color", "Related_Product_BG_Color", "Related_Product_Group_BG_Color", "Related_Product_Group_Txt_Color", "Related_Product_Group_Hover_BG_Color", "Related_Product_Group_Hover_Txt_Color", "Related_Product_Icon_BG_Color", "Related_Product_Icon_Txt_Color", "Related_Product_Icon_Hover_BG_Color", "Related_Product_Icon_Hover_Txt_Color", "Related_Product_Txt_Color", "Related_Product_Price_Color", "Related_Product_Hover_Price_Color", "Related_Product_Rate_Color", created_at, updated_at) FROM stdin;
1	#000000	#000000	#000000	#113366	#ffffff	#000000	#a1a1a1	#ffffff	#ffffff	#000000	#ffffff	#113366	#ffffff	#ffffff	#113366	#ffffff	#000000	#ffffff	#113366	#ffffff	#c20000	#ffffff	#ffffff	#113366	#113366	#ffffff	#000000	#000000	#a80000	#ffb607	2023-09-01 18:44:56	2023-09-02 17:26:42
\.


--
-- Data for Name: product_executing_receiving_secretariats; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_executing_receiving_secretariats (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "Dep", "Price", "Workmanship_Price", "Total", "StoreIn", "StoreOut", "Product", "Unit", "Executing", type, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: product_inventories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_inventories (id, "Av_Qty", "Inventory", "Deficit", "Excess", "Inv_ID", "Product", "V1", "V2", "Unit", created_at, updated_at, "P_Code", "Price", "TotalExcessP", "TotalDificitP", "Exp_Date") FROM stdin;
\.


--
-- Data for Name: product_job_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_job_orders (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "Price", "Discount", "TDiscount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Store", "Length", "Width", "Height", "Thickness", "Size", "Product", "Unit", "Order", created_at, updated_at, "Executor") FROM stdin;
\.


--
-- Data for Name: product_maintainc_bills; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_maintainc_bills (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "AvQty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", created_at, updated_at, "Maintaince", "TDiscount", "Branch", "Group", "Brand", "Date") FROM stdin;
\.


--
-- Data for Name: product_manufacturing_executions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_manufacturing_executions (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "Precent", "RequiredQty", "Store", "Product", "Unit", "ManuExecution", created_at, updated_at, "Patch_Number") FROM stdin;
\.


--
-- Data for Name: product_moves; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_moves (id, "Date", "Type", "Bill_Num", "Incom", "Outcom", "Current", "P_Ar_Name", "P_En_Name", "P_Code", "Unit", "Group", "Store", "Product", "V1", "V2", "User", created_at, updated_at, "CostIn", "CostOut", "CostCurrent", "QTY", "Brand", "Branch", "SalePrice", "ProductPrice", "Delegate", "Payment_Method", "Safe", "TypeEn", "Delete", "Edit", "Edit_New_Code") FROM stdin;
\.


--
-- Data for Name: product_moves_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_moves_columns (id, "Date", "Product_Code", "Product_Name", "Unit", "Type", "Bill_Num", "Incom", "Outcom", "Credit", "Group", "Brand", "Store", "User", "Safe", "Branch", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-09 15:24:31
\.


--
-- Data for Name: product_moves_columns_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_moves_columns_sechdules (id, "Date", "Product_Code", "Product_Name", "Unit", "Type", "Bill_Num", "Incom", "Outcom", "Credit", "Group", "Brand", "Store", "User", "Safe", "Branch", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-09 15:30:19
\.


--
-- Data for Name: product_moves_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_moves_filter_twos (id, "Date", "Type", "Bill_Num", "Incom", "Outcom", "Current", "P_Ar_Name", "P_En_Name", "P_Code", "Unit", "Group", "Store", "Product", "V1", "V2", "User", "CostIn", "CostOut", "CostCurrent", "CostOneIn", "CostOneOut", "CostOneCurrent", "QTY", "Brand", "Safe", "Branch", "SalePrice", "ProductPrice", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: product_moves_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_moves_filters (id, "Date", "Type", "Bill_Num", "Incom", "Outcom", "Current", "P_Ar_Name", "P_En_Name", "P_Code", "Unit", "Group", "Store", "Product", "V1", "V2", "User", "CostIn", "CostOut", "CostCurrent", "CostOneIn", "CostOneOut", "CostOneCurrent", "QTY", "Brand", "Safe", "Branch", "SalePrice", "ProductPrice", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: product_quote_images; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_quote_images (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Product", "V1", "V2", "Unit", "QuoteImage", created_at, updated_at, "TDiscount", "Original_Qty", "AvQty", "Store", "Exp_Date", "Total_Wight", "UnitRate", weight, "SalesProDesc", "TotCostNew", "SmallQty", "SmallCode", "CostPrice", "Date", "Patch_Number", "Branch", "Group", "Brand", "Pro_Note", "SubVID", "Total_Net") FROM stdin;
\.


--
-- Data for Name: product_return_without_bills; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_return_without_bills (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "SmallCode", "Qty", "SmallQty", "Price", "Cost", "Discount", "TDiscount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Total_Cost", "Store", "Exp_Date", "V1", "V2", "Unit", "Date", "Code", "Refernce_Number", "Safe", "Vendor", "Delegate", "Coin", "User", "Cost_Center", "Type", "Payment_Method", created_at, updated_at, "Bill", "Product") FROM stdin;
\.


--
-- Data for Name: product_sales; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_sales (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "AvQty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Sales", created_at, updated_at, "Date", "Code", "Delegate", "Client", "Executor", "Refernce_Number", "Type", "Cost_Center", "User", "Coin", "Safe", "Ship", "Patch_Number", "Later_Collection", "SmallQty", "SmallCode", "TDiscount", "CostPrice", "Branch", "Group", "Brand", "Status", "CustomerGroup", "Payment_Method", "CoinCode", "CoinRate", "CoinPrice", "AmountEGP", "SalesTotal", "DiscountAmount", "NetTotal", "TaxType", "TaxAmount", "TaxSubType", "TaxRate", "TotalBill", "TypeEn", "Pro_Note", "SubVID", "Total_Wight", "UnitRate", weight, "SalesProDesc", "TotCostNew", "Total_Net", "Pro_Lenght", "Pro_Height", "Pro_Num", "Pro_Cost_Center") FROM stdin;
\.


--
-- Data for Name: product_sales_gifts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_sales_gifts (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "AvQty", "Qty", "Price", "CostPrice", "Total", "TotCost", "Store", "Exp_Date", "V1", "V2", "Unit", "Gift", created_at, updated_at, "Product") FROM stdin;
\.


--
-- Data for Name: product_sales_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_sales_orders (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "AvQty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "SalesOrder", created_at, updated_at, "Patch_Number", "TDiscount", "CostPrice", "Pro_Note", "SubVID", "Total_Wight", "UnitRate", weight, "SalesProDesc", "TotCostNew", "SmallQty", "SmallCode", "Date", "Branch", "Group", "Brand", "Total_Net", "Pro_Lenght", "Pro_Height", "Pro_Num", "Pro_Cost_Center") FROM stdin;
\.


--
-- Data for Name: product_sales_subscribes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_sales_subscribes (id, "P_Ar_Name", "P_En_Name", "Product_Code", "V_Name", "VV_Name", "Price", "Total", "Product", "V1", "V2", "Unit", "Subscribe", created_at, updated_at, "Sub_Date", "Sub_Type") FROM stdin;
\.


--
-- Data for Name: product_settlements; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_settlements (id, "Av_Qty", "Inventory", "Deficit", "Excess", "Set_ID", "Product", "V1", "V2", "Unit", created_at, updated_at, "P_Code", "Price", "TotalDificitP", "TotalExcessP", "Store", "User", "Coin", "Date", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Exp_Date") FROM stdin;
\.


--
-- Data for Name: product_sizes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_sizes (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: product_thicknesses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_thicknesses (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: product_type_defaults; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_type_defaults (id, "Type", created_at, updated_at) FROM stdin;
1	Completed	2026-01-14 12:23:27	2026-01-14 12:23:27
2	Service	2026-01-14 12:23:27	2026-01-14 12:23:27
\.


--
-- Data for Name: product_units; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.product_units (id, "Rate", "Barcode", "Price", "Price_Two", "Price_Three", "P_Ar_Name", "P_En_Name", "P_Type", "Unit", "Product", created_at, updated_at, "Def", "Brand", "Group") FROM stdin;
\.


--
-- Data for Name: products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products (id, "P_Type", "P_Ar_Name", "P_En_Name", "Brand", "Group", "Image", "Minimum", "Maximum", "Length", "Width", "Height", "Weight", "Saller_Point", "Customer_Point", "Tax", "Validity", "Days_Notify", "Ar_Desc", "En_Desc", "Ar_Spec", "En_Spec", "Store_Show", "Store_Type", "Status", created_at, updated_at, "Sub_Cost", subscribe_type, "Cas_No", "HSN", "Uni_Code", "Image2", "Offer", "OfferPrice", rate, "Code_Type", "World_Code", "Origin_Number", "Origin_Country", "SearchCode1", "SearchCode2", "Space", "Storage", "Processor", "Camera", "Screen", "OS", "Battery", "Warranty", "Color", "Category", "Model", "Guess_Price", "Arrange", "Added", "Offer_Start_Date", "Offer_End_Date", "English_Brief_Desc", "Arabic_Brief_Desc", "Show_Other_Store", "Calories", "Thickness", "Maximum_Sales_Qty", "Delete", "Cost_Price", "Faveorite", "Bonus", "ProductThickness", "ProductSizes", "ProductColors", "Colors_Code", "Purchases_Code") FROM stdin;
\.


--
-- Data for Name: products_client_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_client_requests (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Qty", "V1", "V2", "Unit", "Desc", "Product", "Request", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: products_consists; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_consists (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Qty", "Consist", "Price", "Total", "Product", "V1", "V2", "Unit", "Consist_ID", created_at, updated_at, "Exp_Date") FROM stdin;
\.


--
-- Data for Name: products_executing_receivings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_executing_receivings (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "Price", "Total", "Store", "Product", "Unit", "Executing", created_at, updated_at, type, "Dep") FROM stdin;
\.


--
-- Data for Name: products_manufacturing_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_manufacturing_orders (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Store_Qty", "Required_Qty", "Qty", "Store", "Product", "V1", "V2", "Unit", "ManuOrder", created_at, updated_at, "Precent") FROM stdin;
\.


--
-- Data for Name: products_manufacturing_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_manufacturing_requests (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Request", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: products_permission_to_exchange_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_permission_to_exchange_goods (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "AvQty", "Qty", "Date", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Exp_Date", "Store", "To_Store", "Product", "V1", "V2", "Unit", "Exchange", created_at, updated_at, "CostPrice", "TDiscount", "Patch_Number", "Pro_Note", "SubVID", "Total_Wight", "UnitRate", weight, "SalesProDesc", "TotCostNew", "SmallQty", "SmallCode", "Total_Net") FROM stdin;
\.


--
-- Data for Name: products_permission_to_recived_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_permission_to_recived_goods (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "AvQty", "Qty", "Date", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Recived", created_at, updated_at, "To_Store", "TDiscount", "SmallCode", "SmallQty", "Total_Net") FROM stdin;
\.


--
-- Data for Name: products_purchase_petrols; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_purchase_petrols (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Qty", "Price", "Total", "Store", "Product", "Unit", "Petrol", created_at, updated_at, "SmallCode", "SmallQty") FROM stdin;
\.


--
-- Data for Name: products_purchases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_purchases (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Purchase", created_at, updated_at, "Date", "Code", "Refernce_Number", "Safe", "Vendor", "Delegate", "Coin", "User", "Cost_Center", "Type", "Ship", "SmallQty", "SmallCode", "TDiscount", "Payment_Method", "TypeEn", "Total_Net", "ChassisNumber", "MotorNumber") FROM stdin;
\.


--
-- Data for Name: products_purchases_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_purchases_orders (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Store", "Product", "V1", "V2", "Unit", "P_Order", created_at, updated_at, "Total_Tax", "Exp_Date", "Date", "Vendor", "TDiscount", "SmallCode", "SmallQty", "Code", "Refernce_Number", "Safe", "Delegate", "Coin", "User", "Cost_Center", "Type", "Ship", "Payment_Method", "Total_Net", "ChassisNumber", "MotorNumber") FROM stdin;
\.


--
-- Data for Name: products_qties; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_qties (id, "P_Ar_Name", "P_En_Name", "P_Code", "V_Name", "VV_Name", "Qty", "Price", "Pro_Stores", "Store", "Unit", "Product", "V1", "V2", created_at, updated_at, "Low_Unit", "Original", "Patch_Number", "PP_Code", "PPP_Code", "PPPP_Code", "Exp_Date", "Price_Sale", "SearchCode1", "SearchCode2", "Group", "Brand", "Branch", "TotalCost", "Hold_Qty", "ChassisNumber", "MotorNumber") FROM stdin;
\.


--
-- Data for Name: products_quotes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_quotes (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "AvQty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Store", "Product", "V1", "V2", "Unit", "S_Quote", created_at, updated_at, "Total_Tax", "Exp_Date", "Patch_Number", "TDiscount", "Total_Wight", "UnitRate", weight, "SalesProDesc", "TotCostNew", "SmallQty", "SmallCode", "CostPrice", "Date", "Branch", "Group", "Brand", "Pro_Note", "SubVID", "Total_Net", "Pro_Lenght", "Pro_Height", "Pro_Num", "Pro_Cost_Center") FROM stdin;
\.


--
-- Data for Name: products_return_maintaince_bills; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_return_maintaince_bills (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "AvQty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Return", created_at, updated_at, "Recived_Qty", "Out", "Date", "User", "Eng", "Brand", "Group", "Branch", "Recipient") FROM stdin;
\.


--
-- Data for Name: products_secretariat_export_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_secretariat_export_goods (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Qty", "Date", "Product", "V1", "V2", "Export", "Store", "Unit", created_at, updated_at, "Note", "RecivedQty", "Impotence", "Price", "Total") FROM stdin;
\.


--
-- Data for Name: products_secretariat_import_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_secretariat_import_goods (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Qty", "Date", "Product", "V1", "V2", "Import", "Unit", "Store", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: products_shortcomings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_shortcomings (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Av_Qty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Store", "Product", "V1", "V2", "Unit", "Shortmings", created_at, updated_at, "Total_Tax", "Exp_Date", "TDiscount", "Original_Qty", "SmallCode", "SmallQty", "Date", "Code", "Refernce_Number", "Safe", "Vendor", "Delegate", "Coin", "User", "Cost_Center", "Type", "Ship", "Payment_Method", "Total_Net") FROM stdin;
\.


--
-- Data for Name: products_start_periods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_start_periods (id, "P_Code", "Qty", "Price", "Total", "Old_Qty", "Exp_Date", "SP_ID", "Unit", "Product", "V1", "V2", created_at, updated_at, "Date", "User", "Store", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Patch_Number", "SmallQty", "SmallCode") FROM stdin;
\.


--
-- Data for Name: products_stores; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_stores (id, "P_Ar_Name", "P_En_Name", "P_Code", "V_Name", "VV_Name", "Exp_Date", "Product", "Store", "V1", "V2", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: products_stores_transfers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_stores_transfers (id, "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "P_Code", "Price", "Av_Qty", "Trans_Qty", "Total", "ST_ID", "Product", "V1", "V2", "Unit", created_at, updated_at, "To_Store", "OldPrice", "SmallTrans_Qty", "SmallCode", "Original_Trans_Qty", "CostPrice", "Exp_Date") FROM stdin;
\.


--
-- Data for Name: products_viras; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.products_viras (id, "Cost", "Product", "V1", "V2", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: profit_sales_product_column_sechdulrs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.profit_sales_product_column_sechdulrs (id, "Product_Code", "Product_Name", "Unit", "Qty", "Price", "Cost", "Profit", "Store", "Branch", "Group", "Brand", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-14 19:23:26
\.


--
-- Data for Name: profit_sales_product_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.profit_sales_product_columns (id, "Product_Code", "Product_Name", "Unit", "Qty", "Price", "Cost", "Profit", "Store", "Branch", "Group", "Brand", created_at, updated_at) FROM stdin;
1	\N	\N	\N	\N	\N	\N	\N	1	1	\N	\N	\N	2022-10-16 21:29:33
\.


--
-- Data for Name: project_statuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.project_statuses (id, "Arabic_Name", "English_Name", "Color", created_at, updated_at) FROM stdin;
1	Defaukt	Defaukt	#000000	2025-12-20 18:37:20	2025-12-20 18:37:20
\.


--
-- Data for Name: project_teams; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.project_teams (id, "Member", "Project", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.projects (id, "Name", "Start_Date", "End_Date", "Duration", "Value", "File", "Client", "Manager", "User", created_at, updated_at, "Status", "NameEn") FROM stdin;
\.


--
-- Data for Name: purch_bills_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purch_bills_columns (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Vendor", "Product_Code", "Product_Name", "Unit", "Qty", "Price", "Discount", "Total_BF_Tax", "Tax", "Total", "Group", "Brand", "Exp_Date", "Product_Store", created_at, updated_at, "Rate", "Name_Width") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-05 13:12:25	\N	\N
\.


--
-- Data for Name: purch_bills_columns_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purch_bills_columns_sechdules (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Vendor", "Product_Code", "Product_Name", "Unit", "Qty", "Price", "Discount", "Total_BF_Tax", "Tax", "Total", "Group", "Brand", "Exp_Date", "Product_Store", created_at, updated_at, "Rate", "Name_Width") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-05 12:55:34	\N	\N
\.


--
-- Data for Name: purch_bills_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purch_bills_filter_twos (id, "Code", "Date", "Payment_Method", "Status", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "User", "Ship", "Later_Due", "Time", "Branch", "CustomerGroup", "Type", "ID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: purch_bills_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purch_bills_filters (id, "Code", "Date", "Payment_Method", "Status", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "User", "Ship", "Later_Due", "Time", "Branch", "CustomerGroup", "Type", "ID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: purchase_petrols; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purchase_petrols (id, "Code", "Date", "Later_Due", "Vendor_Bill_Date", "Refernce_Number", "Draw", "Payment_Method", "Note", "File", "Car_Number", "Delivery_Method", "Product_Numbers", "Total_Qty", "Total_Price", "Pay", "Full", "Vendor", "Coin", "Safe", "CompanyCar", "Store", "Recipient", "User", arr, created_at, updated_at, "Number") FROM stdin;
\.


--
-- Data for Name: purchases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purchases (id, "Code", "Date", "Draw", "Payment_Method", "Status", "Vendor_Bill_Date", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "P_Order_Num", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "Ship", "Check_Type", "Check_Number", "Due_Date", "ShipStatus", "Later_Due", "Sent", "TaxBill", "TaxCode", "Time", "Branch", "CustomerGroup", "File", "Current_Credit", "Residual", "Total_Net", "Edit", "Delete", "Edit_New_Code", "DiscountBill", "ImportTotalCost", "Documentary_ID") FROM stdin;
\.


--
-- Data for Name: purchases_default_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purchases_default_data (id, "Payment_Method", "Status", "V_and_C", "Safe", "Vendor", "Delegate", "Store", "Coin", created_at, updated_at, "Brand", "Group", "English_Name", "Expire", "Empp", "Quality_Qty", "Discount", "Hide_Product", "Hide_Edit_Delete", "Duplicate_Items", "Import_Invoice", "Import_Account") FROM stdin;
3	Cash	1	0	30	2523	39	21	1	2022-04-13 02:48:12	2025-12-20 18:36:09	\N	\N	\N	\N	0	0	0	0	0	0	0	45
\.


--
-- Data for Name: purchases_expenses_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purchases_expenses_types (id, "Type", "Cost", "Purchases", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: purchases_order_expenses_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purchases_order_expenses_types (id, "Type", "Cost", "PurchasesOrder", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: purchases_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purchases_orders (id, "Code", "Date", "Draw", "Payment_Method", "Status", "Vendor_Bill_Date", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "P_Order_Num", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "ToPurch", "Quality", "Quality_Note", "Quantity", "Quantity_Note", "Purchases_Date", "ShipStatus", "Ship", "Check_Type", "Due_Date", "Check_Number", "Later_Due", "Sent", "TaxBill", "TaxCode", "Time", "Branch", "CustomerGroup", "File", "Current_Credit", "Residual", "Total_Net", "Edit", "Delete", "Edit_New_Code", "DiscountBill", "ImportTotalCost") FROM stdin;
\.


--
-- Data for Name: purpose_travel; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.purpose_travel (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: q_r_s; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.q_r_s (id, "QR", created_at, updated_at) FROM stdin;
1	https://reno.klarerp.com/public/QR	\N	2022-05-21 01:01:57
\.


--
-- Data for Name: qualities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.qualities (id, "Code", "Execution_Code", "Date", "Outcome_Name", "Outcome_Code", "Outcome_Qty", "Except_Qty", "Outcome_Unit", "Outcome_Store", "Production_Manager", "Quality_Manager", "ManuExecution", "Note", "Status", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: quality_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.quality_details (id, "Exmine_Type", "Exmine_Unit", "Exmine_Allow_From", "Exmine_Allow_To", "Result", "Accept", "Exmine", "Quality", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: quote_images; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.quote_images (id, "Code", "Date", "Payment_Method", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Client", "User", arr, created_at, updated_at, "Pay", "Safe", "Executor", "Delegate", "Store", "Coin", "Cost_Center", presenter, annual_interest, monthly_installment, "Years_Number", total, "installment_Num", "Date_First_installment", "Later_Due", "Sale_Date", "Total_Wight_Bill", "ToSales", "Shipping", "Delivery_Status", "Order_Type", "ProfitPrecent", "InstallCompany", "ContractNumber", "PayFees", "ServiceFee", "CompanyPrecent", "Time", "TaxBill", "TaxCode", "TaxOnTotal", "TaxOnTotalType", "Check_Type", "Due_Date", "Check_Number", "Shift_Code", "Client_Address", "Delivery", "ProfitTax", "Branch", "CustomerGroup", "Total_Cost", "File", "Edit", "Delete", "Edit_New_Code", "Total_Net", "Residual", "Current_Credit", "DiscountTax", "Draw", "Status", "Refernce_Number", "Ship", "DiscountBill", "Client_Accept", "Done", "EMP_Quote") FROM stdin;
\.


--
-- Data for Name: quotes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.quotes (id, "Code", "Date", "Draw", "Payment_Method", "Status", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Safe", "Client", "Delegate", "Executor", "Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, presenter, annual_interest, monthly_installment, "Years_Number", total, "installment_Num", "Date_First_installment", "Later_Due", "Sale_Date", "Total_Wight_Bill", "ToSales", "Shipping", "Delivery_Status", "Order_Type", "ProfitPrecent", "InstallCompany", "ContractNumber", "PayFees", "ServiceFee", "CompanyPrecent", "Time", "TaxBill", "TaxCode", "TaxOnTotal", "TaxOnTotalType", "Check_Type", "Due_Date", "Check_Number", "Shift_Code", "Client_Address", "Delivery", "ProfitTax", "Branch", "CustomerGroup", "Total_Cost", "File", "Edit", "Delete", "Edit_New_Code", "Total_Net", "Residual", "Current_Credit", "DiscountTax", "Ship", "DiscountBill", "Shipping_Price", "Email", "Phone", "Expire_Date", "Care", "Location", "Desc") FROM stdin;
\.


--
-- Data for Name: rabih_education; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.rabih_education (id, "Arabic_Name", "English_Name", "Video", "Package", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: rates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.rates (id, "Rate", "Product", "User", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: real_sate_projects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.real_sate_projects (id, "Code", "Name", "Start_Date", "End_Date", "Period", "Value", "Expect_Cost", "Expect_Profit", "Project_File", "Contract_File", "Contract_Type", "Completed", "Account", "Goods_Account", "Client", "Client_Account", "Manager", "Reponsible", "Store", "Contract_Status", "Project_Status", "Cost_Center", "Governrate", "City", "Place", "Location", "Address_Details", "Coin", "Draw", created_at, updated_at, "Contractor_Account", "Category") FROM stdin;
\.


--
-- Data for Name: real_sate_projects_payments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.real_sate_projects_payments (id, "Date", "Value", "Status", "Project", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: real_state_default_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.real_state_default_data (id, "Draw", "Coin", "Safe", "Contract_Type", "Manager", "Reponsible", "Store", "Contract_Status", "Project_Status", created_at, updated_at) FROM stdin;
1	1	1	30	Client	38	38	21	1	1	2025-12-20 18:36:23	2026-01-16 14:59:22
\.


--
-- Data for Name: real_units; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.real_units (id, "Code", "Date", "System", "Arabic_Name", "English_Name", "Area", "Category", "Sort", "Owner", "OwnerType", "OwnerPrecent", "PlaceReal", "Gov", "City", "Place", "Address", "Level", "Elevator", "Parking", "Arabic_Desc", "English_Desc", "Video_Link", "Image", "License", "Map", "Website", "Price_Sale", "Daily_Rent_Price", "Weekly_Rent_Price", "Monthly_Rent_Price", "Quarter_Year_Rent_Price", "Half_Year_Rent_Price", "Year_Rent_Price", "Rooms_Num", "Kitchens_Num", "Bathrooms_Num", "Levels_Num", "Apartments_Num", "Buliding_Age", "Activity", "Activity_Type", "Cultivated_Area", "Crop_Type", "Residential_House", "Inverter_Room", "Solar_Energy", "Diesel_Machine", "Government_Electricity", "Irrigation_Type", "Water_Quality", "Account", "StartRentDate", "EndRentDate", "Status", created_at, updated_at, "RentAccount") FROM stdin;
\.


--
-- Data for Name: real_units_services; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.real_units_services (id, "Unit", "Service", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: reasons; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reasons (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
2	سبب افتراضي	Default Reason	2024-02-09 01:04:29	2024-02-09 01:04:29
\.


--
-- Data for Name: recipt_maintaince_errors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recipt_maintaince_errors (id, "Recipt", created_at, updated_at, "Error", "Recived", "Eng") FROM stdin;
\.


--
-- Data for Name: recipt_maintainces; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recipt_maintainces (id, "Code", "Date", "Note", "Serial_Num", "Total", "Draw", "Company", "Device_Type", "Device_Case", "Coin", "Cost_Center", "Account", "User", arr, created_at, updated_at, "Status", "Pattern_Image", "Time", "Password", "Pay", "Eng_Note", "Reason", "Report_Client", "Work", "Store", "Eng", "Recipient", "Branch", "Payment_Method", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_Bf_Taxes", "Total_Taxes", "RefuseReason", "NoteRecived", "Returned", "CustomerGroup", "Total_Cost") FROM stdin;
\.


--
-- Data for Name: recipt_voucher_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recipt_voucher_details (id, "Creditor", "Statement", "Account", "RV_ID", created_at, updated_at, "Bill_Num") FROM stdin;
\.


--
-- Data for Name: recipt_vouchers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recipt_vouchers (id, "Code", "Date", "Draw", "Total_Creditor", "Note", "Coin", "Cost_Center", "Safe", arr, created_at, updated_at, "Store", "Shift", "User", "Status", "File", "Collector", "Edit", "Delete", "Edit_New_Code", "Sales_Bill", "Show_Num") FROM stdin;
\.


--
-- Data for Name: recipts_sales_petrols; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recipts_sales_petrols (id, "Recipt_Amount", "Recipt", "SalesPetrol", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: recipts_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recipts_types (id, "Name", "Account", created_at, updated_at, "NameEn") FROM stdin;
\.


--
-- Data for Name: recived_purch_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recived_purch_products (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "Recived_Qty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Recived", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: recived_purchts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recived_purchts (id, "Code", "Date", "Total_Trans_Qty", "Total_Trans_Value", "Purchase", created_at, updated_at, "Total_BF_Taxes", "Total_Taxes", "User", arr) FROM stdin;
\.


--
-- Data for Name: recived_sales; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recived_sales (id, "Code", "Date", "Total_Trans_Qty", "Total_Trans_Value", "Total_BF_Taxes", "Total_Taxes", "Sales", arr, created_at, updated_at, "User") FROM stdin;
\.


--
-- Data for Name: recived_sales_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recived_sales_products (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "Recived_Qty", "AvQty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Recived", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: recived_shipment_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recived_shipment_goods (id, "Shipment_ID", "Code", "Barcode", "Total_Weight", "Total_Pieces", "Total_Cost", "Client", "RecivedShipment", "Status", "Unloading_Goods_ID", created_at, updated_at, "PayShip") FROM stdin;
\.


--
-- Data for Name: recived_shipments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.recived_shipments (id, "Code", "Date", "Time", "Safe", "Coin", "Draw", "Store", "Delegate", "Driver", "Total_Pieces", "Total_Weight", "Total_Cost", "Count_Shipmets", "Status", "User", created_at, updated_at, "Type", "Residual") FROM stdin;
\.


--
-- Data for Name: reg_courses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reg_courses (id, "Code", "Date", "Hall", "Reserve_Course", "Teacher", "Teacher_Attend", created_at, updated_at, "Teacher_Attend_From", "Teacher_Attend_To", "Teacher_Time") FROM stdin;
1	1	2024-01-22	1	1	3	1	2024-01-22 12:52:56	2024-01-22 12:52:56	\N	\N	\N
3	2	2024-01-22	1	1	3	1	2024-01-22 12:55:03	2024-01-22 13:19:23	\N	\N	\N
\.


--
-- Data for Name: reg_courses_students; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reg_courses_students (id, "Student", "Attend", "Date", "Reg", created_at, updated_at) FROM stdin;
1	1	1	2024-01-22	1	2024-01-22 12:52:56	2024-01-22 12:52:56
3	1	1	2024-01-22	3	2024-01-22 13:19:23	2024-01-22 13:19:23
\.


--
-- Data for Name: reg_over_times; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reg_over_times (id, "Code", "Date", "Month", "Amount", "Hours_Number", "Hour_Rate", "Total_Hours", "Hour_Cost", "Note", "Emp", "Type", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: remove_products_halls; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.remove_products_halls (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "AvQty", "Qty", "Price", "CostPrice", "Discount", "Tax", "Total_Bf_Tax", "Total_Tax", "Total", "Store", "Product", "Exp_Date", "V1", "V2", "Unit", "SalesOrder", "Pro_Note", "KitchenEnd", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: rent_contracts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.rent_contracts (id, "Code", "Date", "System", "Unit", "Client", "Delegate", "Contract_Num", "Value", "Deposit", "Residual", "Start_Date", "End_Date", "Insurance", "RentPeriod", created_at, updated_at, "Safe", "Coin", "Draw", "Recipt") FROM stdin;
\.


--
-- Data for Name: rent_period_reals; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.rent_period_reals (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: reports_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reports_settings (id, "Product_Info", "Product_Order_Limit", "ReportStartPeriodProducts", "SettlementsReports", "StoresCost", "StoresInventory", "Collection_Delegates", "Sales_Delegates", "StagnantItems", "ItemsMoves", "StoresBalancesTwo", "NetPurchases", "NetSales", "ClientSales", "ExecutorSales", "InstallmentReport", "ExpiredProucts", "StoresSalesDetails", "TotalNetPurchases", "TotalNetSales", "Profits", "Shifts", "Shifts_Details", "DailyClosing", "Products", "DailyShifts", "ExpensesReport", "DailyProducts", "EmployeeCommissionDiscounts", "VendorPricesReport", "DailyMoves", "GroupsSales", "VendorPurchases", "ExceptProfits", "DelegateSalesDetails", "CreditStores", "ProductProfits", "ExceptProductProfits", "SalesBills", "PurchasesBills", "StoresMovesReport", "StoresTransferReport", "SafesTransferReport", "CompareSalesPrice", "ProductMoveDetails", "MostSalesProducts", "ProfitSalesProduct", "ClientAccountStatement", "ClientsStatement", "VendorAccountStatement", "VendorsStatement", "EmpGoals", "InventorySerial", "TotalExpensesSafes", "SubIncomList", "ExpensesList", "StoresBalances", "StoresBalancesCat", "ItemCost", "StoresInventoryy", "DelegateSalesDetailss", "ProfitDelegateSalesDetails", "InstallmentCompaniesSales", "StoresCosts", "DailyClosingDetails", "SalesProsMoreDetails", "StagnantItemss", "SalesCustomersGroups", "BrandsSales", "Customer_Debts", "Vendor_Debts", "MaintanceSalesReport", "Maintenance_Tune", created_at, updated_at, "ProfitGroupsReport", "IncomListReport", "AssemblyProQties") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	2023-07-05 08:52:38	2024-12-04 21:09:04	1	1	1
\.


--
-- Data for Name: reservations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reservations (id, "Code", "Date", "From", "To", "Amount", "Checkout", "Expire", "Draw", "Client", "Safe", "Coin", "Room", arr, created_at, updated_at, "User", "Note") FROM stdin;
\.


--
-- Data for Name: reserve_course_days; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reserve_course_days (id, "Day", "Reserve", created_at, updated_at, "From_Time", "To_Time") FROM stdin;
4	Sat	1	2024-01-22 07:01:03	2024-01-22 07:01:03	\N	\N
5	Mon	1	2024-01-22 07:01:03	2024-01-22 07:01:03	\N	\N
6	Wed	1	2024-01-22 07:01:03	2024-01-22 07:01:03	\N	\N
\.


--
-- Data for Name: reserve_course_students; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reserve_course_students (id, "Student", "Pay", "Cost", "Residual", "Constraint", "Reserve", created_at, updated_at, "Dollar_Value") FROM stdin;
3	1	500	2000	1500	0	1	2024-01-22 09:56:37	2024-01-22 09:56:37	\N
\.


--
-- Data for Name: reserve_courses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reserve_courses (id, "Code", "Course", "Start_Date", "End_Date", "Course_Type", "Teacher", "Required_Number", "Certificate", "Cost", "Total_Required", "Status", "Days", "Time", "Total_Paid", "Total_Num", "Total_Cost", "Safe", "Draw", "Coin", created_at, updated_at, "Hall") FROM stdin;
1	1	1	2024-01-25	2024-03-25	3	3	12	0	2000	24000	1	\N	19:30	500	1	2000	30	1	1	2024-01-22 06:37:29	2024-01-22 12:08:01	\N
\.


--
-- Data for Name: resignation_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resignation_requests (id, "Code", "Date", "Resignation_Date", "File", "Emp", "Note", "Status", "Reason", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: resturant_abouts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_abouts (id, "Image_1", "Image_2", "Title_Image", "Arabic_Title", "English_Title", "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	AboutImages/LJZJvJ5oyA4vcvtIymYO.png	AboutImages/8PF1oQmMg9NlB5xrb0SO.png	AboutImages/xdAxZVzIMjFSUS7j4WOB.png	Luxurious restaurant with A rare taste you can’t find anywhere.	Luxurious restaurant with A rare taste you can’t find anywhere.	<p data-aos="fade-up" data-aos-duration="1500" class="aos-init aos-animate" style="font-family: Roboto, sans-serif; color: var(--black); transform: translateZ(0px); opacity: 1; transition-property: opacity, transform; transition-duration: 1.5s; transition-timing-function: ease; font-size: 16px; letter-spacing: normal;">Lorem Ipsum is simply dummy text of the printing and typeset ting industry lorem Ipsum has been the industrys standard my text ever since the when an unknown printer took a galley of type and scrambled it to make a type book It has survived.</p>	<p data-aos="fade-up" data-aos-duration="1500" class="aos-init aos-animate" style="font-family: Roboto, sans-serif; color: var(--black); transform: translateZ(0px); opacity: 1; transition-property: opacity, transform; transition-duration: 1.5s; transition-timing-function: ease; font-size: 16px; letter-spacing: normal;">Lorem Ipsum is simply dummy text of the printing and typeset ting industry lorem Ipsum has been the industrys standard my text ever since the when an unknown printer took a galley of type and scrambled it to make a type book It has survived.</p>	\N	2023-09-16 10:10:46
\.


--
-- Data for Name: resturant_blogs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_blogs (id, "Image", "Sub_Image", "Date", "Arabic_Title", "English_Title", "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	WebsliderImages/pD4XfYfcaxWyUq5oH04m.png	ArticlesImages/aBiYDqy3Dk0rJhw1oHaN.png	2023-05-27	A rare taste you can’t find anywhere in Newyork	A rare taste you can’t find anywhere in Newyork	<h4 class="modal-title" style="color: rgb(102, 102, 102); letter-spacing: 0.1px;"><div class="info aos-init aos-animate" data-aos="fade-up" data-aos-duration="1500" style="font-family: Roboto, sans-serif; transform: translateZ(0px); opacity: 1; transition-property: opacity, transform; transition-duration: 1.5s; transition-timing-function: ease; padding: 0px 80px; font-size: 16px; letter-spacing: normal; text-align: left;"><p>Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting. Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting.</p><div><br></div></div></h4>	<h4 class="modal-title" style="color: rgb(102, 102, 102); letter-spacing: 0.1px;"><div class="info aos-init aos-animate" data-aos="fade-up" data-aos-duration="1500" style="font-family: Roboto, sans-serif; transform: translateZ(0px); opacity: 1; transition-property: opacity, transform; transition-duration: 1.5s; transition-timing-function: ease; padding: 0px 80px; font-size: 16px; letter-spacing: normal; text-align: left;"><p>Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting. Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting.</p><div><br></div></div></h4>	2023-09-15 08:24:31	2023-09-15 08:25:35
2	ArticlesImages/VQFjzG9ebpNVbwBE9NFD.png	ArticlesImages/ekUyKLRT2Z2L78dagahe.png	2023-08-26	A rare taste you can’t find anywhere in Newyork	A rare taste you can’t find anywhere in Newyork	<h4 class="modal-title" style="color: rgb(102, 102, 102); letter-spacing: 0.1px;"><div class="info aos-init aos-animate" data-aos="fade-up" data-aos-duration="1500" style="font-family: Roboto, sans-serif; transform: translateZ(0px); opacity: 1; transition-property: opacity, transform; transition-duration: 1.5s; transition-timing-function: ease; padding: 0px 80px; font-size: 16px; letter-spacing: normal; text-align: left;"><p>Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting. Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting.</p><div><br></div></div></h4>	<h4 class="modal-title" style="color: rgb(102, 102, 102); letter-spacing: 0.1px;"><div class="info aos-init aos-animate" data-aos="fade-up" data-aos-duration="1500" style="font-family: Roboto, sans-serif; transform: translateZ(0px); opacity: 1; transition-property: opacity, transform; transition-duration: 1.5s; transition-timing-function: ease; padding: 0px 80px; font-size: 16px; letter-spacing: normal; text-align: left;"><p>Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting. Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting.</p><div><br></div></div></h4>	2023-09-15 08:26:08	2023-09-15 08:26:08
3	ArticlesImages/vYo1uPMqfIQtlaE5bBKb.png	ArticlesImages/uUD5wTDYl7G6to5Cg8tU.png	2023-05-27	A rare taste you can’t find anywhere in Newyork	A rare taste you can’t find anywhere in Newyork	<h4 class="modal-title" style="color: rgb(102, 102, 102); letter-spacing: 0.1px;"><div class="info aos-init aos-animate" data-aos="fade-up" data-aos-duration="1500" style="font-family: Roboto, sans-serif; transform: translateZ(0px); opacity: 1; transition-property: opacity, transform; transition-duration: 1.5s; transition-timing-function: ease; padding: 0px 80px; font-size: 16px; letter-spacing: normal; text-align: left;"><p>Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting. Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting.</p><div><br></div></div></h4>	<h4 class="modal-title" style="color: rgb(102, 102, 102); letter-spacing: 0.1px;"><div class="info aos-init aos-animate" data-aos="fade-up" data-aos-duration="1500" style="font-family: Roboto, sans-serif; transform: translateZ(0px); opacity: 1; transition-property: opacity, transform; transition-duration: 1.5s; transition-timing-function: ease; padding: 0px 80px; font-size: 16px; letter-spacing: normal; text-align: left;"><p>Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting. Dummy text of the printing and types etting industry lorem Ipsum has been the indu has been the industrys standard dummy text ever since the when an unknown printer took a galley of type and scrambled it to make a type specimen booksince the when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting.</p><div><br></div></div></h4>	2023-09-15 08:26:32	2023-09-15 08:26:32
\.


--
-- Data for Name: resturant_cart_check_styles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_cart_check_styles (id, "Cart_BG_Type", "Cart_BG_Image", "Cart_BG_Color", "Cart_Title_Color", "Cart_Txt_Color", "Cart_Top_Image", "Cart_Box_BG", "Cart_Box_Border", "Cart_Table_Color", "Cart_Table_BG", "Cart_Btn_BG", "Cart_Btn_Color", "Checkout_Image", "Checkout_Title_Color", "Checkout_BG_Type", "Checkout_BG_Image", "Checkout_BG_Color", "Checkout_Box_BG", "Checkout_Box_Border", "Checkout_Input_BG", "Checkout_Input_Color", "Checkout_Btn_Color", "Checkout_Btn_BG", "Checkout_Txt_Color", "Checkout_Txt_Hover_Color", "Checkout_Price_Color", "MyAccount_BG_Type", "MyAccount_BG_Image", "MyAccount_BG_Color", "MyAccount_Box_BG", "MyAccount_Box_Border", "MyAccount_Table_BG", "MyAccount_Table_Color", "MyAccount_Table_Head_BG", "MyAccount_Table_Head_Color", "MyAccount_Txt_Color", "MyAccount_Btn_BG", "MyAccount_Btn_Color", "MyAccount_Input_BG", "MyAccount_Input_Color", created_at, updated_at, "Collapse_BG", "Collapse_Border", "Collapse_Color") FROM stdin;
1	0	\N	#1d1d1d	#c83f46	#ffffff	AboutImages/Zq8ckO2SvANwSBpmKlE0.png	#212121	#b0b0b0	#ffffff	#212121	#c83f46	#ffffff	AboutImages/PQFW8qbLqN2wtZqIi135.png	#ffffff	1	AboutImages/UwmhPwxn9UE1Ie3KIbKV.png	#000000	#000000	#878787	#ffffff	#000000	#ffffff	#c83f46	#000000	#c83f46	#c83f46	0	\N	#000000	#000000	#696969	#000000	#ffffff	#c83f46	#ffffff	#ffffff	#c83f46	#ffffff	#ffffff	#000000	\N	2023-09-22 00:12:37	#d60000	#ffffff	#ffffff
\.


--
-- Data for Name: resturant_carts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_carts (id, "Product", "Name", "NameEn", "V_ID", "P_Code", "Qty", "Price", "Image", "Total", "User", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: resturant_cupon_codes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_cupon_codes (id, "Code", "Amount", "Status", "Num", "Used", "Expire", created_at, updated_at) FROM stdin;
1	2468	200	1	1	1	2023-10-01	2023-09-15 09:24:21	2023-09-17 14:35:47
\.


--
-- Data for Name: resturant_galleries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_galleries (id, "Image", created_at, updated_at) FROM stdin;
1	WebsliderImages/fCJtQQcCZiT3En1SN6wQ.png	2023-09-15 09:26:15	2023-09-15 09:26:15
2	WebsliderImages/ergqNVgX0D7Pc4bAgR8c.png	2023-09-15 09:27:04	2023-09-15 09:27:04
3	WebsliderImages/5Bn6rXnlFoQxiOMYBM9m.png	2023-09-15 09:27:13	2023-09-15 09:27:13
4	WebsliderImages/k0rCNtkbylrS5xJTL3PG.png	2023-09-15 09:27:23	2023-09-15 09:27:23
5	WebsliderImages/1KTybA9790iZaoJYJWzm.png	2023-09-15 09:27:32	2023-09-15 09:27:32
6	WebsliderImages/RWdZaFnC6l5jgAEewRN3.png	2023-09-15 09:27:45	2023-09-15 09:27:45
7	WebsliderImages/t9VoTxImVK7qlJVZlSjs.png	2023-09-15 09:27:53	2023-09-15 09:27:53
8	WebsliderImages/NLNEEQml7a2dzifYkyTx.png	2023-09-15 09:28:02	2023-09-15 09:28:02
\.


--
-- Data for Name: resturant_homes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_homes (id, "Image_1", "Image_2", "Image_3", "Image_4", "Title_Image", "Arabic_Title", "English_Title", created_at, updated_at, "English_Sub_Title", "Arabic_Sub_Title", "Year") FROM stdin;
1	AboutImages/cau58WOypIenZTXezONn.png	AboutImages/E3HWxs2NS4SrJBaxGL5H.png	AboutImages/sVlBbExKaUMGiUGZKROG.png	AboutImages/lfqMVvAtfin4AooRvoyA.png	AboutImages/lRwbGnfTxfJEXgRmTdnW.png	tasty Steakhouse, We Serve Only Real Steaks	tasty Steakhouse, We Serve Only Real Steaks	\N	2023-09-16 11:04:59	since	since	1975
\.


--
-- Data for Name: resturant_index_style_i_i_s; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_index_style_i_i_s (id, "About_Body_BG_Type", "About_Body_BG_Image", "About_Body_BG_Color", "About_Txt_Color", "Gallery_Border_Color", "Reviews_Image_1", "Reviews_Image_2", "Reviews_Nxt_Prev_Color", "Reviews_Nxt_Prev_BG", "Reviews_Nxt_Prev_Border", "Reviews_Txt_Color", "Reviews_Body_BG_Type", "Reviews_Body_BG_Image", "Reviews_Body_BG_Color", "Reservations_Body_BG_Type", "Reservations_Body_BG_Image", "Reservations_Body_BG_Color", "Reservations_Box_BG", "Reservations_Input_BG", "Reservations_Input_Color", "Reservations_Btn_Color", "Reservations_Btn_BG", "Blogs_Home_Body_BG_Type", "Blogs_Home_Body_BG_Image", "Blogs_Home_Body_BG_Color", "Blogs_Home_Box_BG_Color", "Blogs_Home_Box_Border_Color", "Blogs_Home_Txt_Color", "Blogs_Home_Txt_Hover_Color", "Blogs_Home_Btn_BG", "Blogs_Home_Btn_Color", created_at, updated_at) FROM stdin;
1	1	AboutImages/ARX7SyYO0X0kbIGUFyVZ.png	#ffffff	#000000	#696969	AboutImages/dX0nBhzZAsS2tS7TrtPT.png	AboutImages/yvPfPe3S34n4JtPnnNQx.png	#ffffff	#ffffff	#ffffff	#000000	1	AboutImages/9Q3U0H5giMrLGN9zsMtV.png	#ffffff	1	AboutImages/XrDBXVwUZdIZXeYwjC3C.png	#1d1d1d	#1d1d1d	#ffffff	#000000	#ffffff	#c83f46	1	AboutImages/JElY9d7iRbBLSs2gdTik.png	#ffffff	#1d1d1d	#696969	#ffffff	#c83f46	#c83f46	#ffffff	\N	2023-09-20 12:30:16
\.


--
-- Data for Name: resturant_index_style_i_s; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_index_style_i_s (id, "Home_1_Nxt_Prev_Color", "Home_1_Nxt_Prev_BG", "Home_1_Nxt_Prev_Border", "Home_2_Image_1", "Home_2_Image_2", "Home_2_Image_Arrow", "Home_2_Number_BG", "Home_2_Image_Border", "Home_2_Number_Color", "Category_Bar_BG", "Category_Bar_Color", "Video_Section_Body_BG_Type", "Video_Section_Body_BG_Image", "Video_Section_Body_BG_Color", "Video_Section_Image_1", "Video_Section_Image_2", "Menu_Index_Body_BG_Type", "Menu_Index_Body_BG_Image", "Menu_Index_Body_BG_Color", "Menu_Index_Txt_Color", "Menu_Index_Txt_Hover_Color", "Menu_Index_Btn_BG", "Menu_Index_Btn_Txt_Color", created_at, updated_at, "Icon_Image") FROM stdin;
1	#ffffff	#ffffff	#ffffff	AboutImages/7vGIDvqwD1xX5Jd73u83.png	AboutImages/XfGLXoinv2vuAwU52TfJ.png	AboutImages/Lw4nipHtcniDwaMpZj7O.svg	#252525	#696969	#ffffff	#000000	#ffffff	1	AboutImages/QR6l4bqHWi9563tArL7o.png	#ffffff	AboutImages/TaDtFClvKNyLqvHIMhRi.png	AboutImages/eLdW2PaGeEEBvg7ac245.png	0	\N	#1d1d1d	#ffffff	#c83f46	#c83f46	#ffffff	\N	2023-09-20 12:22:12	\N
\.


--
-- Data for Name: resturant_menu_styles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_menu_styles (id, "Menu_1_BG_Type", "Menu_1_BG_Image", "Menu_1_BG_Color", "Menu_1_Image", "Menu_1_Icon_Image", "Menu_1_Title", "Menu_1_Bar_BG", "Menu_1_Bar_Color", "Menu_1_Btn_BG", "Menu_1_Btn_Color", "Menu_1_Icon_Color", "Menu_1_Icon_Hover_Color", "Menu_1_Icon_Active_Color", "Menu_1_Price_Color", "Menu_1_Offer_Price_Color", "Menu_2_Gallery_Border", "Menu_2_BG_Type", "Menu_2_BG_Image", "Menu_2_BG_Color", "Menu_2_Title", "Menu_2_Category_Color", "Menu_2_Category_Hover_Color", "Menu_2_Category_Active_Color", "Menu_2_Lines_Color", "Menu_2_Btn_BG", "Menu_2_Btn_Color", "Menu_2_Name_BG", "Menu_2_Name_Color", "Menu_2_Icon_Color", "Menu_2_Icon_Hover_Color", "Menu_2_Icon_Active_Color", "Menu_2_Price_Color", "Menu_2_Offer_Price_Color", "Menu_3_BG_Type", "Menu_3_BG_Image", "Menu_3_BG_Color", "Menu_3_Image", "Menu_3_Icon_Image", "Menu_3_Title", "Menu_3_Category_Color", "Menu_3_Category_Hover_Color", "Menu_3_Category_Active_Color", "Menu_3_Box_BG", "Menu_3_Box_Color", "Menu_3_Btn_BG", "Menu_3_Btn_Color", "Menu_3_Icon_Color", "Menu_3_Icon_Hover_Color", "Menu_3_Icon_Active_Color", "Menu_3_Price_Color", "Menu_3_Offer_Price_Color", created_at, updated_at) FROM stdin;
1	1	\N	#000000	AboutImages/UTjxIrLbQpbYJptQw7N7.png	AboutImages/pdzjKaaQIy4Eqg5qcGf2.png	#b80000	#000000	#ffffff	#d10000	#ffffff	#ffffff	#c70000	#00bd6b	#a80000	#b5b5b5	#696969	0	\N	#000000	#c20000	#ffffff	#e00000	#cc0000	#f0f0f0	#d10000	#ffffff	#696969	#ffffff	#ffffff	#db0000	#00d60e	#bd0000	#ababab	0	\N	#000000	AboutImages/g59cV9Wqro5W1Rwn4eOC.png	AboutImages/Iq506ksgYFultumhaY39.png	#a80000	#ffffff	#c20000	#b80000	#000000	#ffffff	#c20000	#ffffff	#ffffff	#cc0000	#00ff40	#b10b0b	#cccccc	\N	2023-09-20 13:08:28
\.


--
-- Data for Name: resturant_nav_foot_styles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_nav_foot_styles (id, "Navbar_BG", "Navbar_Txt_Color", "Navbar_Txt_Hover_Color", "Navbar_Btn_BG", "Navbar_Btn_Color", "Navbar_Sub_Menu_BG", "Navbar_Sub_Menu_Color", "Footer_BG_Type", "Footer_BG_Color", "Footer_BG_Image", "Footer_Title_Color", "Footer_Txt_Color", "Footer_Social_Color", "Footer_Social_Hover_Color", "Footer_CopyRight_Color", "Footer_CopyRight_Company_Color", created_at, updated_at) FROM stdin;
1	#1d1d1d	#ffffff	#c83f46	#c83f46	#ffffff	#1d1d1d	#ffffff	1	#ffffff	AboutImages/sWMRijfJ2sGINrRoi9E6.png	#bababa	#ffffff	#ffffff	#c83f46	#ffffff	#c83f46	\N	2023-09-20 12:33:19
\.


--
-- Data for Name: resturant_privacies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_privacies (id, "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	<span style="font-family: Roboto, sans-serif; font-size: 16px; letter-spacing: normal; text-align: left;">Lorem Ipsum is simply dummy text of the printing and typeset ting industry lorem Ipsum has been the industrys standard my text ever since the when an unknown printer took a galley of type and scrambled it to make a type book It has survived.</span>	<span style="font-family: Roboto, sans-serif; font-size: 16px; letter-spacing: normal; text-align: left;">Lorem Ipsum is simply dummy text of the printing and typeset ting industry lorem Ipsum has been the industrys standard my text ever since the when an unknown printer took a galley of type and scrambled it to make a type book It has survived.</span>	\N	2023-09-15 08:20:47
\.


--
-- Data for Name: resturant_reservations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_reservations (id, "Name", "Phone", "Persons", "Date", "Time", "Message", "Approve", created_at, updated_at) FROM stdin;
1	Eslam	124124124	4	2023-09-18	21:55	Thank u	0	2023-09-16 10:52:46	2023-09-16 10:54:09
\.


--
-- Data for Name: resturant_reviews; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_reviews (id, "Image", "Arabic_Name", "English_Name", "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	ArticlesImages/4q61FV8ebdV7q7HC3n0R.png	Willium Joe	Willium Joe	<h1 style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; font-size: 24pt; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal;"><span style="font-family: Verdana, sans-serif; font-size: 28pt;"><font color="#ffffff">Amazing ambience, great food, very courteous staff. Overall very good experience. Best place&nbsp;</font></span></h1>	<h1 style="margin-right: 0cm; margin-left: 0cm; font-size: 24pt; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal; margin-top: 0cm;"><span style="font-size: 28pt; font-family: Verdana, sans-serif;"><font color="#ffffff">Amazing ambience, great food, very courteous staff. Overall very good experience. Best place&nbsp;</font></span></h1>	2023-09-15 09:31:24	2023-09-16 11:12:13
2	ArticlesImages/1IOjwUfB6Ar0vaOS43Hi.png	Willium Joe	Willium Joe	<h1 style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; font-size: 24pt; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal;"><span style="font-family: Verdana, sans-serif; font-size: 28pt;"><font color="#ffffff">Amazing ambience, great food, very courteous staff. Overall very good experience. Best place&nbsp;</font></span></h1>	<h1 style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; font-size: 24pt; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal;"><span style="font-family: Verdana, sans-serif; font-size: 28pt;"><font color="#ffffff">Amazing ambience, great food, very courteous staff. Overall very good experience. Best place&nbsp;</font></span></h1>	2023-09-15 09:31:54	2023-09-16 11:12:29
3	ArticlesImages/7vAq4ykVsEyZAQOZa6w0.png	Willium Joe	Willium Joe	<h1 style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; font-size: 24pt; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal;"><span style="font-family: Verdana, sans-serif; font-size: 28pt;"><font color="#ffffff">Amazing ambience, great food, very courteous staff. Overall very good experience. Best place&nbsp;</font></span></h1>	<h1 style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; font-size: 24pt; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal;"><span style="font-family: Verdana, sans-serif; font-size: 28pt;"><font color="#ffffff">Amazing ambience, great food, very courteous staff. Overall very good experience. Best place&nbsp;</font></span></h1>	2023-09-15 09:32:11	2023-09-16 11:12:39
4	ArticlesImages/NF8tOPIzUGGGRfJ6qpIJ.png	Willium Joe	Willium Joe	<h1 style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; font-size: 24pt; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal;"><span style="font-family: Verdana, sans-serif; font-size: 28pt;"><font color="#ffffff">Amazing ambience, great food, very courteous staff. Overall very good experience. Best place&nbsp;</font></span></h1>	<h1 style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; font-size: 24pt; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal;"><span style="font-family: Verdana, sans-serif; font-size: 28pt;"><font color="#ffffff">Amazing ambience, great food, very courteous staff. Overall very good experience. Best place&nbsp;</font></span></h1>	2023-09-15 09:32:29	2023-09-16 11:12:50
\.


--
-- Data for Name: resturant_sliders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_sliders (id, "Status", "Arabic_Title", "English_Title", "Arabic_Desc", "English_Desc", "Image", "Type", created_at, updated_at) FROM stdin;
1	1	Welcome to the restaurant	Welcome to the restaurant	Timeless & Traditional taste	Timeless & Traditional taste	WebsliderImages/l630E4jctrQZkY0gNU8C.png	0	2023-09-15 08:11:18	2023-09-15 08:11:57
2	1	Welcome to the restaurant	Welcome to the restaurant	Timeless & Traditional taste	Timeless & Traditional taste	WebsliderImages/xd3sryVHMi9h5cmo9rKt.png	0	2023-09-15 08:12:35	2023-09-15 08:12:35
3	1	Welcome to the restaurant	Welcome to the restaurant	Timeless & Traditional taste	Timeless & Traditional taste	WebsliderImages/8OublUThqO29bmEKnQ8O.png	0	2023-09-15 08:13:03	2023-09-15 08:13:03
\.


--
-- Data for Name: resturant_socials; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_socials (id, "Facebook", "Twitter", "Instagram", "Youtube", "Snapchat", "Whatsapp", "Google_Plus", "LinkedIn", "Pinterest", "Telegram", "iOS", "Android", created_at, updated_at) FROM stdin;
1	https://www.facebook.com/	https://www.facebook.com/	https://www.facebook.com/	https://www.facebook.com/	\N	\N	\N	\N	\N	\N	\N	\N	\N	2023-09-15 08:18:27
\.


--
-- Data for Name: resturant_styles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_styles (id, "Font", "Home", "Menu", created_at, updated_at, "Reviews", "Privacy", "Terms", "Gallery", "Blogs", "Cart", "PDF", "Reservations", "Body_BG_Type", "Modal_Txt_Color", "Modal_BG_Color", "Pagination_Active_Txt_Color", "Pagination_Active_BG_Color", "Pagination_Txt_Color", "Pagination_BG_Color", "Body_Title_Color", "Modal_Button_Txt_Color", "Modal_Button_BG_Color", "Form_Input_Txt_Color", "Form_Input_BG", "Form_Txt_Hover_Color", "Form_Txt_Color", "Form_Box_Border_Color", "Form_Box_BG", "Preloader_Circle_3_Color", "Preloader_Circle_2_Color", "Preloader_Circle_1_Color", "Form_Btn_Txt_Color", "Form_Btn_BG", "Body_BG_Image", "Body_BG_Color") FROM stdin;
1	3	1	3	\N	2023-09-22 09:57:14	1	1	1	1	1	0	1	1	1	#c83f46	#1d1d1d	#c83f46	#1d1d1d	#1d1d1d	#c83f46	#c83f46	#ffffff	#c83f46	#c83f46	#696969	#c83f46	#ffffff	#696969	#323232	#9e9e9e	#1d1d1d	#c83f46	#ffffff	#c83f46	AboutImages/94Ex9BPcpOODZkBSaWNJ.png	#1d1d1d
\.


--
-- Data for Name: resturant_sup_page_styles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_sup_page_styles (id, "Blogs_BG_Type", "Blogs_BG_Image", "Blogs_BG_Color", "Blogs_Title_Color", "Blogs_Top_Image", "Blogs_Box_BG", "Blogs_Box_Border", "Blogs_Box_Txt_Color", "Blogs_Box_Txt_Hover_Color", "Blogs_Btn_Color", "Blogs_Btn_BG", "Blogs_Details_Box_BG", "Blogs_Details_Box_Border", "Blogs_Details_Box_Txt_Color", "Reviews_Top_Image", "Reviews_Title_Color", "Reviews_BG_Type", "Reviews_BG_Image", "Reviews_BG_Color", "Reviews_Box_BG", "Reviews_Box_Border", "Reviews_Icon_Color", "Gallery_Top_Image", "Gallery_Title_Color", "Gallery__BG_Type", "Gallery__BG_Image", "Gallery__BG_Color", "Terms_Privacy_Top_Image", "Terms_Privacy_Title_Color", "Terms_Privacy_Box_BG", "Terms_Privacy_Box_Border", created_at, updated_at) FROM stdin;
1	0	\N	#1d1d1d	#c83f46	AboutImages/CVXjkfpW5VtsrDnF9Qki.png	#696969	#000000	#333333	#c83f46	#ffffff	#c83f46	#000000	#696969	#ffffff	AboutImages/4o8UZZLySr7H2qTz3PSl.png	#c83f46	0	\N	#1d1d1d	#696969	#000000	#ffffff	AboutImages/6m8L0jIiunEum3TQnQFQ.png	#c83f46	0	\N	#ffffff	AboutImages/u1J0OSeMQ2DLvmBCxKA3.png	#c83f46	#202020	#696969	\N	2023-09-21 12:52:20
\.


--
-- Data for Name: resturant_tables; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_tables (id, "Table_Number", "Arabic_Name", "English_Name", "Place_Ar", "Place_En", "Chairs_Num", "QR", created_at, updated_at) FROM stdin;
1	1	طاوله ١	Table 1	جانب الشباك	Beside Window	4	https://klarapps.com	2023-09-05 07:01:33	2023-09-05 07:01:33
\.


--
-- Data for Name: resturant_terms; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_terms (id, "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	<span style="font-family: Roboto, sans-serif; font-size: 16px; letter-spacing: normal; text-align: left;">Lorem Ipsum is simply dummy text of the printing and typeset ting industry lorem Ipsum has been the industrys standard my text ever since the when an unknown printer took a galley of type and scrambled it to make a type book It has survived.</span>	<span style="font-family: Roboto, sans-serif; font-size: 16px; letter-spacing: normal; text-align: left;">Lorem Ipsum is simply dummy text of the printing and typeset ting industry lorem Ipsum has been the industrys standard my text ever since the when an unknown printer took a galley of type and scrambled it to make a type book It has survived.</span>	\N	2023-09-15 08:21:05
\.


--
-- Data for Name: resturant_video_sections; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.resturant_video_sections (id, "BG_Image", "Icon", "Title_Image", "Video_Link", "Image_1", "Image_2", "Image_3", "Image_4", "Number_1", "Number_2", "Number_3", "Number_4", "Arabic_Title_1", "Arabic_Title_2", "Arabic_Title_3", "Arabic_Title_4", "English_Title_1", "English_Title_2", "English_Title_3", "English_Title_4", created_at, updated_at) FROM stdin;
1	AboutImages/dYCC0mqGjjXS8WrUJlUd.png	AboutImages/lf9JGwjhqcY7DKbbVroq.png	AboutImages/zzM3R3W8XH9UkKBYbcXY.png	https://www.youtube.com/embed/NC9KlaxtfLg?autoplay=1&mute=1	AboutImages/f2OHaPKEkU8AOG8iEkQG.png	AboutImages/OuB8iX9sUW3Mmrl7Oq3X.png	AboutImages/hpcmTCOHdJKdRKEJwBEv.png	AboutImages/3EV6RgwBUZlz5thLDVjQ.png	890	25	125	4.9	happy customers	Passonate Chefs	Favourite Dishes	Customer Rating	happy customers	Passonate Chefs	Favourite Dishes	Customer Rating	\N	2023-09-20 15:57:09
\.


--
-- Data for Name: return_maintaince_bills; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_maintaince_bills (id, "Code", "Date", "Note", "Serial_Num", "Pattern_Image", "Time", "Payment_Method", "Password", "Pay", "Work", "Total", "Total_Cost", "Cost_Precent", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_Bf_Taxes", "Total_Taxes", "Draw", "Bill", "Company", "Device_Type", "Device_Case", "Coin", "Cost_Center", "Account", "Store", "Eng", "Recipient", "Branch", "User", arr, created_at, updated_at, "CustomerGroup", "Total_Talf") FROM stdin;
\.


--
-- Data for Name: return_products_stores_transfers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_products_stores_transfers (id, "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "P_Code", "Price", "OldPrice", "Av_Qty", "SmallCode", "ReturnQty", "Trans_Qty", "Original_Trans_Qty", "SmallTrans_Qty", "Total", "ST_ID", "Product", "V1", "V2", "Unit", "To_Store", "CostPrice", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: return_purch_bills_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_purch_bills_filter_twos (id, "Code", "Date", "Total_Return_Qty", "Total_Return_Value", "Total_BF_Taxes", "Total_Taxes", "Total_Discount", "Purchase", "Pay", "Payment_Method", "User", "Time", "Branch", "CustomerGroup", "Refernce_Number", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "Ship", "Later_Due", "Type", "ID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: return_purch_bills_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_purch_bills_filters (id, "Code", "Date", "Total_Return_Qty", "Total_Return_Value", "Total_BF_Taxes", "Total_Taxes", "Total_Discount", "Purchase", "Pay", "Payment_Method", "User", "Time", "Branch", "CustomerGroup", "Refernce_Number", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "Ship", "Later_Due", "Type", "ID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: return_purch_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_purch_products (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "Return_Qty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Return", created_at, updated_at, "Date", "Code", "Refernce_Number", "Safe", "Vendor", "Delegate", "Coin", "User", "Cost_Center", "Type", "Ship", "TDiscount", "TypeEn") FROM stdin;
\.


--
-- Data for Name: return_purches; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_purches (id, "Code", "Date", "Total_Return_Qty", "Total_Return_Value", "Total_BF_Taxes", "Total_Taxes", "Purchase", "User", created_at, updated_at, "Pay", "Payment_Method", "TDiscount", "Total_Discount", "Time", "Branch", "CustomerGroup", "Refernce_Number", "Later_Due", "Cost_Center", "Safe", "Vendor", "Delegate", "Store", "Coin", arr, "Ship", "Delete", "Edit", "Edit_New_Code", "Reason") FROM stdin;
\.


--
-- Data for Name: return_resons; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_resons (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: return_sales; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_sales (id, "Code", "Date", "Total_Return_Qty", "Total_Return_Value", "Total_BF_Taxes", "Total_Taxes", "Sales", "User", created_at, updated_at, "Pay", "Payment_Method", "TDiscount", "Total_Discount", "Time", "Branch", "CustomerGroup", "Refernce_Number", "Executor", "Later_Due", "InstallCompany", "Delivery", "TaxBill", "TaxCode", uuid, "longId", "hashKey", "submissionId", "Sent", "Safe", "Cost_Center", "Client", "Delegate", "Store", "Coin", arr, "Ship", "Edit", "Delete", "Edit_New_Code", "Current_Credit", "Cost", "TotalCost", "Reason") FROM stdin;
\.


--
-- Data for Name: return_sales_bills_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_sales_bills_filter_twos (id, "Code", "Date", "Total_Return_Qty", "Total_Return_Value", "Total_BF_Taxes", "Total_Taxes", "Total_Discount", "Sales", "Pay", "Payment_Method", "User", "Time", "Branch", "CustomerGroup", "Refernce_Number", "Safe", "Client", "Executor", "Delegate", "Store", "Coin", "Cost_Center", "Ship", "Later_Due", "InstallCompany", "Delivery", created_at, updated_at, "ID", "Type") FROM stdin;
\.


--
-- Data for Name: return_sales_bills_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_sales_bills_filters (id, "Code", "Date", "Total_Return_Qty", "Total_Return_Value", "Total_BF_Taxes", "Total_Taxes", "Total_Discount", "Sales", "Pay", "Payment_Method", "User", "Time", "Branch", "CustomerGroup", "Refernce_Number", "Safe", "Client", "Executor", "Delegate", "Store", "Coin", "Cost_Center", "Ship", "Later_Due", "InstallCompany", "Delivery", created_at, updated_at, "Type", "ID") FROM stdin;
\.


--
-- Data for Name: return_sales_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_sales_products (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Original_Qty", "Recived_Qty", "AvQty", "Qty", "Price", "Discount", "Tax", "Total_Bf_Tax", "Total", "Total_Tax", "Exp_Date", "Store", "Product", "V1", "V2", "Unit", "Return", created_at, updated_at, "Code", "Type", "Cost_Center", "User", "Delegate", "Executor", "Safe", "Coin", "Date", "Client", "Refernce_Number", "Ship", "Patch_Number", "CoinCode", "CoinPrice", "CoinRate", "AmountEGP", "DiscountAmount", "TaxType", "TaxAmount", "TaxSubType", "TaxRate", "TotalBill", "SalesTotal", "NetTotal") FROM stdin;
\.


--
-- Data for Name: return_stors_transfers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_stors_transfers (id, "Code", "Date", "Draw", "Total", "TotalQty", "Note", "From_Store", "To_Store", "Coin", "Cost_Center", "User", "Status", "Ship", "CostShip", "RecivedShip", "OldQty", "Edit", "Delegate", "Time", "Branch", "Total_Cost", "TypeTransfer", "Cost_Store", "OriginalID", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: return_without_bills; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.return_without_bills (id, "Code", "Date", "Draw", "Payment_Method", "Status", "Vendor_Bill_Date", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Total_Cost", "Pay", "Safe", "Vendor", "Deficit_Account", "Delegate", "Store", "Coin", "Cost_Center", "User", "Due_Date", "Later_Due", "TaxBill", "TaxCode", "Time", "Branch", created_at, updated_at, "Delete", "Current_Credit") FROM stdin;
\.


--
-- Data for Name: role_has_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.role_has_permissions (permission_id, role_id) FROM stdin;
14	22
584	22
618	22
298	22
299	22
572	22
574	22
575	22
622	22
378	22
528	22
26	22
369	22
34	22
424	22
427	22
547	22
653	22
655	22
27	22
40	22
48	22
526	22
524	22
588	22
53	22
681	22
95	22
96	22
97	22
98	22
100	22
101	22
102	22
103	22
104	22
366	22
107	22
108	22
110	22
111	22
112	22
113	22
532	22
542	22
544	22
664	22
666	22
118	22
144	22
145	22
158	22
159	22
536	22
537	22
538	22
174	22
220	22
221	22
533	22
534	22
508	23
532	23
540	23
542	23
544	23
564	23
565	23
566	23
619	23
620	23
621	23
649	23
650	23
651	23
660	23
661	23
662	23
663	23
664	23
666	23
674	23
675	23
118	23
119	23
120	23
121	23
122	23
123	23
124	23
125	23
126	23
127	23
128	23
129	23
130	23
329	23
330	23
331	23
332	23
333	23
334	23
340	23
131	23
132	23
133	23
134	23
135	23
136	23
137	23
138	23
139	23
140	23
141	23
142	23
143	23
144	23
145	23
146	23
147	23
148	23
149	23
150	23
151	23
152	23
153	23
154	23
155	23
156	23
157	23
158	23
159	23
160	23
161	23
162	23
163	23
164	23
165	23
166	23
167	23
168	23
169	23
170	23
171	23
172	23
173	23
426	23
341	23
342	23
343	23
346	23
347	23
348	23
349	23
536	23
537	23
538	23
560	23
561	23
562	23
563	23
199	23
690	23
344	23
345	23
691	23
174	23
176	23
177	23
178	23
179	23
180	23
181	23
182	23
183	23
184	23
185	23
186	23
187	23
188	23
189	23
190	23
191	23
192	23
193	23
14	23
15	23
16	23
17	23
18	23
19	23
20	23
21	23
22	23
23	23
24	23
448	23
441	23
442	23
546	23
584	23
614	23
615	23
617	23
618	23
224	23
225	23
226	23
227	23
228	23
229	23
230	23
231	23
232	23
233	23
359	23
360	23
234	23
235	23
236	23
237	23
238	23
239	23
240	23
241	23
242	23
243	23
244	23
245	23
246	23
247	23
248	23
249	23
250	23
251	23
252	23
253	23
254	23
255	23
256	23
257	23
258	23
259	23
260	23
261	23
262	23
263	23
264	23
509	23
265	23
266	23
267	23
268	23
269	23
270	23
271	23
272	23
273	23
274	23
275	23
276	23
277	23
278	23
279	23
280	23
281	23
282	23
283	23
284	23
285	23
286	23
287	23
288	23
289	23
294	23
295	23
296	23
297	23
500	23
501	23
502	23
510	23
511	23
512	23
567	23
594	23
679	23
298	23
299	23
300	23
310	23
311	23
312	23
313	23
314	23
315	23
316	23
317	23
318	23
358	23
365	23
350	23
351	23
352	23
353	23
354	23
355	23
356	23
357	23
392	23
396	23
301	23
302	23
303	23
304	23
305	23
306	23
307	23
308	23
309	23
590	23
591	23
319	23
320	23
321	23
322	23
323	23
324	23
325	23
326	23
327	23
328	23
676	23
385	23
386	23
387	23
388	23
389	23
390	23
391	23
555	23
556	23
557	23
455	23
456	23
457	23
458	23
459	23
460	23
461	23
462	23
463	23
465	23
466	23
467	23
468	23
469	23
470	23
471	23
472	23
473	23
474	23
476	23
478	23
479	23
475	23
480	23
481	23
482	23
483	23
484	23
485	23
486	23
576	23
577	23
578	23
579	23
580	23
581	23
582	23
583	23
25	23
487	23
488	23
489	23
490	23
491	23
551	23
552	23
568	23
569	23
570	23
492	23
493	23
494	23
495	23
497	23
496	23
572	23
573	23
574	23
575	23
622	23
378	23
528	23
595	23
596	23
597	23
598	23
599	23
600	23
601	23
602	23
603	23
604	23
605	23
606	23
607	23
608	23
609	23
610	23
611	23
612	23
613	23
677	23
678	23
623	23
624	23
625	23
626	23
627	23
628	23
629	23
630	23
631	23
632	23
633	23
634	23
635	23
636	23
637	23
638	23
659	23
26	23
28	23
29	23
30	23
31	23
32	23
33	23
367	23
368	23
369	23
370	23
371	23
14	18
373	23
395	23
39	23
379	23
380	23
34	23
35	23
36	23
37	23
38	23
424	23
425	23
427	23
443	23
449	23
453	23
454	23
464	23
450	23
498	23
499	23
513	23
514	23
515	23
516	23
517	23
518	23
520	23
521	23
522	23
523	23
531	23
547	23
548	23
549	23
550	23
553	23
554	23
586	23
593	23
652	23
653	23
654	23
655	23
656	23
657	23
658	23
682	23
683	23
684	23
685	23
686	23
687	23
688	23
27	23
692	23
40	23
44	23
45	23
46	23
47	23
48	23
49	23
50	23
51	23
52	23
372	23
384	23
41	23
42	23
43	23
529	23
526	23
525	23
527	23
530	23
519	23
587	23
592	23
648	23
524	23
588	23
616	23
452	23
589	23
665	23
693	23
694	23
695	23
53	23
54	23
55	23
56	23
57	23
58	23
59	23
60	23
61	23
62	23
63	23
64	23
65	23
66	23
67	23
68	23
69	23
70	23
71	23
72	23
73	23
74	23
75	23
76	23
77	23
432	23
433	23
434	23
435	23
436	23
437	23
438	23
439	23
440	23
451	23
477	23
585	23
669	23
670	23
671	23
672	23
680	23
681	23
689	23
78	23
79	23
80	23
81	23
82	23
83	23
84	23
85	23
86	23
87	23
88	23
89	23
90	23
91	23
92	23
93	23
94	23
374	23
375	23
393	23
394	23
397	23
398	23
541	23
543	23
545	23
571	23
95	23
96	23
97	23
98	23
99	23
100	23
101	23
102	23
103	23
104	23
361	23
362	23
363	23
364	23
366	23
376	23
377	23
105	23
106	23
107	23
108	23
109	23
110	23
111	23
112	23
113	23
114	23
115	23
116	23
117	23
428	23
429	23
430	23
431	23
444	23
445	23
446	23
447	23
507	23
194	23
195	23
196	23
197	23
198	23
200	23
201	23
202	23
203	23
204	23
205	23
206	23
207	23
208	23
209	23
210	23
211	23
212	23
213	23
215	23
335	23
336	23
337	23
338	23
381	23
382	23
383	23
175	23
214	23
216	23
217	23
218	23
219	23
220	23
221	23
222	23
223	23
533	23
534	23
539	23
535	23
558	23
559	23
647	23
667	23
668	23
673	23
14	17
15	17
16	17
17	17
18	17
19	17
20	17
21	17
22	17
23	17
24	17
448	17
441	17
442	17
546	17
584	17
614	17
615	17
617	17
618	17
224	17
225	17
226	17
227	17
228	17
229	17
230	17
231	17
232	17
233	17
359	17
360	17
234	17
235	17
236	17
237	17
238	17
239	17
240	17
241	17
242	17
243	17
244	17
245	17
246	17
247	17
248	17
249	17
250	17
251	17
252	17
253	17
254	17
255	17
256	17
257	17
258	17
259	17
260	17
261	17
262	17
263	17
264	17
509	17
265	17
266	17
267	17
268	17
269	17
270	17
271	17
272	17
273	17
274	17
275	17
276	17
277	17
278	17
279	17
280	17
281	17
282	17
283	17
284	17
285	17
286	17
287	17
288	17
289	17
294	17
295	17
296	17
297	17
500	17
501	17
502	17
510	17
511	17
512	17
567	17
594	17
679	17
709	17
298	17
299	17
300	17
310	17
311	17
312	17
313	17
314	17
315	17
316	17
317	17
318	17
358	17
365	17
350	17
351	17
352	17
353	17
354	17
355	17
356	17
357	17
392	17
396	17
301	17
302	17
303	17
304	17
305	17
306	17
307	17
308	17
309	17
590	17
591	17
319	17
320	17
321	17
322	17
323	17
324	17
325	17
326	17
327	17
328	17
676	17
807	17
808	17
809	17
810	17
811	17
812	17
813	17
814	17
815	17
816	17
817	17
818	17
819	17
820	17
821	17
822	17
823	17
824	17
825	17
826	17
827	17
828	17
829	17
830	17
831	17
385	17
386	17
387	17
388	17
389	17
390	17
391	17
555	17
556	17
557	17
455	17
456	17
457	17
458	17
459	17
460	17
461	17
462	17
463	17
465	17
466	17
467	17
468	17
469	17
470	17
471	17
472	17
473	17
474	17
476	17
478	17
479	17
475	17
710	17
714	17
715	17
716	17
717	17
718	17
719	17
720	17
721	17
722	17
723	17
724	17
725	17
726	17
727	17
728	17
729	17
736	17
737	17
738	17
739	17
740	17
741	17
742	17
743	17
744	17
746	17
747	17
806	17
25	17
487	17
488	17
489	17
490	17
491	17
551	17
552	17
568	17
569	17
570	17
492	17
493	17
494	17
495	17
497	17
496	17
572	17
573	17
574	17
575	17
622	17
378	17
528	17
595	17
596	17
597	17
598	17
599	17
600	17
601	17
602	17
603	17
604	17
605	17
606	17
607	17
608	17
609	17
610	17
611	17
612	17
613	17
677	17
678	17
706	17
707	17
623	17
624	17
625	17
626	17
627	17
628	17
629	17
630	17
631	17
632	17
633	17
634	17
635	17
636	17
637	17
638	17
659	17
700	17
701	17
702	17
703	17
704	17
705	17
745	17
748	17
749	17
750	17
751	17
752	17
753	17
754	17
755	17
756	17
757	17
758	17
759	17
760	17
761	17
762	17
763	17
764	17
765	17
766	17
767	17
768	17
769	17
775	17
776	17
777	17
778	17
779	17
780	17
781	17
782	17
783	17
784	17
785	17
786	17
787	17
788	17
789	17
790	17
791	17
792	17
793	17
794	17
795	17
796	17
797	17
798	17
799	17
800	17
801	17
802	17
803	17
804	17
805	17
26	17
28	17
29	17
30	17
31	17
32	17
33	17
367	17
368	17
369	17
370	17
371	17
373	17
395	17
39	17
379	17
380	17
34	17
35	17
36	17
37	17
38	17
424	17
425	17
427	17
443	17
449	17
453	17
454	17
464	17
450	17
498	17
499	17
513	17
514	17
515	17
516	17
517	17
518	17
520	17
521	17
522	17
523	17
531	17
547	17
548	17
549	17
550	17
553	17
554	17
586	17
593	17
652	17
653	17
654	17
655	17
656	17
657	17
658	17
682	17
683	17
684	17
685	17
686	17
687	17
688	17
27	17
692	17
708	17
731	17
732	17
40	17
44	17
45	17
46	17
47	17
48	17
49	17
50	17
51	17
52	17
372	17
384	17
41	17
42	17
43	17
529	17
526	17
525	17
527	17
530	17
519	17
587	17
592	17
648	17
524	17
588	17
616	17
452	17
589	17
665	17
693	17
694	17
695	17
53	17
54	17
55	17
56	17
57	17
58	17
59	17
60	17
61	17
62	17
63	17
64	17
65	17
66	17
67	17
68	17
69	17
70	17
71	17
72	17
73	17
74	17
75	17
76	17
77	17
432	17
433	17
434	17
435	17
436	17
437	17
438	17
439	17
440	17
451	17
477	17
585	17
669	17
670	17
671	17
672	17
680	17
681	17
689	17
698	17
699	17
711	17
712	17
713	17
730	17
78	17
79	17
80	17
81	17
82	17
83	17
84	17
85	17
86	17
87	17
88	17
89	17
90	17
91	17
92	17
93	17
94	17
374	17
375	17
393	17
394	17
397	17
398	17
541	17
543	17
545	17
571	17
735	17
773	17
774	17
95	17
96	17
97	17
98	17
99	17
100	17
101	17
102	17
103	17
104	17
361	17
362	17
363	17
364	17
366	17
376	17
377	17
105	17
106	17
107	17
108	17
109	17
110	17
111	17
112	17
113	17
114	17
115	17
116	17
117	17
428	17
429	17
430	17
431	17
444	17
445	17
446	17
447	17
507	17
508	17
532	17
540	17
542	17
544	17
564	17
565	17
566	17
619	17
620	17
621	17
649	17
650	17
651	17
660	17
661	17
662	17
663	17
664	17
666	17
674	17
675	17
733	17
734	17
118	17
119	17
120	17
121	17
122	17
123	17
124	17
125	17
126	17
127	17
128	17
129	17
130	17
329	17
330	17
331	17
332	17
333	17
334	17
340	17
131	17
132	17
133	17
134	17
135	17
136	17
137	17
138	17
139	17
140	17
141	17
142	17
143	17
144	17
145	17
146	17
147	17
148	17
149	17
150	17
151	17
152	17
153	17
154	17
155	17
156	17
157	17
158	17
159	17
160	17
161	17
162	17
163	17
164	17
165	17
166	17
167	17
168	17
169	17
170	17
171	17
172	17
173	17
426	17
341	17
342	17
343	17
346	17
347	17
348	17
349	17
536	17
537	17
538	17
560	17
561	17
562	17
563	17
199	17
690	17
344	17
345	17
691	17
696	17
697	17
174	17
176	17
177	17
178	17
179	17
180	17
181	17
182	17
183	17
184	17
185	17
186	17
187	17
188	17
189	17
190	17
191	17
192	17
193	17
194	17
195	17
196	17
197	17
198	17
200	17
201	17
202	17
203	17
204	17
205	17
206	17
207	17
208	17
209	17
210	17
211	17
212	17
213	17
215	17
335	17
336	17
337	17
338	17
381	17
382	17
383	17
175	17
214	17
216	17
217	17
218	17
219	17
220	17
221	17
222	17
223	17
533	17
534	17
539	17
535	17
558	17
559	17
647	17
667	17
668	17
673	17
770	17
771	17
772	17
\.


--
-- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.roles (id, name, guard_name, created_at, updated_at, "nameEn") FROM stdin;
17	Owner	admin	2021-08-19 21:53:01	2023-09-22 11:50:34	المالك
18	Guest	admin	2021-12-14 17:22:16	2024-02-09 01:12:03	ضيف
22	المناديب	admin	2024-12-04 22:03:08	2024-12-04 22:03:08	\N
23	الإدارة	admin	2024-12-04 22:03:32	2024-12-04 22:03:32	\N
\.


--
-- Data for Name: room_reservations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.room_reservations (id, "Date", "Room", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: rooms; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.rooms (id, "Code", "Floor", "Bulding_Name", "Adults_Num", "Childs_Num", "Beds_Num", "Desc", "Price", "Reserved", created_at, updated_at, "RoomsType", "DescEn") FROM stdin;
\.


--
-- Data for Name: rooms_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.rooms_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
1	غرفة افتراضية	Default Room	2022-08-29 08:43:55	2024-02-09 01:00:23
\.


--
-- Data for Name: rqst_transports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.rqst_transports (id, "Code", "Date", "Time", "Arrival_Date", "Arrival_Time", "Reference_Num", "Weight", "Note", "Payment_Method", "Insurance", "Pay", "Value", "Type", "Sender_Name", "Sender_Governorate", "Sender_City", "Sender_Place", "Sender_Address", "Sender_Phone1", "Sender_Phone2", "Sender_Location", "Receiver_Name", "Receiver_Governorate", "Receiver_City", "Receiver_Place", "Receiver_Address", "Receiver_Phone1", "Receiver_Phone2", "Receiver_Location", "Safe", "Coin", "Draw", "Cost_Center", "Driver", "Car", "Driver_Precent", "Driver_Value", "Contractor", "Contractor_Precent", "Contractor_Value", "Expenses_Precent", "Expenses_Value", "The_Net", "Sender", "Received", "Transfer", created_at, updated_at, "User") FROM stdin;
\.


--
-- Data for Name: safe_transfer_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.safe_transfer_columns (id, "Date", "Code", "Time", "Amount", "From_Safe", "To_Safe", "User", "Coin", "Cost_Center", "Note", "Delegate", created_at, updated_at, "Branch") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-06 11:31:50	1
\.


--
-- Data for Name: safe_transfer_columns_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.safe_transfer_columns_sechdules (id, "Date", "Code", "Time", "Amount", "From_Safe", "To_Safe", "User", "Coin", "Cost_Center", "Note", "Delegate", created_at, updated_at, "Branch") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-06 13:53:22	1
\.


--
-- Data for Name: safe_transfer_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.safe_transfer_filter_twos (id, "Code", "Date", "Draw", "Amount", "Note", "From_Safe", "To_Safe", "Coin", "Cost_Center", "User", "Status", "File", "OldAmount", "Edit", "Delegate", "Time", "ID", "Type", created_at, updated_at, "Branch") FROM stdin;
1	2	2022-10-06	1	2000	\N	30	32	1	\N	11	0	\N	2000	0	\N	01:45:20 pm	7	0	2022-10-06 13:53:23	2022-10-06 13:53:23	3
\.


--
-- Data for Name: safe_transfer_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.safe_transfer_filters (id, "Code", "Date", "Draw", "Amount", "Note", "From_Safe", "To_Safe", "Coin", "Cost_Center", "User", "Status", "File", "OldAmount", "Edit", "Delegate", "Time", "ID", "Type", created_at, updated_at, "Branch") FROM stdin;
1	2	2022-10-06	1	2000	\N	30	32	1	\N	11	0	\N	2000	0	\N	01:45:20 pm	7	0	2022-10-06 13:53:23	2022-10-06 13:53:23	3
\.


--
-- Data for Name: safe_transfers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.safe_transfers (id, "Code", "Date", "Draw", "Amount", "Note", "From_Safe", "To_Safe", "Coin", "Cost_Center", "User", created_at, updated_at, "Status", "File", "OldAmount", "Edit", "Time", "Delegate", arr, "Branch") FROM stdin;
\.


--
-- Data for Name: safes_banks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.safes_banks (id, "Code", "Date", "Name", "Type", "Note", "Account", "User", arr, created_at, updated_at, "Branch", "Service_Fee", "NameEn") FROM stdin;
3	3	2021-06-20	الخزينة الرئيسية	1	\N	30	1	\N	\N	2024-02-09 00:18:47	3	\N	Main Safe
4	4	2021-06-20	البنك الاهلي	2	\N	32	1	\N	\N	2024-02-09 00:20:06	3	\N	SNB
\.


--
-- Data for Name: sales; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales (id, "Code", "Date", "Draw", "Payment_Method", "Status", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", presenter, annual_interest, monthly_installment, "Years_Number", total, "installment_Num", "Date_First_installment", "Quote", "SalesOrder", "Safe", "Client", "Delegate", "Executor", "Store", "Coin", "Cost_Center", "User", created_at, updated_at, "Ship", arr, "Check_Type", "Check_Number", "Due_Date", "ShipStatus", "Cash", "Visa", "Sale_Type", "Hold", "Shift_Code", emp, "Store_Code", "Later_Due", "Later_Collection", "Client_Address", "Delivery", "Delivery_Status", "Sale_User", "Sent", "TaxBill", "TaxCode", "ProfitPrecent", "TaxOnTotal", "TaxOnTotalType", "ProfitTax", "ContractNumber", "PayFees", "ServiceFee", "CompanyPrecent", "Time", "Branch", "CustomerGroup", "Total_Cost", uuid, "longId", "hashKey", "submissionId", "statusBill", "DiscountTax", "RecivedDate", "InstallCompany", "File", "ResturantOrderType", "DeliveryTime", "RecivedOrderTime", "RecivedOrder", "KitchenEndTime", "KitchenEnd", "Witer", "TakeawayTime", "TakeawayStatus", "Table", "Total_Wight_Bill", "Edit", "Delete", "Edit_New_Code", "Total_Net", "Residual", "Current_Credit", "DiscountBill", "ServiceType", "ServiceFees", "ServiceValue", bill_lat, bill_lng, "App", "Shipping_Price", "Warranty_Expire_Date", "Use_Qty") FROM stdin;
\.


--
-- Data for Name: sales_bills_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_bills_columns (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "ShiftCode", "Executor", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Product_Code", "Product_Name", "Unit", "Av_Qty", "Qty", "Price", "Discount", "Total_BF_Tax", "Tax", "Total", "Group", "Brand", "Exp_Date", "Product_Store", created_at, updated_at, "Client", "Rate", "Name_Width") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-03 18:54:03	1	\N	\N
\.


--
-- Data for Name: sales_bills_columns_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_bills_columns_sechdules (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "ShiftCode", "Executor", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Product_Code", "Product_Name", "Unit", "Av_Qty", "Qty", "Price", "Discount", "Total_BF_Tax", "Tax", "Total", "Group", "Brand", "Exp_Date", "Product_Store", created_at, updated_at, "Client", "Rate", "Name_Width") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-03 19:30:06	1	\N	\N
\.


--
-- Data for Name: sales_bills_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_bills_filter_twos (id, "Code", "Date", "Payment_Method", "Status", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Safe", "Client", "Executor", "Delegate", "Store", "Coin", "Cost_Center", "User", "Ship", "Shift_Code", "Later_Due", "Later_Collection", "Delivery", "ProfitPrecent", "TaxOnTotal", "TaxOnTotalType", "ProfitTax", "InstallCompany", "ServiceFee", "CompanyPrecent", "Time", "Branch", "CustomerGroup", created_at, updated_at, "ID", "Type") FROM stdin;
\.


--
-- Data for Name: sales_bills_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_bills_filters (id, "Code", "Date", "Payment_Method", "Status", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "Safe", "Client", "Executor", "Delegate", "Store", "Coin", "Cost_Center", "User", "Ship", "Shift_Code", "Later_Due", "Later_Collection", "Delivery", "ProfitPrecent", "TaxOnTotal", "TaxOnTotalType", "ProfitTax", "InstallCompany", "ServiceFee", "CompanyPrecent", "Time", "Branch", "CustomerGroup", created_at, updated_at, "Type", "ID") FROM stdin;
\.


--
-- Data for Name: sales_contracts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_contracts (id, "Code", "Date", "System", "Unit", "Client", "Delegate", "Contract_Num", "Value", "Deposit", "Residual", created_at, updated_at, "Safe", "Coin", "Draw", "Recipt") FROM stdin;
\.


--
-- Data for Name: sales_default_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_default_data (id, "Payment_Method", "Status", "V_and_C", "Mainus", "Price_Sale", "Safe", "Client", "Delegate", "Store", "Coin", created_at, updated_at, "Brand", "Group", "English_Name", "Expire", "Draw", "Shift_Pass", "Empp", "Discount", "Delivery", "Execute_Precent", "StoresQty", "DelegateEmp", "TaxType", "DiscountTaxShow", "SalesOrderType", "ECommercceSaleType", "Kitchen_Order", "Waiter", "Hall_Service_Type", "Hall_Service_Precent", "CountryResturantWebsite", "Bank", "Country", "SalesLowCostPrice", "ShowJobOrders", "LimitSalesQty", "Total_Wight_Bill", "Duplicate_Items", "ExecuteEmp", "Hide_Product", "Choice_Collector_POS", "Hide_Discount_POS", "Hide_Edit_Delete", "Daily_Clients", "Location_Conditon", "Show_Image_Print", "InstallmentSystem", "Ecommerce_Sales", "Use_Max_Discount_Group", "ResturantDeliveryDirect", "Quote_Expire_Date", "Quote_Location", "Quote_Desc", "Quote_Care", "Quote_Email", "Quote_Phone", "Warranty_Expire_Date", "Dont_Use_Qty_POS", "Pro_Lenght_Show", "Pro_Height_Show", "Pro_Num_Show", "Pro_Cost_Center_Show") FROM stdin;
4	Cash	1	0	0	1	30	2522	38	21	1	2024-02-08 23:25:10	2025-02-19 14:48:16	\N	\N	\N	\N	1	1234	0	0	41	Total_Cost	0	1	0	0	0	0	2	42	0	12	1	32	2	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
\.


--
-- Data for Name: sales_fifo_qties; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_fifo_qties (id, "Sales_Qty", "Sales_ID", "Fifo_ID", "Store", "Product", "Cost_Price", "Purchases_Date", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: sales_gifts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_gifts (id, "Code", "Date", "Draw", "Note", "Product_Numbers", "Total_Qty", "Total_Price", "Total_Cost", "Client", "Store", "Coin", "Cost_Center", "Edit", "Delete", "Edit_New_Code", "User", created_at, updated_at, "Account") FROM stdin;
\.


--
-- Data for Name: sales_maint_fifo_qties; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_maint_fifo_qties (id, "Sales_Qty", "Sales_ID", "Fifo_ID", "Store", "Product", "Cost_Price", "Purchases_Date", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: sales_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_orders (id, "Code", "Date", "Draw", "Payment_Method", "Status", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", presenter, annual_interest, monthly_installment, "Years_Number", total, "installment_Num", "Date_First_installment", "Quote", "Safe", "Client", "Delegate", "Executor", "Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "ToSales", "Hold", "Later_Due", "Sale_Date", "CuponCode", "Shipping", "Delivery_Status", "Order_Type", "Name", "Email", "Phone", "OtherPhone", "Address_Name", "Special_MarkAdd", "StreetAdd", "BulidingAdd", "FloorAdd", "FlatAdd", "Governrate", "City", "Place", "LocationAdd", "Address_DetailsAdd", "ProfitPrecent", "InstallCompany", "ContractNumber", "PayFees", "ServiceFee", "CompanyPrecent", "Cancel_Order", "Time", "Delegate_Recived", "Delegate_Recived_Time", "To_Sales_Time", "Cancel_Order_Time", "Hold_Qty", "ResturantOrderType", "DeliveryTime", "RecivedOrderTime", "RecivedOrder", "KitchenEndTime", "KitchenEnd", "Witer", "TakeawayStatus", "TakeawayTime", "Table", "Total_Wight_Bill", "TaxBill", "TaxCode", "TaxOnTotal", "TaxOnTotalType", "Check_Type", "Due_Date", "Check_Number", "Shift_Code", "Client_Address", "Delivery", "ProfitTax", "Branch", "CustomerGroup", "Total_Cost", "File", "Edit", "Delete", "Edit_New_Code", "Total_Net", "Residual", "DiscountTax", "Current_Credit", "Ship", "DiscountBill", "Shipping_Price") FROM stdin;
\.


--
-- Data for Name: sales_petrols; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_petrols (id, "Code", "Date", "Draw", "Note", "Counter_Name", "Pervious_Read", "Petrol_Name", "Current_Raed", "Value", "Total", "Consumption", "Cash", "Calibers", "Counter", "Coin", "Safe", "Store", "Recipient", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: sales_subscribes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sales_subscribes (id, "Code", "Date", "Draw", "Payment_Method", "Later_Due", "Product_Numbers", "Total_Price", "Notes", "Coin", "Delegate", "Account", "User", arr, created_at, updated_at, "Safe", "Delete", "Edit", "Edit_New_Code", "Current_Credit") FROM stdin;
\.


--
-- Data for Name: scientific_materials; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.scientific_materials (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
1	ماده ١	ماده ١	2024-01-19 10:58:57	2024-01-19 10:58:57
\.


--
-- Data for Name: secretariat_export_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.secretariat_export_goods (id, "Code", "Date", "Note", "Product_Numbers", "Total_Qty", "Account", "Store", "User", arr, created_at, updated_at, "Status", "StoreGoods", "Total_Recived_Qty", "Total_Price", "Draw", "Coin", "Safe") FROM stdin;
\.


--
-- Data for Name: secretariat_import_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.secretariat_import_goods (id, "Code", "Date", "Note", "Product_Numbers", "Total_Qty", "Account", "Store", "User", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: secretariat_qties; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.secretariat_qties (id, "Product_Code", "P_Ar_Name", "P_En_Name", "V_Name", "VV_Name", "Qty", "Product", "V1", "V2", "Store", "Unit", created_at, updated_at, "PP_Code", "PPP_Code", "PPPP_Code") FROM stdin;
\.


--
-- Data for Name: secretariat_stores; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.secretariat_stores (id, "Arabic_Name", "English_Name", created_at, updated_at, "Account") FROM stdin;
\.


--
-- Data for Name: select_a_p_i_s; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.select_a_p_i_s (id, id_, name, created_at, updated_at) FROM stdin;
1	1	Meet1	2021-08-25 00:43:55	2021-08-25 00:43:55
2	2	Meet 2	2021-08-25 00:43:55	2021-08-25 00:43:55
\.


--
-- Data for Name: server_d_b_s; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.server_d_b_s (id, "DB_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: services_reals; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.services_reals (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: settlements; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.settlements (id, "Code", "Date", "Draw", "Total_Dificit", "Total_Excess", "Total_Dificit_Price", "Total_Excess_Price", "Inv_ID", "Account_Excess", "Account_Dificit", "Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "Note", "Time", "Branch") FROM stdin;
\.


--
-- Data for Name: sewing_accessories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_accessories (id, "Product", "Qty", "Price", "Total", "Cost", "TotalCost", "SewingOrder", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: sewing_al_kabkat; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_al_kabkat (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_al_taktak; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_al_taktak (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_buttons; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_buttons (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_chest_pocket_fillings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_chest_pocket_fillings (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_chest_pockets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_chest_pockets (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_collar_paddings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_collar_paddings (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_collars; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_collars (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_cseed_sleeves; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_cseed_sleeves (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_cupcake_fillings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_cupcake_fillings (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_embroideries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_embroideries (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_order_modules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_order_modules (id, "Sleeves", "CseedSleeves", "AlKabkat", "AlTaktak", "SidePocket", "CupcakeFilling", "Collar", "CollarPadding", "ChestPocket", "ChestPocketFilling", "Seeds", "SeedFilling", "Embroidery", "Buttons", "SewingOrder", created_at, updated_at, "DXF_File", "Kabak_Sewing", "Product", "Product_Cost") FROM stdin;
\.


--
-- Data for Name: sewing_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_orders (id, "Code", "Date", "Time", "RecivedDate", "Draw", "Payment_Method", "Status", "Refernce_Number", "Notes", "Qty", "DXF_Height_cm", "SizeName", "L", "LB", "B", "S", "AH", "CH", chest_full, "BK", "HD", cuff, gusset_len, gusset_width_mm, front, net_chest, neck_size, front_shoulder_height, shoulder_height, back_neck_depth, front_neck_depth, back_down_shoulder, shoulder_opening, hand_cuff, arm_rotation, arm_length, arm_elbow_width, neck_height, "Pocket_chest_height", neck_height_qalap, hand_length_kabk, hand_rotation_kabk, "Total_Price", "TotalTax", "Total_af_Tax", "Discount", "Total_Af_Discount", "The_Net", "Pay", "DXF_File", "Branch", "RecivedBranch", "Safe", "Coin", "Cost_Center", "Delegate", "Client", "Product", "SewingType", "TaxType", created_at, updated_at, "User", "Execute", "Kabak_Width", "Kabak_Sewing", "SewingSort", "TotalCost", "Done_Pay", neck_size_qalap, "B_Net", "BK_Net", "HD_Net", "IshtakTopWidth", "IshtakBottomWidth", "SideTopWidth", "SideBottomWidth") FROM stdin;
\.


--
-- Data for Name: sewing_request_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_request_details (id, "SewingRequest", "Type", "Product", "Qty", "Price", "Total", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: sewing_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_requests (id, "Code", "Date", "Time", "RecivedDate", "Draw", "Payment_Method", "Status", "Refernce_Number", "Notes", "Total_Price", "TotalTax", "Total_af_Tax", "Discount", "Total_Af_Discount", "The_Net", "Pay", "SewingSort", "Qty", "SewingCost", "Branch", "RecivedBranch", "Safe", "Coin", "Cost_Center", "Delegate", "Client", "TaxType", "User", "SewingOrderID", "Transferred", created_at, updated_at, "OutsideSewingType") FROM stdin;
\.


--
-- Data for Name: sewing_seed_fillings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_seed_fillings (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_seeds; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_seeds (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_side_pockets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_side_pockets (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Delete", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_sleeves; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_sleeves (id, "Arabic_Name", "English_Name", "Image", "SewingType", created_at, updated_at, "Guest", "Delete", "Type", "Sort_Order") FROM stdin;
\.


--
-- Data for Name: sewing_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sewing_types (id, "Arabic_Name", "English_Name", "Image", "Status", created_at, updated_at, "Price_Normal", "Price_Urgent", "Max_Price", "Min_Price", "Sewing_Price_Normal", "Sewing_Price_Urgent", "Sewing_Max_Price", "Sewing_Min_Price") FROM stdin;
\.


--
-- Data for Name: shifts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shifts (id, "Code", "Date", "Note", "Total_Cash", "Total_Later", "Total_Visa", "Total", "Pass", "Emp", "User", arr, created_at, updated_at, "Close", "Amount", "Total_Recipt", "Total_Payment", "Store", "Safe", "Total_Later_Not_Paid", "Total_Later_Paid", "Total_Installment", "Total_Checks", "Total_Delivery", "Total_Installment_Companies", "Close_Date", "Open_Amount", "Open_Note", "Apps") FROM stdin;
\.


--
-- Data for Name: shipment_moves; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipment_moves (id, "Code", "Barcode", "Date", "Time", "Sender", "Sender_Name", "Reciver", "Reciver_Name", "Status", "Status_Code", "Delegate", "Driver", "Note", "User", "Shipment_ID", created_at, updated_at, "Shipment_Dist_ID", "Shipment_Unload_ID", "Shipment_Recived_ID") FROM stdin;
\.


--
-- Data for Name: shipment_receipts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipment_receipts (id, "Recived_Store", "Code", "Date", "Total_Cash", "Total_Later", "Total_Price", "Tickets_Numbers", "Status", "ShippingList", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: shipment_receipts_clients; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipment_receipts_clients (id, "Code", "Date", "ShipmentReceipts", "ShipmentReceiptsList", "Total_Price", "Total_Qty", "Pay", "Payment_Method", "Safe", "Coin", "Draw", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: shipment_receipts_lists; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipment_receipts_lists (id, "Shipping_List", "Code", "Sender_Name", "Addressees_Name", "Total_Qty", "Total_Price", "Payment_Method", "Notes", "Ticket", "ShipmentReceipts", "Status", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: shipment_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipment_requests (id, "Code", "Date", "Time", "Status", "Pieces_Num", "Desc", "Weight", "Length", "Width", "Height", "Note", "Payment_Method", "Breakable", "Delivery_To_Others", "Opening_Package", "Sender_Name", "Sender_Governorate", "Sender_City", "Sender_Place", "Sender_Address", "Sender_Phone1", "Sender_Phone2", "Sender_Location", "Receiver_Name", "Receiver_Governorate", "Receiver_City", "Receiver_Place", "Receiver_Address", "Receiver_Phone1", "Receiver_Phone2", "Receiver_Location", "Delegate", "Sender", "Received", "Shipment_Cost", "Total", "User", "Pay", "Safe", "Coin", "Draw", "Transfer", created_at, updated_at, "Shipment_Type", "Receipt_Date", "Receipt_Time", "Arrival_Date", "Arrival_Time") FROM stdin;
\.


--
-- Data for Name: shipments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipments (id, "Code", "Date", "Time", "Arrival_Date", "Arrival_Time", "Barcode", "Status", "Pieces_Num", "Desc", "Reference_Num", "Weight", "Length", "Width", "Height", "Note", "Shipment_Class", "Payment_Method", "Breakable", "Delivery_To_Others", "Shipping_Costs_Included", "Opening_Package", "Sender_Name", "Sender_Governorate", "Sender_City", "Sender_Place", "Sender_Address", "Sender_Phone1", "Sender_Phone2", "Sender_Location", "Receiver_Name", "Receiver_Governorate", "Receiver_City", "Receiver_Place", "Receiver_Address", "Receiver_Phone1", "Receiver_Phone2", "Receiver_Location", "Delegate", "Driver", "Sender", "Received", "Shipment_Type", "Shipment_Rqst_Type", "Shipment_Category", "Shipment_Cost", "Goods_Cost", "Delivery_Cost", "Overload_Weight_Cost", "Collection_Commission", "Delivery_Commission", "Return_Cost", "Total", created_at, updated_at, "User", "Pay", "Insurance", "Safe", "Coin", "Draw", "Store", "Car", "ToStore") FROM stdin;
\.


--
-- Data for Name: shipments_distribution_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipments_distribution_goods (id, "Shipment_ID", "Code", "Total_Weight", "Total_Cost", "ShipmentsDistribution", created_at, updated_at, "Barcode", "Total_Pieces", "Status") FROM stdin;
\.


--
-- Data for Name: shipments_distribution_workers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipments_distribution_workers (id, "Worker", "ShipmentsDistribution", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: shipments_distributions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipments_distributions (id, "Code", "Date", "Time", "Safe", "Coin", "Draw", "FromStore", "ToStore", "Car", "Delegate", "Driver", "Total_Pieces", "Total_Weight", "Total_Cost", "Status", "User", created_at, updated_at, "Count_Shipmets", "DriverPrecent") FROM stdin;
\.


--
-- Data for Name: shipping_companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipping_companies (id, "Name", "Phone", "Tax_Card", "Commercial_Register", "Account", created_at, updated_at, "NameEn") FROM stdin;
5	زاجل	\N	\N	\N	2524	2024-02-09 00:41:56	2024-02-09 00:41:56	Zagel
\.


--
-- Data for Name: shipping_defaults; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipping_defaults (id, "Breakable", "Coin", created_at, updated_at, "Safe", "Payment_Method", "Shipment_Class", "Opening_Package", "Shipment_Type", "Shipment_Category", "Delivery_To_Others", "Shipping_Costs_Included", "Insurance", "Draw", "Store") FROM stdin;
1	Yes	1	2022-07-11 21:06:06	2026-01-14 12:22:57	30	Cash	Hub	Yes	Shipping	1	Yes	Yes	Yes	1	21
\.


--
-- Data for Name: shipping_list_tickets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipping_list_tickets (id, "Shipping_List", "Code", "Sender_Name", "Addressees_Name", "Total_Qty", "Total_Price", "Payment_Method", "Notes", created_at, updated_at, "Ticket") FROM stdin;
\.


--
-- Data for Name: shipping_lists; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipping_lists (id, "Ticket_Store", "Driver", "Car_Store", "Travel_Area", "Access_Area", "Date_Travel", "Date_Arrival", "Car_Number", "Code", "Date", "Total_Cash", "Total_Later", "Total_Price", "Tickets_Numbers", created_at, updated_at, "Status") FROM stdin;
\.


--
-- Data for Name: shipping_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipping_orders (id, "Code", "Date", "Weight", "Number", "Goods_Price", "Shipping_Price", "Total", "Breakable", "Note", "Draw", "Coin", "Cost_Center", "Vend", "Cli", "Open", "Paid", "Ship_Sort", "Adderss", "Requests", "Sure", "Safe", "Residual", "Emp_Note", "Shipping_Delegate", "Cancel", "Cancel_Note", "Cancel_Pay", "Cancel_Not_Pay", "Vendor_Shipping", "Request_Done", "Status", "Type", "Delegate", "Vendor", "Client", arr, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: shipping_prices; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipping_prices (id, "Place", "City", created_at, updated_at, "From", "To", "Price") FROM stdin;
\.


--
-- Data for Name: shipping_statuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipping_statuses (id, "Arabic_Name", "English_Name", "Color", created_at, updated_at) FROM stdin;
1	تامة	Done	#4eca21	2022-07-11 21:11:29	2024-02-09 01:10:16
\.


--
-- Data for Name: shipping_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shipping_types (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
1	شحنة افتراضية	Default Shipping	2022-07-11 21:11:11	2024-02-09 01:08:23
\.


--
-- Data for Name: shippment_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shippment_products (id, "P_Code", "P_Ar_Name", "P_En_Name", "V1", "V2", "V_Name", "VV_Name", "AvQty", "Qty", "Price", "Total", "Store", "Product", "Unit", "Shipment", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: shortcomings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.shortcomings (id, "Code", "Date", "Draw", "Payment_Method", "Status", "Vendor_Bill_Date", "Refernce_Number", "Note", "Product_Numbers", "Total_Qty", "Total_Discount", "Total_BF_Taxes", "Total_Taxes", "Total_Price", "Pay", "ToPurch", "Safe", "Vendor", "Delegate", "Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "Purch_Date", "Purch_Reason", "ShipStatus", "P_Order_Num", "Ship", "Check_Type", "Due_Date", "Check_Number", "Later_Due", "Sent", "TaxBill", "TaxCode", "Time", "Branch", "CustomerGroup", "File", "Current_Credit", "Residual", "Total_Net", "Edit", "Delete", "Edit_New_Code") FROM stdin;
\.


--
-- Data for Name: show_print_defaults; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.show_print_defaults (id, "CompanyName", "ProductName", "ProductPrice", "Coin", "Unit", "Group", "Code", "Logo", created_at, updated_at) FROM stdin;
1	0	1	1	1	0	0	1	0	\N	2026-01-14 12:23:27
\.


--
-- Data for Name: social_media; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.social_media (id, "Facebook", "Twitter", "Instagram", "Youtube", "Snapchat", "Whatsapp", "Google_Plus", "LinkedIn", "Pinterest", "Telegram", "iOS", "Android", created_at, updated_at) FROM stdin;
1	https://www.facebook.com/	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2022-06-04 15:15:33
\.


--
-- Data for Name: special_cases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.special_cases (id, "Arabic_Name", "English_Name", "Discount", created_at, updated_at) FROM stdin;
1	حالة ١	حالة ١	10	2024-01-19 11:01:23	2024-01-19 11:01:23
2	حاله ٢	حاله ٢	20	2024-01-19 11:01:42	2024-01-19 11:01:42
\.


--
-- Data for Name: spend_profits; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.spend_profits (id, "Code", "Date", "Draw", "Amount", "Remaining_Profit", "Partner", "Safe", "Coin", "Cost_Center", "User", created_at, updated_at, "Payment_Method") FROM stdin;
\.


--
-- Data for Name: start_periods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.start_periods (id, "Code", "Date", "Draw", "Note", "Total_Products", "Total_Qty", "Total_Price", "Store", "Coin", "User", arr, created_at, updated_at, "Time", "Branch", "Edit", "Delete", "Edit_New_Code") FROM stdin;
\.


--
-- Data for Name: store_count_sales; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.store_count_sales (id, "Store", "Total", created_at, updated_at, "Tax") FROM stdin;
1	4	1000	2022-06-25 18:29:42	2022-06-25 18:29:42	1
\.


--
-- Data for Name: store_counts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.store_counts (id, "Store", "Total", created_at, updated_at, "Tax") FROM stdin;
1	4	640.00	2022-06-29 12:26:39	2022-06-29 12:26:39	1
\.


--
-- Data for Name: store_transfer_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.store_transfer_filter_twos (id, "Code", "Date", "Draw", "Total", "TotalQty", "Note", "From_Store", "To_Store", "Coin", "Cost_Center", "User", "Status", "Ship", "CostShip", "RecivedShip", "OldQty", "Edit", "Delegate", "Time", "Type", "ID", created_at, updated_at, "Branch") FROM stdin;
\.


--
-- Data for Name: store_transfer_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.store_transfer_filters (id, "Code", "Date", "Draw", "Total", "TotalQty", "Note", "From_Store", "To_Store", "Coin", "Cost_Center", "User", "Status", "Ship", "CostShip", "RecivedShip", "OldQty", "Edit", "Delegate", "Time", "Type", "ID", created_at, updated_at, "Branch") FROM stdin;
\.


--
-- Data for Name: stores; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores (id, "Date", "Time", "Name", "Phone", "Address", "Account", "User", created_at, updated_at, "Code", "Branch", "Letter", "Account_Client", "NameEn", "Lat", "Lang") FROM stdin;
20	2023-08-30	11:11:31 am	مخزن الطلبات	\N	\N	2499	11	2023-08-30 11:11:31	2023-08-30 11:11:31	4	3	\N	\N	Requests Store	\N	\N
21	2024-02-08	11:43:55 pm	المخزن الرئيسي	\N	\N	2500	11	2024-02-08 23:43:55	2024-02-08 23:43:55	5	3	M	2501	Main Store	\N	\N
\.


--
-- Data for Name: stores_default_data; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores_default_data (id, "Group", "Unit", "Tax", "Coin", "Account_Excess", "Account_Dificit", "Store", created_at, updated_at, "Type", "Style", "StoresTarnsferPrice", "Guide_Product_Cost", "Client_Store_Account", "Show_Ship", "StoresTarnsferHide", "CodeType", "ReturnStoresTransfer", "Cost_Price", "Hide_Product", "StartPeriod_Show_Product", "Fictitious_Quantities", "Qty_With_Add_Product") FROM stdin;
3	33	10	1	1	45	45	21	2022-04-13 02:46:29	2026-01-14 12:23:27	Completed	6	0	0	0	0	0	GS1	0	1	0	0	0	0
\.


--
-- Data for Name: stores_moves; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores_moves (id, "Date", "Code", "Time", "Branch", "Type", "Note", "Total_Qty", "Total_Price", "Ship", "ID", created_at, updated_at, "Store", "Cost_Center", "User", "Coin", "Account", "Safe", "TypeEn", "Delete", "Edit", "Edit_New_Code") FROM stdin;
\.


--
-- Data for Name: stores_moves_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores_moves_columns (id, "Date", "Code", "Time", "Branch", "Store", "Safe", "Type", "Cost_Center", "User", "Coin", "Note", "Total_Qty", "Total_Price", "Account", "Ship", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-08 10:59:05
\.


--
-- Data for Name: stores_moves_columns_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores_moves_columns_sechdules (id, "Date", "Code", "Time", "Branch", "Store", "Safe", "Type", "Cost_Center", "User", "Coin", "Note", "Total_Qty", "Total_Price", "Account", "Ship", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-08 11:10:10
\.


--
-- Data for Name: stores_moves_filter_twos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores_moves_filter_twos (id, "Date", "Code", "Time", "Branch", "Store", "Safe", "Type", "Cost_Center", "User", "Coin", "Note", "Total_Qty", "Total_Price", "Account", "Ship", "ID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: stores_moves_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores_moves_filters (id, "Date", "Code", "Time", "Branch", "Store", "Safe", "Type", "Cost_Center", "User", "Coin", "Note", "Total_Qty", "Total_Price", "Account", "Ship", "ID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: stores_transfer_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores_transfer_columns (id, "Date", "Code", "Time", "Amount", "From_Store", "To_Store", "User", "Coin", "Shipping", "Note", "Delegate", "Product_Name", "Product_Code", "Group", "Brand", "Qty", "Price", "Trans_Qty", "Unit", "Total", created_at, updated_at, "Branch") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-06 11:34:30	1
\.


--
-- Data for Name: stores_transfer_columns_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stores_transfer_columns_sechdules (id, "Date", "Code", "Time", "Amount", "From_Store", "To_Store", "User", "Coin", "Shipping", "Note", "Delegate", "Product_Name", "Product_Code", "Group", "Brand", "Qty", "Price", "Trans_Qty", "Unit", "Total", created_at, updated_at, "Branch") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	\N	1	1	1	\N	\N	\N	\N	\N	\N	\N	2022-10-06 16:01:07	1
\.


--
-- Data for Name: stors_transfers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.stors_transfers (id, "Code", "Date", "Draw", "Total", "Note", "From_Store", "To_Store", "Coin", "Cost_Center", "User", arr, created_at, updated_at, "TotalQty", "Status", "CostShip", "RecivedShip", "OldQty", "Edit", "Time", "Branch", "Total_Cost", "TypeTransfer", "Cost_Store", "Delegate", "Ship", "File", "Edit_t", "Delete", "Edit_New_Code") FROM stdin;
\.


--
-- Data for Name: student_groups; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.student_groups (id, "Image", "Arabic_Name", "English_Name", "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
1	CoursesCategoryImages/XVfEEtMUenIcGa9rp3pT.png	مجموعة ١	مجموعة ١	مجموعة ١	مجموعة ١	2024-01-19 10:59:57	2024-01-19 10:59:57
\.


--
-- Data for Name: student_importants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.student_importants (id, created_at, updated_at, "Student", "Course") FROM stdin;
\.


--
-- Data for Name: students; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.students (id, "Code", "Arabic_Name", "English_Name", "Group", "Phone1", "Phone2", "Dad_Phone", "Mom_Phone", "Special_Case", "Case", "Email", "Whatsapp", "Age", "Gov", "City", "Place", "Nationality", "Address", "Profession", "Ntional_ID", "Account", created_at, updated_at) FROM stdin;
1	1	Mahmoud	Hoda	1	1123123	3123	23	234345	1	1	Suka@test.com	44	44	2	1	4	2	qweqweqwe	asdas	qweqwe	2542	2024-01-20 23:34:34	2024-01-20 23:34:34
\.


--
-- Data for Name: sub_images; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sub_images (id, "Image", "Product", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: sub_virables; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sub_virables (id, "Name", "V_ID", created_at, updated_at, "NameEn") FROM stdin;
19	128G	9	2022-06-09 05:45:09	2024-02-09 00:29:31	128G
20	256G	9	2022-06-09 05:45:17	2024-02-09 00:29:41	256G
21	64G	9	2022-06-09 05:45:25	2024-02-09 00:29:51	64G
13	احمر	7	2022-06-09 05:43:53	2024-02-09 00:30:14	Red
14	ازرق	7	2022-06-09 05:44:01	2024-02-09 00:30:24	Blue
15	اسود	7	2022-06-09 05:44:09	2024-02-09 00:30:33	Black
17	لارج	8	2022-06-09 05:44:43	2024-02-09 00:31:49	L
16	سمال	8	2022-06-09 05:44:37	2024-02-09 00:32:24	S
18	ميديم	8	2022-06-09 05:44:51	2024-02-09 00:32:39	M
\.


--
-- Data for Name: subscribe_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.subscribe_types (id, "Name", created_at, updated_at, "NameEn") FROM stdin;
2	شهري	2024-02-09 00:34:34	2024-02-09 00:34:34	Monthly
3	ربع سنوي	2024-02-09 00:34:59	2024-02-09 00:36:25	Quarterly
4	نصف سنوي	2024-02-09 00:37:01	2024-02-09 00:37:01	Mideterm
5	سنوي	2024-02-09 00:37:29	2024-02-09 00:37:29	Annual
\.


--
-- Data for Name: sup_pages_e_com_designs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sup_pages_e_com_designs (id, "About_Title_Color", "About_Txt_Color", "Blogs_Title_Color", "Blogs_Txt_Color", "Blogs_Hover_Txt_Color", "Contact_Title_Color", "Contact_Txt_Color", "Contact_Form_Input_Border_Color", "Contact_Form_Input_Txt_Color", "Contact_Form_Button_BG_Color", "Contact_Form_Button_Txt_Color", "Contact_Form_Button_Hover_BG_Color", "Contact_Form_Button_Hover_Txt_Color", "Faq_Title_Color", "Faq_Q_BG_Color", "Faq_Q_Txt_Color", "Faq_A_Line_Color", "Faq_A_BG_Color", "Faq_A_Txt_Color", "MyAccount_Box_BG_Color", "MyAccount_Box_Button_BG_Color", "MyAccount_Box_Button_Txt_Color", "MyAccount_Box_Button_Hover_BG_Color", "MyAccount_Box_Button_Hover_Txt_Color", "MyAccount_Box_Input_Border_Color", "MyAccount_Box_Input_Txt_Color", created_at, updated_at) FROM stdin;
1	#113366	#000000	#000000	#000000	#ad0000	#000000	#000000	#113366	#000000	#113366	#ffffff	#000000	#ffffff	#000000	#ffffff	#000000	#113366	#ffffff	#000000	#ffffff	#113366	#ffffff	#cc0000	#ffffff	#113366	#113366	2023-09-01 18:44:33	2023-09-02 13:16:04
\.


--
-- Data for Name: sup_pages_part_two_e_com_designs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sup_pages_part_two_e_com_designs (id, "Shop_Product_BG_Color", "Shop_Product_Group_BG_Color", "Shop_Product_Group_Txt_Color", "Shop_Product_Group_Hover_BG_Color", "Shop_Product_Group_Hover_Txt_Color", "Shop_Product_Icon_BG_Color", "Shop_Product_Icon_Txt_Color", "Shop_Product_Icon_Hover_BG_Color", "Shop_Product_Icon_Hover_Txt_Color", "Shop_Product_Txt_Color", "Shop_Product_Price_Color", "Shop_Product_Rate_Color", "Shop_Filter_Title_Color", "Shop_Filter_Txt_Color", "Shop_Filter_Search_BG_Color", "Shop_Filter_Search_Icon_BG_Color", "Shop_Filter_Search_Icon_Txt_Color", "Shop_Filter_Search_Icon_BG_Hover_Color", "Shop_Filter_Search_Icon_Txt_Hover_Color", "Cart_Button_BG_Color", "Cart_Button_Txt_Color", "Cart_Button_BG_Hover_Color", "Cart_Button_Txt_Hover_Color", "Cart_Box_BG_Color", "Cart_Box_Title_Color", "Cart_Box_Txt_Color", "Cart_Box_Button_BG_Color", "Cart_Box_Button_Txt_Color", "Cart_Box_Button_BG_Hover_Color", "Cart_Box_Button_Txt_Hover_Color", "Cart_Cupon_Button_BG_Color", "Cart_Cupon_Button_Txt_Color", "Cart_Cupon_Button_BG_Hover_Color", "Cart_Cupon_Button_Txt_Hover_Color", "Cart_Cupon_Input_BG_Color", "Checkout_Box_BG_Color", "Checkout_Box_Title_Color", "Checkout_Box_Txt_Color", "Checkout_Box_Button_BG_Color", "Checkout_Box_Button_Txt_Color", "Checkout_Box_Button_BG_Hover_Color", "Checkout_Box_Button_Txt_Hover_Color", "Checkout_Head_BG_Color", "Checkout_Head_Txt_Color", "Checkout_Input_BG_Color", "Checkout_Input_Txt_Color", "Reg_Login_Form_Box_BG_Color", "Reg_Login_Form_Box_Title_Color", "Reg_Login_Form_Box_Txt_Color", "Reg_Login_Form_Box_Txt_Hover_Color", "Reg_Login_Form_Box_Input_Border_Color", "Reg_Login_Form_Box_Button_BG_Color", "Reg_Login_Form_Box_Button_Txt_Color", "Reg_Login_Form_Box_Button_BG_Hover_Color", "Reg_Login_Form_Box_Button_Txt_Hover_Color", created_at, updated_at) FROM stdin;
1	#ffffff	#113366	#ffffff	#850000	#ffffff	#ffffff	#113366	#113366	#ffffff	#000000	#000000	#ffb607	#000000	#000000	#ffffff	#d4d4d4	#b80000	#cc0000	#ffffff	#113366	#ffffff	#000000	#ffffff	#ffffff	#000000	#000000	#113366	#ffffff	#ffffff	#113366	#000000	#ffffff	#113366	#ffffff	#ffffff	#ffffff	#000000	#000000	#113366	#ffffff	#ffffff	#113366	#ffffff	#113366	#ffffff	#000000	#113366	#ffffff	#ffffff	#c20000	#ffffff	#ffffff	#113366	#990a00	#ffffff	2023-09-01 18:44:45	2023-09-02 16:00:29
\.


--
-- Data for Name: sup_pages_wish_comp_e_com_designs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sup_pages_wish_comp_e_com_designs (id, "Wish_Title_BG_Color", "Wish_Title_Txt_Color", "Wish_Box_BG_Color", "Wish_Box_Border_Color", "Wish_Box_Border_Type", "Wish_Box_Txt_Color", "Wish_Box_Button_BG_Color", "Wish_Box_Button_Txt_Color", "Wish_Box_Button_BG_Hover_Color", "Wish_Box_Button_Txt_Hover_Color", "Compare_Box_BG_Color", "Compare_Box_Txt_Color", "Compare_Box_Price_Hover_Color", "Compare_Box_Delete_Txt_Color", created_at, updated_at) FROM stdin;
1	#ffffff	#000000	#ffffff	#000000	1	#000000	#113366	#ffffff	#ffffff	#113366	#ffffff	#113366	#8a0000	#a80000	2023-09-01 18:45:09	2023-09-02 14:15:53
\.


--
-- Data for Name: taxes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.taxes (id, "Code", "Name", "Rate", "Type", created_at, updated_at, "Hide", "Account", arr, "CodeTax", "SubType", "NameEn") FROM stdin;
1	1	بدون ضريبة	0	2	2021-07-01 07:16:47	2021-07-01 07:16:47	1	112	\N	\N	\N	No Tax
2	2	القيمة المضافة	14	1	2021-07-01 07:17:08	2024-02-14 23:10:57	0	40	\N	T1	V009	VAT
\.


--
-- Data for Name: teachers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.teachers (id, "Code", "Arabic_Name", "English_Name", "Image", "Work_Type", "Hour_Price", "Qualification", "Qualification_Attach", "National_ID", "National_ID_Attach", "CV", "Nationality", "Gov", "City", "Place", "Address", "Age", "Phone1", "Phone2", "Whatsapp", "Facebook", "Instagram", "Linked", "Telegram", "Arabic_Bio", "English_Bio", "Marital_Status", "Account", "Covenant", "Commission", "Merit", "Account_Emp", created_at, updated_at) FROM stdin;
2	2	Full Name	Full Name	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	54	2536	2535	2537	2534	2024-01-20 14:51:53	2024-01-20 14:51:53
3	3	مدير ١	مدير ١	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	54	2540	2539	2541	2538	2024-01-20 14:52:50	2024-01-20 14:52:50
1	1	Ahmed	AHmed	EmployeesImages/T5ehNLC4xg0Sr4WbxiSk.jpg	2	1	1	EmployeesImages/icbDDI8d8P14YhCsLw7x.jpg	1	EmployeesImages/DsB7y4aLxGTucxZp09jT.jpg	EmployeesImages/BAWJ3aczB3S84OjF9cRy.jpg	2	2	1	4	1	1	1	1	1	1	1	1	1	1	1	Single	54	2532	2531	2533	2530	2024-01-20 14:09:35	2024-01-20 15:35:23
\.


--
-- Data for Name: teachers_groups; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.teachers_groups (id, "Teacher", "Group", created_at, updated_at) FROM stdin;
1	1	1	2024-01-20 15:35:23	2024-01-20 15:35:23
\.


--
-- Data for Name: teachers_subjects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.teachers_subjects (id, "Teacher", "Subject", created_at, updated_at) FROM stdin;
2	2	1	2024-01-20 14:51:53	2024-01-20 14:51:53
4	1	1	2024-01-20 15:35:23	2024-01-20 15:35:23
\.


--
-- Data for Name: tenants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.tenants (id, created_at, updated_at, data) FROM stdin;
\.


--
-- Data for Name: terms; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.terms (id, "Arabic_Desc", "English_Desc", created_at, updated_at) FROM stdin;
2	1	1	\N	\N
\.


--
-- Data for Name: terms_maintainces; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.terms_maintainces (id, "Desc_Work", "Desc_Not_Work", created_at, updated_at, "Desc_Work_En", "Desc_Not_Work_En") FROM stdin;
2	1	1	\N	2024-02-09 01:05:29	1	1
\.


--
-- Data for Name: testclients; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.testclients (id, "Name", "Governrate", "City", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: ticekt_issues; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ticekt_issues (id, "Arabic_Name", "English_Name", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: ticket_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ticket_products (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Price", "Weight", "Length", "Width", "Height", "Qty", "Unit", "Total", "Store", "Product", "Ticket", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: tickets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.tickets (id, "Code", "Date", "Payment_Method", "Sender_Name", "Sender_Address", "Sender_Phone", "Addressees_Name", "Addressees_Address", "Addressees_Phone", "Notes", "Sub_Total", "Discount", "Total", "Store", "Safe", "Recived", "Selected", "Coin", "Draw", "Product_Numbers", "Total_Qty", arr, created_at, updated_at, "Access_Area", "TicketIssues") FROM stdin;
\.


--
-- Data for Name: translation_tourism_companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.translation_tourism_companies (id, "Arabic_Name", "English_Name", "Precent", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: translte_modules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.translte_modules (id, "Code", "Date", "Arabic_Name", "English_Name", "Lang", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: translte_modules_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.translte_modules_details (id, "Arabic_Text", "Translate_Text", "Module", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: transltors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.transltors (id, "Original_Name", "New_Arabic_Name", "New_English_Name", created_at, updated_at) FROM stdin;
5	Price_One	السعر الاول	Price One	2022-04-14 10:08:49	2022-04-14 10:40:54
6	Code	الكود	Code	2022-04-14 10:09:41	2022-04-14 10:41:11
7	Accounting_Manual	الدليل المحاسبي	Accounting Manual	2022-04-14 10:44:21	2022-04-14 10:44:21
45	Stores	المخازن	Stores	\N	\N
46	Store	المخزن	Store	\N	\N
47	Qty	الكميه	Qty	\N	\N
4	infinite	لا نهائي	infinite	2022-04-08 00:09:45	2022-04-08 00:09:45
9	Start_Period_Sechdule	جدول اصناف بداية فترة	Start Period Sechdule	2022-04-14 10:59:59	2022-04-14 10:59:59
10	Ledger	دفتر الاستاذ	Ledger	2022-04-14 10:59:59	2022-04-14 10:59:59
11	Incom_List	قائمة الدخل	Incom List	2022-04-14 10:59:59	2022-04-14 10:59:59
12	Financial_Center	قائمة المركز المالي	Financial Center	2022-04-14 10:59:59	2022-04-14 10:59:59
13	Add_Items	اضافة اصناف	Add Items	2022-04-14 10:59:59	2022-04-14 10:59:59
14	Items_Guide	دليل الأصناف	Items Guide	2022-04-14 10:59:59	2022-04-14 10:59:59
15	Stores	المخازن	Stores	2022-04-14 10:59:59	2022-04-14 10:59:59
16	Measurement_Units	وحدات القياس	Measurement Units	2022-04-14 10:59:59	2022-04-14 10:59:59
17	Items_Groups	مجموعة الأصناف	Items Groups	2022-04-14 10:59:59	2022-04-14 10:59:59
19	Virables	المتغيرات	Virables	2022-04-14 10:59:59	2022-04-14 10:59:59
20	Sub_Virables	المتغيرات الفرعية	Sub Virables	2022-04-14 10:59:59	2022-04-14 10:59:59
21	Inventory_Sechdule	جدول الجرد	Inventory Sechdule	2022-04-14 10:59:59	2022-04-14 10:59:59
22	Settlement_Sechdule	جدول التسوية	Settlement Sechdule	2022-04-14 10:59:59	2022-04-14 10:59:59
23	Products_Sechdule	جدول الأصناف	Products Sechdule	2022-04-14 10:59:59	2022-04-14 10:59:59
24	Permission_to_exchange_goods	اذن صرف البضاعة	Permission to exchange goods	2022-04-14 10:59:59	2022-04-14 10:59:59
25	Permission_to_receive_goods	اذن استلام بضاعة	Permission to receive goods	2022-04-14 10:59:59	2022-04-14 10:59:59
28	Consists	تالف	Consists	2022-04-14 10:59:59	2022-04-14 10:59:59
29	ConsistsSechdule	جدول التوالف	Consists Sechdule	2022-04-14 10:59:59	2022-04-14 10:59:59
31	Projects	المشاريع	Projects	2022-04-14 10:59:59	2022-04-14 10:59:59
32	Missions	المهام	Missions	2022-04-14 10:59:59	2022-04-14 10:59:59
33	PurchasesOrder	آمر الشراء	Purchases Order	2022-04-14 10:59:59	2022-04-14 10:59:59
34	PurchasesOrderSechdule	جدول آوامر الشراء	Purchases Order Sechdule	2022-04-14 10:59:59	2022-04-14 10:59:59
35	ReciptMaintaince	سند استلام صيانة	Recipt Maintaince	2022-04-14 10:59:59	2022-04-14 10:59:59
38	Unit	الوحدة	Unit	2022-04-14 10:59:59	2022-04-14 10:59:59
36	ReciptMaintainceSechdule	جدول سندات الاستلام	Recipt Maintaince Sechdule	2022-04-14 10:59:59	2022-04-14 10:59:59
37	DeviceDescrips	اوصاف الأجهزة	Device Descrips	2022-04-14 10:59:59	2022-04-14 10:59:59
39	Barcode	باركود	Barcode	2022-04-14 10:59:59	2022-04-14 10:59:59
40	Price_Two	السعر الثاني	Price Two	2022-04-14 10:59:59	2022-04-14 10:59:59
41	Price_Three	السعر الثالث	Price Three	2022-04-14 10:59:59	2022-04-14 10:59:59
42	Minimum	الحد الأدنى	Minimum	2022-04-14 10:59:59	2022-04-14 10:59:59
43	Maximum	الحد الأقصى	Maximum	2022-04-14 10:59:59	2022-04-14 10:59:59
44	Account_Credit	رصيد الحساب	Account_Credit	2022-04-14 10:59:59	2022-04-14 10:59:59
8	Assets	الأصول الثابتة	Assets	2022-04-14 10:44:59	2024-02-09 00:45:58
30	Activites	الانشطة	Activites	2022-04-14 10:59:59	2024-02-09 00:46:27
26	ReceiveGoodsSechdule	جدول استلام البضاعة	Receive Goods Sechdule	2022-04-14 10:59:59	2024-02-09 00:47:13
27	ExchangeGoodsSechdule	جدول صرف البضاعة	Exchange Goods Sechdule	2022-04-14 10:59:59	2024-02-09 00:47:34
18	Manufacture	الماركات	Brands	2022-04-14 10:59:59	2024-02-09 00:48:18
\.


--
-- Data for Name: transport_contractors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.transport_contractors (id, "Arabic_Name", "English_Name", "Phone", "Gov", "City", "Place", "Account", created_at, updated_at, "Merit_Account") FROM stdin;
\.


--
-- Data for Name: transport_permit_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.transport_permit_details (id, "Statement", "Qty", "Note", "Permit", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: transport_permits; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.transport_permits (id, "Code", "Date", "Time", "Address", "Client", "Note", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: transport_prices; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.transport_prices (id, "From_Place", "To_Place", "Value", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: transport_receivers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.transport_receivers (id, "Arabic_Name", "English_Name", "Phone", "Phone2", "Gov", "City", "Place", "Address", "Location", "Client", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: transports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.transports (id, "Code", "Date", "Time", "Arrival_Date", "Arrival_Time", "Reference_Num", "Weight", "Note", "Payment_Method", "Insurance", "Pay", "Value", "Type", "Sender_Name", "Sender_Governorate", "Sender_City", "Sender_Place", "Sender_Address", "Sender_Phone1", "Sender_Phone2", "Sender_Location", "Receiver_Name", "Receiver_Governorate", "Receiver_City", "Receiver_Place", "Receiver_Address", "Receiver_Phone1", "Receiver_Phone2", "Receiver_Location", "Safe", "Coin", "Draw", "Cost_Center", "Driver", "Car", "Driver_Precent", "Driver_Value", "Contractor", "Contractor_Precent", "Contractor_Value", "Sender", "Received", created_at, updated_at, "Expenses_Value", "Expenses_Precent", "The_Net", "Tax_Type", "Tax", "Tax_Value", "Tax_Profit_Type", "Tax_Profit", "Tax_Profit_Value") FROM stdin;
\.


--
-- Data for Name: unloading_shipments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.unloading_shipments (id, "Code", "Date", "Time", "Safe", "Coin", "Draw", "FromStore", "ToStore", "Car", "Delegate", "Driver", "Total_Pieces", "Total_Weight", "Total_Cost", "Count_Shipmets", "Status", "User", created_at, updated_at, "ShipmentsDistributionCode") FROM stdin;
\.


--
-- Data for Name: unloading_shipments_goods; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.unloading_shipments_goods (id, "Shipment_ID", "Code", "Total_Weight", "Total_Cost", "Total_Pieces", "ShipmentsUnloading", "Status", "Dist_Goods_ID", created_at, updated_at, "Barcode") FROM stdin;
\.


--
-- Data for Name: unloading_shipments_workers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.unloading_shipments_workers (id, "Worker", "ShipmentsUnloading", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: update_values_investors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.update_values_investors (id, "Date", "Valye", "Investor", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: upload_accountings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.upload_accountings (id, "Name", "Type", "Parent", "Note", "User", "Account_Code", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: users_moves; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.users_moves (id, "User", "Date", "Time", "Screen", "Type", created_at, updated_at, "Explain", "ScreenEn", "TypeEn", "ExplainEn") FROM stdin;
3054	11	2023-08-30	11:11:31 am	المخازن	اضافه جديده	2023-08-30 11:11:31	2023-08-30 11:11:31	مخزن الطلبات	Stores	New Add	Requests Store
3055	11	2024-02-08	11:01:58 pm	تسجيل الدخول	تسجيل الدخول	2024-02-08 23:01:58	2024-02-08 23:01:58	تسجيل الدخول	Login	Login	Login
3056	11	2024-02-08	11:31:09 pm	اقسام العمل	اضافه جديده	2024-02-08 23:31:09	2024-02-08 23:31:09	الادارة المالية	Work Departments	New Add	Finance Mangement
3057	11	2024-02-08	11:31:55 pm	اقسام العمل	اضافه جديده	2024-02-08 23:31:55	2024-02-08 23:31:55	ادارة المبيعات	Work Departments	New Add	Sales Mangement
3058	11	2024-02-08	11:33:51 pm	اقسام العمل	اضافه جديده	2024-02-08 23:33:51	2024-02-08 23:33:51	ادارة المشتريات	Work Departments	New Add	Purchases Mangement
3059	11	2024-02-08	11:34:20 pm	اقسام العمل	اضافه جديده	2024-02-08 23:34:20	2024-02-08 23:34:20	ادارة التسويق	Work Departments	New Add	Marketing Mangement
3060	11	2024-02-08	11:34:49 pm	اقسام العمل	اضافه جديده	2024-02-08 23:34:49	2024-02-08 23:34:49	ادارة المخازن	Work Departments	New Add	Inventory Mangement
3061	11	2024-02-08	11:35:16 pm	اقسام العمل	اضافه جديده	2024-02-08 23:35:16	2024-02-08 23:35:16	ادارة الموارد البشرية	Work Departments	New Add	HR Mangement
3062	11	2024-02-08	11:35:58 pm	اقسام العمل	اضافه جديده	2024-02-08 23:35:58	2024-02-08 23:35:58	ادارة الانتاج	Work Departments	New Add	Production Mangement
3063	11	2024-02-08	11:37:15 pm	انواع الوظائف	تعديل	2024-02-08 23:37:15	2024-02-08 23:37:15	فني تركيبات	Jobs Type	Edit	Technical
3064	11	2024-02-08	11:38:03 pm	انواع الوظائف	تعديل	2024-02-08 23:38:03	2024-02-08 23:38:03	محاسب	Jobs Type	Edit	Accountant
3065	11	2024-02-08	11:38:20 pm	انواع الوظائف	تعديل	2024-02-08 23:38:20	2024-02-08 23:38:20	مدير الموارد البشرية	Jobs Type	Edit	HR Manager
3066	11	2024-02-08	11:38:40 pm	انواع الوظائف	تعديل	2024-02-08 23:38:40	2024-02-08 23:38:40	مسئول المبيعات	Jobs Type	Edit	Head of Sales
3067	11	2024-02-08	11:38:55 pm	انواع الوظائف	تعديل	2024-02-08 23:38:55	2024-02-08 23:38:55	مهندس التركيبات	Jobs Type	Edit	Technical  Engineer
3068	11	2024-02-08	11:39:12 pm	انواع الوظائف	اضافه جديده	2024-02-08 23:39:12	2024-02-08 23:39:12	مدير	Jobs Type	New Add	Manager
3069	11	2024-02-08	11:42:03 pm	المخازن	حذف	2024-02-08 23:42:03	2024-02-08 23:42:03	Store	Stores	Delete	Store
3070	11	2024-02-08	11:43:55 pm	المخازن	اضافه جديده	2024-02-08 23:43:55	2024-02-08 23:43:55	المخزن الرئيسي	Stores	New Add	Main Store
3071	11	2024-02-08	11:45:50 pm	المخازن	حذف	2024-02-08 23:45:50	2024-02-08 23:45:50	المخزون	Stores	Delete	المخزون
3072	11	2024-02-08	11:52:53 pm	الموظفين	اضافه موظف	2024-02-08 23:52:53	2024-02-08 23:52:53	مندوب مبيعات افتراضي	Employee	New Add	\N
3073	11	2024-02-08	11:53:23 pm	الموظفين	تعديل	2024-02-08 23:53:23	2024-02-08 23:53:23	مندوب مبيعات افتراضي	Employee	Edit	Default Sales
3074	11	2024-02-08	11:54:07 pm	الموظفين	اضافه موظف	2024-02-08 23:54:07	2024-02-08 23:54:07	مندوب مشتريات افتراضي	Employee	New Add	\N
3075	11	2024-02-08	11:54:43 pm	الموظفين	تعديل	2024-02-08 23:54:43	2024-02-08 23:54:43	مندوب مبيعات افتراضي	Employee	Edit	Default Sales
3076	11	2024-02-08	11:55:02 pm	الموظفين	تعديل	2024-02-08 23:55:02	2024-02-08 23:55:02	مندوب مشتريات افتراضي	Employee	Edit	Default Purchaser
3077	11	2024-02-08	11:56:24 pm	الموظفين	اضافه موظف	2024-02-08 23:56:24	2024-02-08 23:56:24	مهندس افتراضي	Employee	New Add	\N
3078	11	2024-02-08	11:57:46 pm	الموظفين	اضافه موظف	2024-02-08 23:57:46	2024-02-08 23:57:46	مندوب توصيل افتراضي	Employee	New Add	\N
3079	11	2024-02-08	11:58:21 pm	الموظفين	اضافه موظف	2024-02-08 23:58:21	2024-02-08 23:58:21	نادل افتراضي	Employee	New Add	\N
3080	11	2024-02-09	12:01:50 am	الموظفين	حذف	2024-02-09 00:01:50	2024-02-09 00:01:50	طيار	Employee	Delete	\N
3081	11	2024-02-09	12:01:58 am	الموظفين	حذف	2024-02-09 00:01:58	2024-02-09 00:01:58	مهندس صيانة	Employee	Delete	\N
3082	11	2024-02-09	12:02:05 am	الموظفين	حذف	2024-02-09 00:02:05	2024-02-09 00:02:05	مندوب مشتريات	Employee	Delete	\N
3083	11	2024-02-09	12:02:57 am	الموظفين	حذف	2024-02-09 00:02:57	2024-02-09 00:02:57	مندوب مبيعات	Employee	Delete	\N
3084	11	2024-02-09	12:08:03 am	العملاء	اضافه جديده	2024-02-09 00:08:03	2024-02-09 00:08:03	عميل افتراضي	Clients	New Add	Default Customer
3085	11	2024-02-09	12:08:40 am	الموردين	اضافه جديده	2024-02-09 00:08:40	2024-02-09 00:08:40	مورد افتراضي	Vendors	New Add	Default Vendor
3086	11	2024-02-09	12:17:43 am	الفروع	تعديل	2024-02-09 00:17:43	2024-02-09 00:17:43	الفرع الرئيسي	Branches	Edit	main Branch
3087	11	2024-02-09	12:18:47 am	الخزائن و البنوك	تعديل	2024-02-09 00:18:47	2024-02-09 00:18:47	الخزينة الرئيسية	Safes and Banks	Edit	Main Safe
3088	11	2024-02-09	12:18:55 am	الخزائن و البنوك	حذف	2024-02-09 00:18:55	2024-02-09 00:18:55	البنك الأهلي	Safes and Banks	Delete	\N
3089	11	2024-02-09	12:20:06 am	الخزائن و البنوك	تعديل	2024-02-09 00:20:06	2024-02-09 00:20:06	البنك الاهلي	Safes and Banks	Edit	SNB
3090	11	2024-02-09	12:20:20 am	العملات	حذف	2024-02-09 00:20:20	2024-02-09 00:20:20	درهم	Coins	Delete	Darhm
3091	11	2024-02-09	12:20:27 am	العملات	حذف	2024-02-09 00:20:27	2024-02-09 00:20:27	دينار	Coins	Delete	Dinar
3092	11	2024-02-09	12:21:32 am	العملات	اضافه جديده	2024-02-09 00:21:32	2024-02-09 00:21:32	دولار	Coins	New Add	دولار
3093	11	2024-02-09	12:21:54 am	العملات	تعديل	2024-02-09 00:21:54	2024-02-09 00:21:54	ريال سعودي	Coins	Edit	SAR
3094	11	2024-02-09	12:22:37 am	انواع الشيكات	تعديل	2024-02-09 00:22:37	2024-02-09 00:22:37	مسطر	Checks Type	Edit 	Underlined
3095	11	2024-02-09	12:22:59 am	مراكز التكلفه	تعديل	2024-02-09 00:22:59	2024-02-09 00:22:59	مركز تكلفة	Cost Centers	Edit	Cost Center
3096	11	2024-02-09	12:23:56 am	وحدات القياس	تعديل	2024-02-09 00:23:56	2024-02-09 00:23:56	قطعة	Measurement Units	Edit	Piece
3097	11	2024-02-09	12:24:05 am	وحدات القياس	تعديل	2024-02-09 00:24:05	2024-02-09 00:24:05	كيلو جرام	Measurement Units	Edit	KG
3098	11	2024-02-09	12:24:43 am	وحدات القياس	اضافه جديده	2024-02-09 00:24:43	2024-02-09 00:24:43	متر	Measurement Units	New Add	Meter
3099	11	2024-02-09	12:24:53 am	مجموعات الاصناف	حذف	2024-02-09 00:24:53	2024-02-09 00:24:53	Jewellry	Items Groups	Delete	\N
3100	11	2024-02-09	12:25:00 am	مجموعات الاصناف	حذف	2024-02-09 00:25:00	2024-02-09 00:25:00	Fashion	Items Groups	Delete	\N
3101	11	2024-02-09	12:25:06 am	مجموعات الاصناف	حذف	2024-02-09 00:25:06	2024-02-09 00:25:06	Shoes	Items Groups	Delete	\N
3102	11	2024-02-09	12:25:11 am	مجموعات الاصناف	حذف	2024-02-09 00:25:11	2024-02-09 00:25:11	Cosmetics	Items Groups	Delete	\N
3103	11	2024-02-09	12:25:17 am	مجموعات الاصناف	حذف	2024-02-09 00:25:17	2024-02-09 00:25:17	Bag	Items Groups	Delete	\N
3104	11	2024-02-09	12:26:06 am	مجموعات الاصناف	تعديل	2024-02-09 00:26:06	2024-02-09 00:26:06	مجموعة عامة	Items Groups	Edit	General Group
3105	11	2024-02-09	12:27:02 am	الماركات	تعديل	2024-02-09 00:27:02	2024-02-09 00:27:02	الماركة الافتراضية	Brands	Edit	Default Brand
3106	11	2024-02-09	12:28:27 am	المتغيرات	تعديل	2024-02-09 00:28:27	2024-02-09 00:28:27	الاحجام	Virables	Edit	Mass
3107	11	2024-02-09	12:28:36 am	المتغيرات	تعديل	2024-02-09 00:28:36	2024-02-09 00:28:36	اللون	Virables	Edit	Colors
3108	11	2024-02-09	12:28:47 am	المتغيرات	تعديل	2024-02-09 00:28:47	2024-02-09 00:28:47	المقاس	Virables	Edit	Sizes
3109	11	2024-02-09	12:29:31 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:29:31	2024-02-09 00:29:31	128G	Sub Virables	Edit	128G
3110	11	2024-02-09	12:29:41 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:29:41	2024-02-09 00:29:41	256G	Sub Virables	Edit	256G
3111	11	2024-02-09	12:29:51 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:29:51	2024-02-09 00:29:51	64G	Sub Virables	Edit	64G
3112	11	2024-02-09	12:30:14 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:30:14	2024-02-09 00:30:14	احمر	Sub Virables	Edit	Red
3113	11	2024-02-09	12:30:24 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:30:24	2024-02-09 00:30:24	ازرق	Sub Virables	Edit	Blue
3114	11	2024-02-09	12:30:33 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:30:33	2024-02-09 00:30:33	اسود	Sub Virables	Edit	Black
3115	11	2024-02-09	12:31:49 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:31:49	2024-02-09 00:31:49	لارج	Sub Virables	Edit	L
3116	11	2024-02-09	12:32:24 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:32:24	2024-02-09 00:32:24	سمال	Sub Virables	Edit	S
3117	11	2024-02-09	12:32:39 am	المتغيرات الفرعيه	تعديل	2024-02-09 00:32:39	2024-02-09 00:32:39	ميديم	Sub Virables	Edit	M
3118	11	2024-02-09	12:34:34 am	انواع الاشتراكات	اضافه جديده	2024-02-09 00:34:34	2024-02-09 00:34:34	شهري	Subscribe Types	New Add	Monthly
3119	11	2024-02-09	12:34:59 am	انواع الاشتراكات	اضافه جديده	2024-02-09 00:34:59	2024-02-09 00:34:59	ربع سنوي	Subscribe Types	New Add	Quarter Half
3120	11	2024-02-09	12:36:25 am	انواع الاشتراكات	تعديل	2024-02-09 00:36:25	2024-02-09 00:36:25	ربع سنوي	Subscribe Types	Edit	Quarterly
3121	11	2024-02-09	12:37:01 am	انواع الاشتراكات	اضافه جديده	2024-02-09 00:37:01	2024-02-09 00:37:01	نصف سنوي	Subscribe Types	New Add	Mideterm
3122	11	2024-02-09	12:37:29 am	انواع الاشتراكات	اضافه جديده	2024-02-09 00:37:29	2024-02-09 00:37:29	سنوي	Subscribe Types	New Add	Annual
3123	11	2024-02-09	12:39:33 am	الضرائب	تعديل	2024-02-09 00:39:33	2024-02-09 00:39:33	القيمه المضافه	Taxes	Edit	VAT
3124	11	2024-02-09	12:40:47 am	الضرائب	تعديل	2024-02-09 00:40:47	2024-02-09 00:40:47	القيمه المضافة	Taxes	Edit	VAT
3125	11	2024-02-09	12:41:56 am	شركات الشحن	اضافه جديده	2024-02-09 00:41:56	2024-02-09 00:41:56	زاجل	Shipping Compaines	New Add	Zagel
3126	11	2024-02-09	12:42:34 am	اعدادات طباعه الباركود	تعديل	2024-02-09 00:42:34	2024-02-09 00:42:34	2	Barcode Printing Settings	Edit	2
3127	11	2024-02-09	12:49:15 am	انواع المقابلات	تعديل	2024-02-09 00:49:15	2024-02-09 00:49:15	المكتب	Interviews Types	Edit	Office
3128	11	2024-02-09	12:49:35 am	انواع المقابلات	تعديل	2024-02-09 00:49:35	2024-02-09 00:49:35	تحصيل	Interviews Types	Edit	Collect
3129	11	2024-02-09	12:49:48 am	انواع المقابلات	تعديل	2024-02-09 00:49:48	2024-02-09 00:49:48	تليفونيا	Interviews Types	Edit	Phone
3130	11	2024-02-09	12:50:01 am	انواع المقابلات	تعديل	2024-02-09 00:50:01	2024-02-09 00:50:01	عرض سعر	Interviews Types	Edit	Quotation
3131	11	2024-02-09	12:50:32 am	انواع المقابلات	تعديل	2024-02-09 00:50:32	2024-02-09 00:50:32	لدي العميل	Interviews Types	Edit	at Customer Place
3132	11	2024-02-09	12:50:44 am	انواع المقابلات	تعديل	2024-02-09 00:50:44	2024-02-09 00:50:44	واتس اب	Interviews Types	Edit	Whatsapp
3133	11	2024-02-09	12:51:17 am	المنصات	تعديل	2024-02-09 00:51:17	2024-02-09 00:51:17	فيس بوك	Platforms	Edit	Facebook
3134	11	2024-02-09	12:51:37 am	الحملات	تعديل	2024-02-09 00:51:37	2024-02-09 00:51:37	حملة 2024	Campaigns	Edit	حملة 2024
3135	11	2024-02-09	12:51:55 am	حالات العملاء	تعديل	2024-02-09 00:51:55	2024-02-09 00:51:55	عميل مهم	Clients Status	Edit	VIP
3136	11	2024-02-09	12:52:05 am	حالات العملاء	تعديل	2024-02-09 00:52:05	2024-02-09 00:52:05	محتمل	Clients Status	Edit	Perhabs
3137	11	2024-02-09	12:52:13 am	حالات العملاء	تعديل	2024-02-09 00:52:13	2024-02-09 00:52:13	محتمل	Clients Status	Edit	Perhaps
3138	11	2024-02-09	12:52:30 am	النشاطات	تعديل	2024-02-09 00:52:30	2024-02-09 00:52:30	تجاري	Activites	Edit	Commercial
3139	11	2024-02-09	12:53:35 am	الدول	تعديل	2024-02-09 00:53:35	2024-02-09 00:53:35	مصر	Countris	Edit	Egypt
3140	11	2024-02-09	12:53:46 am	الدول	تعديل	2024-02-09 00:53:46	2024-02-09 00:53:46	السعوديه	Countris	Edit	Saudi Arabia
3141	11	2024-02-09	12:54:31 am	المدن	حذف	2024-02-09 00:54:31	2024-02-09 00:54:31	شرم الشيخ	City	Delete	شرم الشيخ
3142	11	2024-02-09	12:54:37 am	المدن	حذف	2024-02-09 00:54:37	2024-02-09 00:54:37	دهب	City	Delete	دهب
3143	11	2024-02-09	12:54:41 am	المدن	حذف	2024-02-09 00:54:41	2024-02-09 00:54:41	الطور	City	Delete	الطور
3144	11	2024-02-09	12:54:52 am	المحافظات	حذف	2024-02-09 00:54:52	2024-02-09 00:54:52	جنوب سيناء	Governrate	Delete	جنوب سيناء
3145	11	2024-02-09	12:55:11 am	المدن	حذف	2024-02-09 00:55:11	2024-02-09 00:55:11	Nasr City	City	Delete	Nasr City
3146	11	2024-02-09	12:56:06 am	المدن	حذف	2024-02-09 00:56:06	2024-02-09 00:56:06	Maadi	City	Delete	Maadi
3147	11	2024-02-09	12:56:16 am	المحافظات	حذف	2024-02-09 00:56:16	2024-02-09 00:56:16	القاهره	Governrate	Delete	القاهره
3148	11	2024-02-09	12:56:49 am	المدن	اضافه جديده	2024-02-09 00:56:49	2024-02-09 00:56:49	الرياض	City	New Add	Riyadh
3149	11	2024-02-09	12:57:13 am	المناطق	اضافه جديده	2024-02-09 00:57:13	2024-02-09 00:57:13	العليا	Places	New Add	Oliya
3150	11	2024-02-09	12:57:40 am	المحافظات	تعديل	2024-02-09 00:57:40	2024-02-09 00:57:40	القاهرة	Governrate	Edit	Cairo
3151	11	2024-02-09	12:57:52 am	المدن	حذف	2024-02-09 00:57:52	2024-02-09 00:57:52	Zamalek	City	Delete	Zamalek
3152	11	2024-02-09	12:58:24 am	المدن	تعديل	2024-02-09 00:58:24	2024-02-09 00:58:24	مدينة نصر	City	Edit	Nasr City
3153	11	2024-02-09	12:58:59 am	المناطق	اضافه جديده	2024-02-09 00:58:59	2024-02-09 00:58:59	اول مكرم	Places	New Add	Makrm Obied
3154	11	2024-02-09	12:59:24 am	الطاولات	حذف	2024-02-09 00:59:24	2024-02-09 00:59:24	New Table	Tables	Delete	New Table
3155	11	2024-02-09	12:59:31 am	الطاولات	حذف	2024-02-09 00:59:31	2024-02-09 00:59:31	Table 3	Tables	Delete	Table3
3156	11	2024-02-09	12:59:37 am	الطاولات	حذف	2024-02-09 00:59:37	2024-02-09 00:59:37	Table 2	Tables	Delete	Table 2
3157	11	2024-02-09	01:00:23 am	انواع الغرف	تعديل	2024-02-09 01:00:23	2024-02-09 01:00:23	غرفة افتراضية	Rooms Type	Edit	Default Room
3158	11	2024-02-09	01:02:09 am	صالات التصنيع	تعديل	2024-02-09 01:02:09	2024-02-09 01:02:09	صالة افتراضية	Manufacturing Halls	Edit	Hall Default
3159	11	2024-02-09	01:02:49 am	الشركات المصنعه	حذف	2024-02-09 01:02:49	2024-02-09 01:02:49	Shoes	Manufacture Company	Delte	Shoes
3160	11	2024-02-09	01:02:55 am	الشركات المصنعه	حذف	2024-02-09 01:02:55	2024-02-09 01:02:55	Jewellry	Manufacture Company	Delte	Jewellry
3161	11	2024-02-09	01:03:00 am	الشركات المصنعه	حذف	2024-02-09 01:03:00	2024-02-09 01:03:00	Fashion	Manufacture Company	Delte	Fashion
3162	11	2024-02-09	01:03:06 am	الشركات المصنعه	حذف	2024-02-09 01:03:06	2024-02-09 01:03:06	Cosmetics	Manufacture Company	Delte	Cosmetics
3163	11	2024-02-09	01:03:11 am	الشركات المصنعه	حذف	2024-02-09 01:03:11	2024-02-09 01:03:11	Bag	Manufacture Company	Delte	Bag
3164	11	2024-02-09	01:03:16 am	الشركات المصنعه	حذف	2024-02-09 01:03:16	2024-02-09 01:03:16	Accessories	Manufacture Company	Delte	Accessories
3165	11	2024-02-09	01:03:45 am	الشركات المصنعه	تعديل	2024-02-09 01:03:45	2024-02-09 01:03:45	الشركة الافتراضية	Manufacture Company	Edit	Default Company
3166	11	2024-02-09	01:03:55 am	انواع الاجهزه	حذف	2024-02-09 01:03:55	2024-02-09 01:03:55	Note44	Devices Types	Delete	Note44
3167	11	2024-02-09	01:04:29 am	اسباب الرفض	اضافه جديده	2024-02-09 01:04:29	2024-02-09 01:04:29	سبب افتراضي	Refuse Reasons	New Add	Default Reason
3168	11	2024-02-09	01:04:51 am	حالات الاجهزه	تعديل	2024-02-09 01:04:51	2024-02-09 01:04:51	جديد	Desvice Cases	Edit	New
3169	11	2024-02-09	01:05:29 am	شروط و احكام الصيانه	تحديث	2024-02-09 01:05:29	2024-02-09 01:05:29	تحديث	Terms Maintaince	Update	Update
3170	11	2024-02-09	01:08:23 am	انواع الشحن	تعديل	2024-02-09 01:08:23	2024-02-09 01:08:23	شحنة افتراضية	Shipping Type	Edit	Default Shipping
3171	11	2024-02-09	01:10:16 am	حالات الشحن	تعديل	2024-02-09 01:10:16	2024-02-09 01:10:16	تامة	Shipping Status	Edit	Done
3172	11	2024-02-09	01:54:53 am	تسجيل الدخول	تسجيل الدخول	2024-02-09 01:54:53	2024-02-09 01:54:53	تسجيل الدخول	Login	Login	Login
3173	11	2024-02-09	02:24:01 am	تسجيل الدخول	تسجيل الدخول	2024-02-09 02:24:01	2024-02-09 02:24:01	تسجيل الدخول	Login	Login	Login
3174	11	2024-02-14	11:09:20 pm	الموردين	حذف	2024-02-14 23:09:20	2024-02-14 23:09:20	مورد نقدي	Vendors	Delete	\N
3175	11	2024-02-14	11:10:57 pm	الضرائب	تعديل	2024-02-14 23:10:57	2024-02-14 23:10:57	القيمة المضافة	Taxes	Edit	VAT
3176	11	2024-02-14	11:12:23 pm	الدليل المحاسبي	تعديل	2024-02-14 23:12:23	2024-02-14 23:12:23	مجمع الاهلاك	Accounting Manual	Edit	Asset Depreciation Accumulator
3177	11	2024-02-14	11:13:11 pm	الدليل المحاسبي	اضافه جديده	2024-02-14 23:13:11	2024-02-14 23:13:11	مجمع اهلاك الاثاث المكتبي	Accounting_Manual	New Add	مجمع اهلاك الاثاث المكتبي
3178	11	2024-02-14	11:13:50 pm	الدليل المحاسبي	تعديل	2024-02-14 23:13:50	2024-02-14 23:13:50	مصروفات الاهلاك	Accounting Manual	Edit	Depreciation
3179	11	2024-02-14	11:14:32 pm	الدليل المحاسبي	تعديل	2024-02-14 23:14:32	2024-02-14 23:14:32	مصروف اهلاك الاثاث المكتبي	Accounting Manual	Edit	New Depreciation
3180	11	2024-02-14	11:15:25 pm	الدليل المحاسبي	تعديل	2024-02-14 23:15:25	2024-02-14 23:15:25	ايراد مصنعية	Accounting Manual	Edit	Manufacturing Revenue
3181	11	2024-02-14	11:15:43 pm	الدليل المحاسبي	تعديل	2024-02-14 23:15:43	2024-02-14 23:15:43	ايردات رسوم الخدمة	Accounting Manual	Edit	Service Charges Revenues
3182	11	2024-02-25	06:01:28 pm	تسجيل الدخول	تسجيل الدخول	2024-02-25 18:01:28	2024-02-25 18:01:28	تسجيل الدخول	Login	Login	Login
3183	11	2024-11-05	12:49:01 pm	الدليل المحاسبي	اضافه جديده	2024-11-05 12:49:01	2024-11-05 12:49:01	المستثمرين	Accounting Manual	New Add	Investors
3184	11	2024-11-05	12:49:22 pm	الدليل المحاسبي	اضافه جديده	2024-11-05 12:49:22	2024-11-05 12:49:22	استحقاق مستثمرين	Accounting Manual	New Add	Investors' Eligibility
3185	11	2024-11-05	12:49:39 pm	الدليل المحاسبي	اضافه جديده	2024-11-05 12:49:39	2024-11-05 12:49:39	مصروفات ارباح مستثمرين	Accounting Manual	New Add	Investors' Dividend Expenses
3186	11	2024-11-13	08:56:22 am	الدليل المحاسبي	تعديل	2024-11-13 08:56:22	2024-11-13 08:56:22	مصروفات ارباح مستثمرين	Accounting Manual	Edit	Investors' Dividend Expenses
3187	11	2024-11-18	10:22:11 am	تسجيل الدخول	تسجيل الدخول	2024-11-18 10:22:11	2024-11-18 10:22:11	تسجيل الدخول	Login	Login	Login
3188	11	2024-12-04	09:05:36 pm	تسجيل الدخول	تسجيل الدخول	2024-12-04 21:05:36	2024-12-04 21:05:36	تسجيل الدخول	Login	Login	Login
3189	11	2025-02-19	02:49:54 pm	الدليل المحاسبي	اضافه جديده	2025-02-19 14:49:54	2025-02-19 14:49:54	مصاريف مشاريع	Accounting Manual	New Add	مصاريف مشاريع
3190	11	2025-03-09	01:19:33 pm	الدليل المحاسبي	اضافه جديده	2025-03-09 13:19:33	2025-03-09 13:19:33	استحقاق المقاولين	Accounting Manual	New Add	استحقاق المقاولين
3191	11	2025-04-25	01:47:49 pm	تسجيل الدخول	تسجيل الدخول	2025-04-25 13:47:49	2025-04-25 13:47:49	تسجيل الدخول	Login	Login	Login
3192	11	2025-04-25	01:48:29 pm	الدليل المحاسبي	اضافه جديده	2025-04-25 13:48:29	2025-04-25 13:48:29	تطبيقات التوصيل	Accounting Manual	New Add	Delivery App
3193	59	2025-07-16	01:53:35 pm	تسجيل الدخول	تسجيل الدخول	2025-07-16 13:53:35	2025-07-16 13:53:35	تسجيل الدخول	Login	Login	Login
3194	11	2025-08-21	06:50:32 am	الدليل المحاسبي	اضافه جديده	2025-08-21 06:50:32	2025-08-21 06:50:32	مصاريف السيارات	Accounting Manual	New Add	مصاريف السيارات
3195	11	2025-08-22	06:27:51 pm	الدليل المحاسبي	اضافه جديده	2025-08-22 18:27:51	2025-08-22 18:27:51	استحقاق سيارات الشحن	Accounting Manual	New Add	استحقاق سيارات الشحن
3196	11	2025-08-22	06:48:23 pm	الدليل المحاسبي	اضافه جديده	2025-08-22 18:48:23	2025-08-22 18:48:23	مصاريف الشحنة	Accounting Manual	New Add	مصاريف الشحنة
3197	11	2025-12-19	04:52:08 pm	الدليل المحاسبي	اضافه جديده	2025-12-19 16:52:08	2025-12-19 16:52:08	مقاولين النقل	Accounting Manual	New Add	Transport Contractors
3198	11	2025-12-20	06:37:20 pm	حالات المشاريع	اضافه جديده	2025-12-20 18:37:20	2025-12-20 18:37:20	Defaukt	Project Status	New Add	Defaukt
3199	11	2025-12-20	06:37:26 pm	حالات العقود	اضافه جديده	2025-12-20 18:37:26	2025-12-20 18:37:26	Defaukt	Contract Status	New Add	Defaukt
3200	11	2026-01-14	12:22:21 pm	تصنيفات الشحنات	اضافه جديده	2026-01-14 12:22:21	2026-01-14 12:22:21	Default	Shipping Categories	New Add	Default
3201	11	2026-01-16	02:58:55 pm	تسجيل الدخول	تسجيل الدخول	2026-01-16 14:58:55	2026-01-16 14:58:55	تسجيل الدخول	Login	Login	Login
3202	11	2026-03-09	08:39:26 am	تسجيل الدخول	تسجيل الدخول	2026-03-09 08:39:26	2026-03-09 08:39:26	تسجيل الدخول	Login	Login	Login
3203	11	2026-04-06	10:20:04 pm	الدليل المحاسبي	اضافه جديده	2026-04-06 22:20:04	2026-04-06 22:20:04	الإعتمادات المستندية	Accounting Manual	New Add	Documentary Credits
3204	11	2026-04-20	11:22:46 am	الدليل المحاسبي	اضافه جديده	2026-04-20 11:22:46	2026-04-20 11:22:46	مصاريف العقارات	Accounting Manual	New Add	Real State Expenses
3205	11	2026-04-20	11:23:11 am	الدليل المحاسبي	اضافه جديده	2026-04-20 11:23:11	2026-04-20 11:23:11	ملاك العقارات	Accounting Manual	New Add	Real State Owners
3206	11	2026-04-20	11:23:29 am	الدليل المحاسبي	اضافه جديده	2026-04-20 11:23:29	2026-04-20 11:23:29	مصاريف الوحدات	Accounting Manual	New Add	Real State Units
3207	11	2026-04-23	08:48:56 am	تسجيل الدخول	تسجيل الدخول	2026-04-23 08:48:56	2026-04-23 08:48:56	تسجيل الدخول	Login	Login	Login
3208	11	2026-04-24	08:52:27 am	الدليل المحاسبي	اضافه جديده	2026-04-24 08:52:27	2026-04-24 08:52:27	تأمينات العقارات	Accounting Manual	New Add	تأمينات العقارات
3209	11	2026-05-22	12:48:18 pm	تسجيل الدخول	تسجيل الدخول	2026-05-22 12:48:18	2026-05-22 12:48:18	تسجيل الدخول	Login	Login	Login
3210	11	2026-05-22	12:49:48 pm	تسجيل الدخول	تسجيل الدخول	2026-05-22 12:49:48	2026-05-22 12:49:48	تسجيل الدخول	Login	Login	Login
\.


--
-- Data for Name: v_a_prices; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.v_a_prices (id, "Price", "MainV", "SubV", "Product", created_at, updated_at, "Offer_Price", "Added", "VAProductID") FROM stdin;
\.


--
-- Data for Name: v_a_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.v_a_products (id, "Product_Code", "P_Ar_Name", "P_En_Name", "Unit", "Product", "ProductID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: v_a_qties; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.v_a_qties (id, "Qty", "MainV", "SubV", "Product", "ProductID", "VAProductID", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: vendor_account_statement_column_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vendor_account_statement_column_sechdules (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Vendor", created_at, updated_at, "ShiftCode", "Executor") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-16 22:57:39	1	1
\.


--
-- Data for Name: vendor_account_statement_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vendor_account_statement_columns (id, "Date", "Code", "Time", "Refrence_Number", "Branch", "Store", "Payment_Method", "Safe", "Type", "Shipping", "Cost_Center", "User", "Coin", "Due_Date", "Delegate", "Note", "Total_Return", "Total_Price", "Total_Discount", "Total_Tax", "Total_Net", "Paid", "Residual", "Vendor", created_at, updated_at, "ShiftCode", "Executor") FROM stdin;
1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	\N	2022-10-16 22:39:00	1	1
\.


--
-- Data for Name: vendor_filters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vendor_filters (id, "Product", "Code", "Name", "VName", "VVName", "V1", "V2", "Qty", "Price", "Total", "Vendor", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: vendor_products; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vendor_products (id, "Product_Name", "Product_Weight", "Product_Height", "Product_Length", "Product_Width", "Qty", "Price", "Vendor", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: vendors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vendors (id, "Code", "Name", "Phone", "Phone2", "Commercial_Register", "Tax_Card", "Price_Level", "Account", "User", arr, created_at, updated_at, "Tax_Registration_Number", "Tax_activity_code", work_nature, "Buliding_Num", "Street", "Postal_Code", tax_magistrate, "Floor", "Room", "Landmark", "Add_Info", "City", "Place", "Nationality", "Responsible", "Pro_Group", "Brand", "Governrate", "NameEn", "SearchCode", "Credit_Limit", "Monthly_Target", "Quarterly_Target", "Yearly_Target") FROM stdin;
21	3	مورد افتراضي	\N	\N	\N	\N	1	2523	11	\N	2024-02-09 00:08:40	2024-02-09 00:08:40	\N	\N	P	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	\N	\N	\N	\N	Default Vendor	\N	\N	0	0	0
\.


--
-- Data for Name: vendors_statements_column_sechdules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vendors_statements_column_sechdules (id, "Account_Code", "Account_Name", "Debiator_Before", "Creditor_Before", "Total_Debitor", "Total_Creditor", "Debitor_Balance", "Creditor_Balance", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	\N	2022-10-17 13:41:51
\.


--
-- Data for Name: vendors_statements_columns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vendors_statements_columns (id, "Account_Code", "Account_Name", "Debiator_Before", "Creditor_Before", "Total_Debitor", "Total_Creditor", "Debitor_Balance", "Creditor_Balance", created_at, updated_at) FROM stdin;
1	1	1	1	1	1	1	1	1	\N	2022-10-17 13:37:07
\.


--
-- Data for Name: virables; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.virables (id, "Name", created_at, updated_at, "NameEn") FROM stdin;
9	الاحجام	2022-06-09 05:43:36	2024-02-09 00:28:27	Mass
7	اللون	2022-06-09 05:43:15	2024-02-09 00:28:36	Colors
8	المقاس	2022-06-09 05:43:25	2024-02-09 00:28:47	Sizes
\.


--
-- Data for Name: vouchers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vouchers (id, "Draw", "Coin", "Safe", "Debitor", "Creditor", "Account", "Statement", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: web_sliders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.web_sliders (id, "Status", "Arabic_Title", "English_Title", "Arabic_Desc", "English_Desc", "Image", created_at, updated_at, "Type") FROM stdin;
1	1	Summer Collection	Summer Collection	Save up to 50% off this weekend only	Save up to 50% off this weekend only	WebsliderImages/czgHJHQGxcvN5PiOVpcI.jpg	2022-06-04 15:02:30	2022-06-04 15:08:49	\N
2	1	Summer Collection	Summer Collection	Save up to 50% off this weekend only	Save up to 50% off this weekend only	WebsliderImages/jNWN8Al6hKgKjhWR2xVE.jpg	2022-06-04 15:09:13	2022-06-04 15:09:13	\N
\.


--
-- Data for Name: wishlists; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.wishlists (id, "Product", "User", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: work_departments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.work_departments (id, "Arabic_Name", "English_Name", created_at, updated_at, "Parent", "Budget") FROM stdin;
6	رئيس مجلس الاداره	Chairman of Board of Directors	2022-04-13 02:49:57	2022-04-13 02:49:57	0	\N
20	الادارة المالية	Finance Mangement	2024-02-08 23:31:09	2024-02-08 23:31:09	6	0
21	ادارة المبيعات	Sales Mangement	2024-02-08 23:31:55	2024-02-08 23:31:55	6	0
22	ادارة المشتريات	Purchases Mangement	2024-02-08 23:33:51	2024-02-08 23:33:51	6	0
23	ادارة التسويق	Marketing Mangement	2024-02-08 23:34:20	2024-02-08 23:34:20	6	0
24	ادارة المخازن	Inventory Mangement	2024-02-08 23:34:49	2024-02-08 23:34:49	6	0
25	ادارة الموارد البشرية	HR Mangement	2024-02-08 23:35:16	2024-02-08 23:35:16	6	0
26	ادارة الانتاج	Production Mangement	2024-02-08 23:35:58	2024-02-08 23:35:58	6	0
\.


--
-- Data for Name: workers_sales_petrols; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.workers_sales_petrols (id, "Worker", "SalesPetrol", created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: zkteco_devices; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.zkteco_devices (id, ip, port, model_name, status, created_at, updated_at) FROM stdin;
\.


--
-- Name: a_v_pro_check_qties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.a_v_pro_check_qties_id_seq', 1, false);


--
-- Name: abouts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.abouts_id_seq', 1, true);


--
-- Name: abstracts_contractors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.abstracts_contractors_id_seq', 1, false);


--
-- Name: acccounting_manuals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.acccounting_manuals_id_seq', 2540, true);


--
-- Name: accounts_default_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.accounts_default_data_id_seq', 2, true);


--
-- Name: activites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.activites_id_seq', 8, true);


--
-- Name: add_translates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.add_translates_id_seq', 1, true);


--
-- Name: additional_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.additional_products_id_seq', 12, true);


--
-- Name: addressses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.addressses_id_seq', 13, true);


--
-- Name: admins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.admins_id_seq', 59, true);


--
-- Name: all_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.all_groups_id_seq', 1, false);


--
-- Name: allowences_emps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.allowences_emps_id_seq', 2, true);


--
-- Name: apps_change_prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.apps_change_prices_id_seq', 1, false);


--
-- Name: area_pincode_a_p_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.area_pincode_a_p_id_seq', 1, false);


--
-- Name: articles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.articles_id_seq', 2, true);


--
-- Name: assay_bill_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assay_bill_details_id_seq', 1, false);


--
-- Name: assay_bills_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assay_bills_id_seq', 1, false);


--
-- Name: assay_project_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assay_project_details_id_seq', 1, false);


--
-- Name: assay_projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assay_projects_id_seq', 1, false);


--
-- Name: assembly_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assembly_products_id_seq', 1, false);


--
-- Name: assets_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assets_arr_seq', 1, false);


--
-- Name: assets_expenses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assets_expenses_id_seq', 1, false);


--
-- Name: assets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.assets_id_seq', 1, false);


--
-- Name: attend_departure_import_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.attend_departure_import_id_seq', 2, true);


--
-- Name: attendance_emps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.attendance_emps_id_seq', 6, true);


--
-- Name: attendances_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.attendances_arr_seq', 1, false);


--
-- Name: attendances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.attendances_id_seq', 2, true);


--
-- Name: attendence_policy_emps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.attendence_policy_emps_id_seq', 1, false);


--
-- Name: barcode_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.barcode_products_id_seq', 1, false);


--
-- Name: barcode_settings_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.barcode_settings_arr_seq', 1, false);


--
-- Name: barcode_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.barcode_settings_id_seq', 8, true);


--
-- Name: barcode_shows_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.barcode_shows_id_seq', 4, true);


--
-- Name: befroe_footers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.befroe_footers_id_seq', 5, true);


--
-- Name: beneftis_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.beneftis_types_id_seq', 1, true);


--
-- Name: bones_sales_petrols_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.bones_sales_petrols_id_seq', 3, true);


--
-- Name: bones_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.bones_types_id_seq', 1, false);


--
-- Name: borrowas_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.borrowas_arr_seq', 1, false);


--
-- Name: borrowas_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.borrowas_id_seq', 3, true);


--
-- Name: branches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.branches_id_seq', 3, true);


--
-- Name: brands_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.brands_id_seq', 22, true);


--
-- Name: campaigns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.campaigns_id_seq', 7, true);


--
-- Name: capital_increases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.capital_increases_id_seq', 1, false);


--
-- Name: capitals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.capitals_id_seq', 2, true);


--
-- Name: car_shippings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.car_shippings_id_seq', 1, false);


--
-- Name: cars_sales_petrols_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cars_sales_petrols_id_seq', 3, true);


--
-- Name: cart_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cart_stores_id_seq', 1, false);


--
-- Name: catalog_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.catalog_requests_id_seq', 1, false);


--
-- Name: chat_issues_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.chat_issues_id_seq', 31, true);


--
-- Name: checks_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.checks_types_id_seq', 4, true);


--
-- Name: cities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cities_id_seq', 9, true);


--
-- Name: clearances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.clearances_id_seq', 1, false);


--
-- Name: client_account_statement_column_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.client_account_statement_column_sechdules_id_seq', 1, true);


--
-- Name: client_account_statement_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.client_account_statement_columns_id_seq', 1, true);


--
-- Name: client_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.client_filters_id_seq', 4, true);


--
-- Name: client_requests_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.client_requests_arr_seq', 1, false);


--
-- Name: client_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.client_requests_id_seq', 1, false);


--
-- Name: client_sales_petrols_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.client_sales_petrols_id_seq', 6, true);


--
-- Name: client_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.client_statuses_id_seq', 5, true);


--
-- Name: clients_statements_column_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.clients_statements_column_sechdules_id_seq', 1, true);


--
-- Name: clients_statements_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.clients_statements_columns_id_seq', 1, true);


--
-- Name: coins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.coins_id_seq', 7, true);


--
-- Name: comments_clients_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.comments_clients_id_seq', 1, true);


--
-- Name: comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.comments_id_seq', 1, false);


--
-- Name: company_cars_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.company_cars_id_seq', 1, false);


--
-- Name: company_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.company_data_id_seq', 1, true);


--
-- Name: compare_prices_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.compare_prices_columns_id_seq', 1, true);


--
-- Name: compare_prices_columns_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.compare_prices_columns_sechdules_id_seq', 1, true);


--
-- Name: compare_prices_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.compare_prices_filter_twos_id_seq', 17, true);


--
-- Name: compare_prices_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.compare_prices_filters_id_seq', 17, true);


--
-- Name: compares_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.compares_id_seq', 1, false);


--
-- Name: competitors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.competitors_id_seq', 1, false);


--
-- Name: consist_maintainces_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.consist_maintainces_id_seq', 1, true);


--
-- Name: consists_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.consists_arr_seq', 1, false);


--
-- Name: consists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.consists_id_seq', 1, false);


--
-- Name: contact_u_s_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.contact_u_s_id_seq', 1, true);


--
-- Name: contract_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.contract_statuses_id_seq', 1, true);


--
-- Name: contractors_real_projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.contractors_real_projects_id_seq', 1, false);


--
-- Name: cost_centers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cost_centers_id_seq', 4, true);


--
-- Name: counters_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.counters_types_id_seq', 1, false);


--
-- Name: countris_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.countris_id_seq', 3, true);


--
-- Name: coupon_codes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.coupon_codes_id_seq', 1, true);


--
-- Name: courses_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.courses_categories_id_seq', 1, true);


--
-- Name: courses_halls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.courses_halls_id_seq', 1, true);


--
-- Name: courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.courses_id_seq', 1, true);


--
-- Name: courses_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.courses_types_id_seq', 3, true);


--
-- Name: crm_default_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.crm_default_data_id_seq', 3, true);


--
-- Name: custom_prints_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.custom_prints_id_seq', 1, true);


--
-- Name: customer_comments_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customer_comments_products_id_seq', 1, false);


--
-- Name: customer_follow_ups_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customer_follow_ups_arr_seq', 1, false);


--
-- Name: customer_follow_ups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customer_follow_ups_id_seq', 1, true);


--
-- Name: customer_sizes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customer_sizes_id_seq', 1, false);


--
-- Name: customers_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customers_arr_seq', 1, false);


--
-- Name: customers_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customers_files_id_seq', 1, false);


--
-- Name: customers_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customers_groups_id_seq', 3, true);


--
-- Name: customers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customers_id_seq', 1, true);


--
-- Name: customers_rate_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customers_rate_types_id_seq', 1, false);


--
-- Name: customers_tickets_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customers_tickets_arr_seq', 1, false);


--
-- Name: customers_tickets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.customers_tickets_id_seq', 1, false);


--
-- Name: deducations_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.deducations_types_id_seq', 1, true);


--
-- Name: deductions_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.deductions_arr_seq', 1, false);


--
-- Name: deductions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.deductions_id_seq', 1, true);


--
-- Name: default_data_show_hides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.default_data_show_hides_id_seq', 1, true);


--
-- Name: default_sewing_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.default_sewing_orders_id_seq', 1, true);


--
-- Name: delivery_apps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.delivery_apps_id_seq', 1, false);


--
-- Name: depaarture_policy_emps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.depaarture_policy_emps_id_seq', 1, false);


--
-- Name: departure_emps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.departure_emps_id_seq', 6, true);


--
-- Name: departures_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.departures_arr_seq', 1, false);


--
-- Name: departures_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.departures_id_seq', 1, true);


--
-- Name: desvice_cases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.desvice_cases_id_seq', 3, true);


--
-- Name: device_descrips_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.device_descrips_id_seq', 9, true);


--
-- Name: devices_typesies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.devices_typesies_id_seq', 7, true);


--
-- Name: disclaimers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.disclaimers_id_seq', 1, false);


--
-- Name: discounts_emps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.discounts_emps_id_seq', 2, true);


--
-- Name: documentary__credits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.documentary__credits_id_seq', 1, false);


--
-- Name: domains_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.domains_id_seq', 1, false);


--
-- Name: dxf_heights_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.dxf_heights_id_seq', 1, false);


--
-- Name: emp_covenants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_covenants_id_seq', 1, false);


--
-- Name: emp_excs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_excs_id_seq', 1, false);


--
-- Name: emp_installment_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_installment_details_id_seq', 48, true);


--
-- Name: emp_installments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_installments_id_seq', 2, true);


--
-- Name: emp_mails_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_mails_id_seq', 1, false);


--
-- Name: emp_movements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_movements_id_seq', 1, false);


--
-- Name: emp_p_o_s_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_p_o_s_stores_id_seq', 23, true);


--
-- Name: emp_payment_accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_payment_accounts_id_seq', 1, false);


--
-- Name: emp_ratios_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_ratios_id_seq', 19, true);


--
-- Name: emp_recipt_accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_recipt_accounts_id_seq', 1, false);


--
-- Name: emp_safes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emp_safes_id_seq', 1, false);


--
-- Name: empassies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.empassies_id_seq', 2, true);


--
-- Name: empassy_reserve_dates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.empassy_reserve_dates_id_seq', 1, true);


--
-- Name: employesses_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.employesses_arr_seq', 1, false);


--
-- Name: employesses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.employesses_id_seq', 42, true);


--
-- Name: employment_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.employment_levels_id_seq', 1, false);


--
-- Name: emps_producation_points_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emps_producation_points_id_seq', 1, true);


--
-- Name: emps_producation_quantities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emps_producation_quantities_id_seq', 2, true);


--
-- Name: entitlements_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.entitlements_arr_seq', 1, false);


--
-- Name: entitlements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.entitlements_id_seq', 2, true);


--
-- Name: events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.events_id_seq', 21, true);


--
-- Name: examinations_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.examinations_types_id_seq', 3, true);


--
-- Name: exchange_commissions_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.exchange_commissions_arr_seq', 1, false);


--
-- Name: exchange_commissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.exchange_commissions_id_seq', 5, true);


--
-- Name: execute_job_order_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.execute_job_order_models_id_seq', 9, true);


--
-- Name: execute_job_order_workmanships_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.execute_job_order_workmanships_id_seq', 9, true);


--
-- Name: execute_job_orders_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.execute_job_orders_arr_seq', 1, false);


--
-- Name: execute_job_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.execute_job_orders_id_seq', 1, false);


--
-- Name: execute_sewing_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.execute_sewing_orders_id_seq', 1, false);


--
-- Name: executing_receiving_secretariats_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.executing_receiving_secretariats_arr_seq', 1, false);


--
-- Name: executing_receiving_secretariats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.executing_receiving_secretariats_id_seq', 17, true);


--
-- Name: executing_receivings_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.executing_receivings_arr_seq', 1, false);


--
-- Name: executing_receivings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.executing_receivings_id_seq', 48, true);


--
-- Name: executor_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.executor_filters_id_seq', 1, false);


--
-- Name: expenses_list_column_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.expenses_list_column_sechdules_id_seq', 1, true);


--
-- Name: expenses_list_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.expenses_list_columns_id_seq', 1, true);


--
-- Name: expenses_type_projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.expenses_type_projects_id_seq', 1, false);


--
-- Name: expenses_type_templates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.expenses_type_templates_id_seq', 1, false);


--
-- Name: expire_date_qties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.expire_date_qties_id_seq', 3, true);


--
-- Name: export_checks_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.export_checks_arr_seq', 1, false);


--
-- Name: export_checks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.export_checks_id_seq', 1, false);


--
-- Name: f_a_q_s_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.f_a_q_s_id_seq', 2, true);


--
-- Name: failed_jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.failed_jobs_id_seq', 1, false);


--
-- Name: faults_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.faults_types_id_seq', 3, true);


--
-- Name: fifo_qties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.fifo_qties_id_seq', 10, true);


--
-- Name: firewall_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.firewall_logs_id_seq', 17, true);


--
-- Name: follow_lists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.follow_lists_id_seq', 1, false);


--
-- Name: general_dailies_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.general_dailies_arr_seq', 1, false);


--
-- Name: general_dailies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.general_dailies_id_seq', 1, false);


--
-- Name: goods_product_projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.goods_product_projects_id_seq', 1, false);


--
-- Name: goods_projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.goods_projects_id_seq', 1, false);


--
-- Name: governrates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.governrates_id_seq', 5, true);


--
-- Name: group_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.group_filters_id_seq', 4, true);


--
-- Name: holidays_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.holidays_arr_seq', 1, false);


--
-- Name: holidays_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.holidays_id_seq', 15, true);


--
-- Name: holidays_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.holidays_types_id_seq', 2, true);


--
-- Name: home_e_com_designs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_e_com_designs_id_seq', 1, true);


--
-- Name: home_product_e_com_designs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_product_e_com_designs_id_seq', 1, true);


--
-- Name: import_expenses_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.import_expenses_types_id_seq', 1, false);


--
-- Name: import_new_prods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.import_new_prods_id_seq', 1, false);


--
-- Name: import_new_prods_starts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.import_new_prods_starts_id_seq', 5, true);


--
-- Name: in_out_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.in_out_logs_id_seq', 1, false);


--
-- Name: incom_checks_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.incom_checks_arr_seq', 1, false);


--
-- Name: incom_checks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.incom_checks_id_seq', 1, false);


--
-- Name: incom_manufacturing_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.incom_manufacturing_models_id_seq', 1, false);


--
-- Name: incom_manufacturing_secretariat_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.incom_manufacturing_secretariat_models_id_seq', 4, true);


--
-- Name: install_companies_sales_bills_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.install_companies_sales_bills_columns_id_seq', 1, true);


--
-- Name: install_companies_sales_bills_columns_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.install_companies_sales_bills_columns_sechdules_id_seq', 1, true);


--
-- Name: installment_companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.installment_companies_id_seq', 1, false);


--
-- Name: installment_companies_ratios_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.installment_companies_ratios_id_seq', 1, false);


--
-- Name: installment_dates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.installment_dates_id_seq', 1, false);


--
-- Name: installments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.installments_id_seq', 1, false);


--
-- Name: insurance_companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.insurance_companies_id_seq', 1, false);


--
-- Name: insurance_papers_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.insurance_papers_arr_seq', 1, false);


--
-- Name: insurance_papers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.insurance_papers_id_seq', 1, false);


--
-- Name: interviews_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.interviews_arr_seq', 1, false);


--
-- Name: interviews_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.interviews_id_seq', 1, false);


--
-- Name: interviews_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.interviews_types_id_seq', 8, true);


--
-- Name: intros_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.intros_id_seq', 1, true);


--
-- Name: inventories_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.inventories_arr_seq', 1, false);


--
-- Name: inventories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.inventories_id_seq', 1, false);


--
-- Name: investors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.investors_id_seq', 1, false);


--
-- Name: issues_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.issues_id_seq', 9, true);


--
-- Name: items_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.items_groups_id_seq', 38, true);


--
-- Name: itineraries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.itineraries_id_seq', 1, false);


--
-- Name: itinerary_visits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.itinerary_visits_id_seq', 1, false);


--
-- Name: job_orders_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.job_orders_arr_seq', 1, false);


--
-- Name: job_orders_executors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.job_orders_executors_id_seq', 2, true);


--
-- Name: job_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.job_orders_id_seq', 1, false);


--
-- Name: jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.jobs_id_seq', 1, false);


--
-- Name: jobs_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.jobs_types_id_seq', 8, true);


--
-- Name: jouns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.jouns_id_seq', 1, false);


--
-- Name: journalizing_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.journalizing_details_id_seq', 1, false);


--
-- Name: journalizings_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.journalizings_arr_seq', 1, false);


--
-- Name: journalizings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.journalizings_id_seq', 1, false);


--
-- Name: languages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.languages_id_seq', 3, true);


--
-- Name: loan_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.loan_types_id_seq', 1, true);


--
-- Name: loans_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.loans_arr_seq', 1, false);


--
-- Name: loans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.loans_id_seq', 4, true);


--
-- Name: login_sliders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.login_sliders_id_seq', 1, false);


--
-- Name: main_e_com_designs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.main_e_com_designs_id_seq', 1, true);


--
-- Name: maintainc_bills_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.maintainc_bills_arr_seq', 1, false);


--
-- Name: maintainc_bills_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.maintainc_bills_id_seq', 1, false);


--
-- Name: maintaince_colors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.maintaince_colors_id_seq', 4, true);


--
-- Name: maintaince_default_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.maintaince_default_data_id_seq', 4, true);


--
-- Name: manu_store_counts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manu_store_counts_id_seq', 1, true);


--
-- Name: manufacture_companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacture_companies_id_seq', 20, true);


--
-- Name: manufacturing_default_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_default_data_id_seq', 1, false);


--
-- Name: manufacturing_executions_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_executions_arr_seq', 1, false);


--
-- Name: manufacturing_executions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_executions_id_seq', 4, true);


--
-- Name: manufacturing_halls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_halls_id_seq', 4, true);


--
-- Name: manufacturing_model_assets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_model_assets_id_seq', 1, false);


--
-- Name: manufacturing_model_emps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_model_emps_id_seq', 1, false);


--
-- Name: manufacturing_model_expenses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_model_expenses_id_seq', 1, false);


--
-- Name: manufacturing_model_services_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_model_services_id_seq', 1, false);


--
-- Name: manufacturing_model_workers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_model_workers_id_seq', 1, false);


--
-- Name: manufacturing_models_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_models_arr_seq', 1, false);


--
-- Name: manufacturing_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_models_id_seq', 10, true);


--
-- Name: manufacturing_orders_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_orders_arr_seq', 1, false);


--
-- Name: manufacturing_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_orders_id_seq', 7, true);


--
-- Name: manufacturing_requests_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_requests_arr_seq', 1, false);


--
-- Name: manufacturing_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_requests_id_seq', 5, true);


--
-- Name: manufacturing_secretariat_models_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_secretariat_models_arr_seq', 1, false);


--
-- Name: manufacturing_secretariat_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.manufacturing_secretariat_models_id_seq', 3, true);


--
-- Name: measuerments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.measuerments_id_seq', 12, true);


--
-- Name: migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.migrations_id_seq', 190, true);


--
-- Name: missions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.missions_id_seq', 1, true);


--
-- Name: module_settings_nums_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.module_settings_nums_id_seq', 2, true);


--
-- Name: modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.modules_id_seq', 1, true);


--
-- Name: more_products_halls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.more_products_halls_id_seq', 2, true);


--
-- Name: most_sales_products_column_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.most_sales_products_column_sechdules_id_seq', 1, true);


--
-- Name: most_sales_products_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.most_sales_products_columns_id_seq', 1, true);


--
-- Name: msg_rqsts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.msg_rqsts_id_seq', 1, true);


--
-- Name: my_follow_lists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.my_follow_lists_id_seq', 1, false);


--
-- Name: new_shipping_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.new_shipping_categories_id_seq', 1, true);


--
-- Name: new_shipping_rqst_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.new_shipping_rqst_types_id_seq', 1, false);


--
-- Name: new_shipping_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.new_shipping_types_id_seq', 1, false);


--
-- Name: notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.notifications_id_seq', 9, true);


--
-- Name: opening_entries_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.opening_entries_arr_seq', 1, false);


--
-- Name: opening_entries_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.opening_entries_details_id_seq', 1, false);


--
-- Name: opening_entries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.opening_entries_id_seq', 1, false);


--
-- Name: order_pays_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.order_pays_id_seq', 1, false);


--
-- Name: outcom_manufacturing_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.outcom_manufacturing_models_id_seq', 1, false);


--
-- Name: outcome_manufacturing_secretariat_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.outcome_manufacturing_secretariat_models_id_seq', 3, true);


--
-- Name: over_times_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.over_times_id_seq', 1, true);


--
-- Name: owners_reals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.owners_reals_id_seq', 1, false);


--
-- Name: pack_prems_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pack_prems_id_seq', 9619, true);


--
-- Name: packages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.packages_id_seq', 15, true);


--
-- Name: partners_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.partners_id_seq', 3, true);


--
-- Name: pay_profit_investors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pay_profit_investors_id_seq', 1, false);


--
-- Name: pay_salaries_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pay_salaries_arr_seq', 1, false);


--
-- Name: pay_salaries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pay_salaries_id_seq', 2, true);


--
-- Name: payment_voucher_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.payment_voucher_details_id_seq', 1, false);


--
-- Name: payment_vouchers_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.payment_vouchers_arr_seq', 1, false);


--
-- Name: payment_vouchers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.payment_vouchers_id_seq', 1, false);


--
-- Name: paymentss_products_real_projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.paymentss_products_real_projects_id_seq', 1, false);


--
-- Name: paymentss_real_projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.paymentss_real_projects_id_seq', 1, false);


--
-- Name: permission_to_exchange_goods_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.permission_to_exchange_goods_arr_seq', 1, false);


--
-- Name: permission_to_exchange_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.permission_to_exchange_goods_id_seq', 13, true);


--
-- Name: permission_to_recived_goods_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.permission_to_recived_goods_arr_seq', 1, false);


--
-- Name: permission_to_recived_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.permission_to_recived_goods_id_seq', 2, true);


--
-- Name: permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.permissions_id_seq', 831, true);


--
-- Name: places_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.places_id_seq', 6, true);


--
-- Name: places_reals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.places_reals_id_seq', 1, false);


--
-- Name: platforms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.platforms_id_seq', 8, true);


--
-- Name: polices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.polices_id_seq', 3, true);


--
-- Name: pro_details_imgs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pro_details_imgs_id_seq', 4, true);


--
-- Name: pro_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pro_notes_id_seq', 2, true);


--
-- Name: product_colors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_colors_id_seq', 1, false);


--
-- Name: product_details_e_com_designs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_details_e_com_designs_id_seq', 1, true);


--
-- Name: product_executing_receiving_secretariats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_executing_receiving_secretariats_id_seq', 38, true);


--
-- Name: product_inventories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_inventories_id_seq', 1, false);


--
-- Name: product_job_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_job_orders_id_seq', 16, true);


--
-- Name: product_maintainc_bills_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_maintainc_bills_id_seq', 1, false);


--
-- Name: product_manufacturing_executions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_manufacturing_executions_id_seq', 1, false);


--
-- Name: product_moves_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_moves_columns_id_seq', 1, true);


--
-- Name: product_moves_columns_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_moves_columns_sechdules_id_seq', 1, true);


--
-- Name: product_moves_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_moves_filter_twos_id_seq', 26, true);


--
-- Name: product_moves_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_moves_filters_id_seq', 26, true);


--
-- Name: product_moves_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_moves_id_seq', 1, false);


--
-- Name: product_quote_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_quote_images_id_seq', 1, false);


--
-- Name: product_return_without_bills_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_return_without_bills_id_seq', 12, true);


--
-- Name: product_sales_gifts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_sales_gifts_id_seq', 1, false);


--
-- Name: product_sales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_sales_id_seq', 1, false);


--
-- Name: product_sales_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_sales_orders_id_seq', 1, false);


--
-- Name: product_sales_subscribes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_sales_subscribes_id_seq', 1, false);


--
-- Name: product_settlements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_settlements_id_seq', 1, false);


--
-- Name: product_sizes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_sizes_id_seq', 1, false);


--
-- Name: product_thicknesses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_thicknesses_id_seq', 1, false);


--
-- Name: product_type_defaults_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_type_defaults_id_seq', 2, true);


--
-- Name: product_units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.product_units_id_seq', 1, false);


--
-- Name: products_client_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_client_requests_id_seq', 1, false);


--
-- Name: products_consists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_consists_id_seq', 1, false);


--
-- Name: products_executing_receivings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_executing_receivings_id_seq', 1, false);


--
-- Name: products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_id_seq', 1, false);


--
-- Name: products_manufacturing_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_manufacturing_orders_id_seq', 1, false);


--
-- Name: products_manufacturing_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_manufacturing_requests_id_seq', 1, false);


--
-- Name: products_permission_to_exchange_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_permission_to_exchange_goods_id_seq', 1, false);


--
-- Name: products_permission_to_recived_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_permission_to_recived_goods_id_seq', 1, false);


--
-- Name: products_purchase_petrols_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_purchase_petrols_id_seq', 5, true);


--
-- Name: products_purchases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_purchases_id_seq', 1, false);


--
-- Name: products_purchases_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_purchases_orders_id_seq', 1, false);


--
-- Name: products_qties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_qties_id_seq', 1, false);


--
-- Name: products_quotes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_quotes_id_seq', 1, false);


--
-- Name: products_return_maintaince_bills_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_return_maintaince_bills_id_seq', 40, true);


--
-- Name: products_secretariat_export_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_secretariat_export_goods_id_seq', 1, false);


--
-- Name: products_secretariat_import_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_secretariat_import_goods_id_seq', 1, false);


--
-- Name: products_shortcomings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_shortcomings_id_seq', 1, false);


--
-- Name: products_start_periods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_start_periods_id_seq', 1, false);


--
-- Name: products_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_stores_id_seq', 1, false);


--
-- Name: products_stores_transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_stores_transfers_id_seq', 1, false);


--
-- Name: products_viras_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.products_viras_id_seq', 1, false);


--
-- Name: profit_sales_product_column_sechdulrs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.profit_sales_product_column_sechdulrs_id_seq', 1, true);


--
-- Name: profit_sales_product_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.profit_sales_product_columns_id_seq', 1, true);


--
-- Name: project_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.project_statuses_id_seq', 1, true);


--
-- Name: project_teams_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.project_teams_id_seq', 1, false);


--
-- Name: projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.projects_id_seq', 1, false);


--
-- Name: purch_bills_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purch_bills_columns_id_seq', 1, true);


--
-- Name: purch_bills_columns_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purch_bills_columns_sechdules_id_seq', 1, true);


--
-- Name: purch_bills_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purch_bills_filter_twos_id_seq', 5, true);


--
-- Name: purch_bills_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purch_bills_filters_id_seq', 5, true);


--
-- Name: purchase_petrols_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchase_petrols_arr_seq', 1, false);


--
-- Name: purchase_petrols_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchase_petrols_id_seq', 8, true);


--
-- Name: purchases_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchases_arr_seq', 1, false);


--
-- Name: purchases_default_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchases_default_data_id_seq', 3, true);


--
-- Name: purchases_expenses_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchases_expenses_types_id_seq', 1, false);


--
-- Name: purchases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchases_id_seq', 1, false);


--
-- Name: purchases_order_expenses_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchases_order_expenses_types_id_seq', 1, false);


--
-- Name: purchases_orders_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchases_orders_arr_seq', 1, false);


--
-- Name: purchases_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purchases_orders_id_seq', 1, false);


--
-- Name: purpose_travel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.purpose_travel_id_seq', 2, true);


--
-- Name: q_r_s_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.q_r_s_id_seq', 1, true);


--
-- Name: qualities_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.qualities_arr_seq', 1, false);


--
-- Name: qualities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.qualities_id_seq', 5, true);


--
-- Name: quality_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.quality_details_id_seq', 12, true);


--
-- Name: quote_images_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.quote_images_arr_seq', 1, false);


--
-- Name: quote_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.quote_images_id_seq', 1, false);


--
-- Name: quotes_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.quotes_arr_seq', 1, false);


--
-- Name: quotes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.quotes_id_seq', 1, false);


--
-- Name: rabih_education_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rabih_education_id_seq', 2, true);


--
-- Name: rates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rates_id_seq', 1, false);


--
-- Name: real_sate_projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.real_sate_projects_id_seq', 1, false);


--
-- Name: real_sate_projects_payments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.real_sate_projects_payments_id_seq', 1, false);


--
-- Name: real_state_default_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.real_state_default_data_id_seq', 1, true);


--
-- Name: real_units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.real_units_id_seq', 1, false);


--
-- Name: real_units_services_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.real_units_services_id_seq', 1, false);


--
-- Name: reasons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reasons_id_seq', 2, true);


--
-- Name: recipt_maintaince_errors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recipt_maintaince_errors_id_seq', 1, false);


--
-- Name: recipt_maintainces_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recipt_maintainces_arr_seq', 1, false);


--
-- Name: recipt_maintainces_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recipt_maintainces_id_seq', 1, false);


--
-- Name: recipt_voucher_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recipt_voucher_details_id_seq', 1, false);


--
-- Name: recipt_vouchers_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recipt_vouchers_arr_seq', 1, false);


--
-- Name: recipt_vouchers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recipt_vouchers_id_seq', 1, false);


--
-- Name: recipts_sales_petrols_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recipts_sales_petrols_id_seq', 6, true);


--
-- Name: recipts_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recipts_types_id_seq', 1, false);


--
-- Name: recived_purch_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_purch_products_id_seq', 1, false);


--
-- Name: recived_purchts_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_purchts_arr_seq', 1, false);


--
-- Name: recived_purchts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_purchts_id_seq', 1, false);


--
-- Name: recived_sales_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_sales_arr_seq', 1, false);


--
-- Name: recived_sales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_sales_id_seq', 1, false);


--
-- Name: recived_sales_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_sales_products_id_seq', 1, false);


--
-- Name: recived_shipment_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_shipment_goods_id_seq', 1, false);


--
-- Name: recived_shipments_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_shipments_arr_seq', 1, false);


--
-- Name: recived_shipments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.recived_shipments_id_seq', 1, false);


--
-- Name: reg_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reg_courses_id_seq', 3, true);


--
-- Name: reg_courses_students_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reg_courses_students_id_seq', 3, true);


--
-- Name: reg_over_times_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reg_over_times_arr_seq', 1, false);


--
-- Name: reg_over_times_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reg_over_times_id_seq', 2, true);


--
-- Name: remove_products_halls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.remove_products_halls_id_seq', 1, true);


--
-- Name: rent_contracts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rent_contracts_id_seq', 1, false);


--
-- Name: rent_period_reals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rent_period_reals_id_seq', 1, false);


--
-- Name: reports_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reports_settings_id_seq', 1, true);


--
-- Name: reservations_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reservations_arr_seq', 1, false);


--
-- Name: reservations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reservations_id_seq', 4, true);


--
-- Name: reserve_course_days_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reserve_course_days_id_seq', 6, true);


--
-- Name: reserve_course_students_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reserve_course_students_id_seq', 3, true);


--
-- Name: reserve_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reserve_courses_id_seq', 1, true);


--
-- Name: resignation_requests_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resignation_requests_arr_seq', 1, false);


--
-- Name: resignation_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resignation_requests_id_seq', 1, false);


--
-- Name: resturant_abouts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_abouts_id_seq', 1, true);


--
-- Name: resturant_blogs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_blogs_id_seq', 3, true);


--
-- Name: resturant_cart_check_styles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_cart_check_styles_id_seq', 1, true);


--
-- Name: resturant_carts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_carts_id_seq', 1, false);


--
-- Name: resturant_cupon_codes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_cupon_codes_id_seq', 1, true);


--
-- Name: resturant_galleries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_galleries_id_seq', 8, true);


--
-- Name: resturant_homes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_homes_id_seq', 1, true);


--
-- Name: resturant_index_style_i_i_s_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_index_style_i_i_s_id_seq', 1, true);


--
-- Name: resturant_index_style_i_s_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_index_style_i_s_id_seq', 1, true);


--
-- Name: resturant_menu_styles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_menu_styles_id_seq', 1, true);


--
-- Name: resturant_nav_foot_styles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_nav_foot_styles_id_seq', 1, true);


--
-- Name: resturant_privacies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_privacies_id_seq', 1, true);


--
-- Name: resturant_reservations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_reservations_id_seq', 1, true);


--
-- Name: resturant_reviews_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_reviews_id_seq', 4, true);


--
-- Name: resturant_sliders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_sliders_id_seq', 3, true);


--
-- Name: resturant_socials_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_socials_id_seq', 1, true);


--
-- Name: resturant_styles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_styles_id_seq', 1, true);


--
-- Name: resturant_sup_page_styles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_sup_page_styles_id_seq', 1, true);


--
-- Name: resturant_tables_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_tables_id_seq', 28, true);


--
-- Name: resturant_terms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_terms_id_seq', 1, true);


--
-- Name: resturant_video_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.resturant_video_sections_id_seq', 1, true);


--
-- Name: return_maintaince_bills_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_maintaince_bills_arr_seq', 1, false);


--
-- Name: return_maintaince_bills_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_maintaince_bills_id_seq', 18, true);


--
-- Name: return_products_stores_transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_products_stores_transfers_id_seq', 4, true);


--
-- Name: return_purch_bills_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_purch_bills_filter_twos_id_seq', 1, false);


--
-- Name: return_purch_bills_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_purch_bills_filters_id_seq', 1, false);


--
-- Name: return_purch_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_purch_products_id_seq', 1, false);


--
-- Name: return_purches_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_purches_arr_seq', 1, false);


--
-- Name: return_purches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_purches_id_seq', 1, false);


--
-- Name: return_resons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_resons_id_seq', 1, false);


--
-- Name: return_sales_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_sales_arr_seq', 1, false);


--
-- Name: return_sales_bills_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_sales_bills_filter_twos_id_seq', 1, false);


--
-- Name: return_sales_bills_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_sales_bills_filters_id_seq', 1, false);


--
-- Name: return_sales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_sales_id_seq', 1, false);


--
-- Name: return_sales_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_sales_products_id_seq', 1, false);


--
-- Name: return_stors_transfers_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_stors_transfers_arr_seq', 1, false);


--
-- Name: return_stors_transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_stors_transfers_id_seq', 2, true);


--
-- Name: return_without_bills_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_without_bills_arr_seq', 1, false);


--
-- Name: return_without_bills_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.return_without_bills_id_seq', 1, false);


--
-- Name: roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.roles_id_seq', 23, true);


--
-- Name: room_reservations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.room_reservations_id_seq', 16, true);


--
-- Name: rooms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rooms_id_seq', 3, true);


--
-- Name: rooms_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rooms_types_id_seq', 1, true);


--
-- Name: rqst_transports_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rqst_transports_arr_seq', 1, false);


--
-- Name: rqst_transports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.rqst_transports_id_seq', 1, false);


--
-- Name: safe_transfer_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.safe_transfer_columns_id_seq', 1, true);


--
-- Name: safe_transfer_columns_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.safe_transfer_columns_sechdules_id_seq', 1, true);


--
-- Name: safe_transfer_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.safe_transfer_filter_twos_id_seq', 1, true);


--
-- Name: safe_transfer_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.safe_transfer_filters_id_seq', 1, true);


--
-- Name: safe_transfers_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.safe_transfers_arr_seq', 1, false);


--
-- Name: safe_transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.safe_transfers_id_seq', 1, false);


--
-- Name: safes_banks_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.safes_banks_arr_seq', 1, false);


--
-- Name: safes_banks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.safes_banks_id_seq', 11, true);


--
-- Name: sales_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_arr_seq', 1, false);


--
-- Name: sales_bills_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_bills_columns_id_seq', 1, true);


--
-- Name: sales_bills_columns_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_bills_columns_sechdules_id_seq', 1, true);


--
-- Name: sales_bills_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_bills_filter_twos_id_seq', 12, true);


--
-- Name: sales_bills_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_bills_filters_id_seq', 12, true);


--
-- Name: sales_contracts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_contracts_id_seq', 1, false);


--
-- Name: sales_default_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_default_data_id_seq', 4, true);


--
-- Name: sales_fifo_qties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_fifo_qties_id_seq', 2, true);


--
-- Name: sales_gifts_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_gifts_arr_seq', 1, false);


--
-- Name: sales_gifts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_gifts_id_seq', 1, false);


--
-- Name: sales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_id_seq', 1, false);


--
-- Name: sales_maint_fifo_qties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_maint_fifo_qties_id_seq', 1, false);


--
-- Name: sales_orders_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_orders_arr_seq', 1, false);


--
-- Name: sales_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_orders_id_seq', 1, false);


--
-- Name: sales_petrols_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_petrols_arr_seq', 1, false);


--
-- Name: sales_petrols_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_petrols_id_seq', 3, true);


--
-- Name: sales_serial; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_serial', 4, true);


--
-- Name: sales_subscribes_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_subscribes_arr_seq', 1, false);


--
-- Name: sales_subscribes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sales_subscribes_id_seq', 1, false);


--
-- Name: scientific_materials_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.scientific_materials_id_seq', 1, true);


--
-- Name: secretariat_export_goods_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.secretariat_export_goods_arr_seq', 1, false);


--
-- Name: secretariat_export_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.secretariat_export_goods_id_seq', 1, true);


--
-- Name: secretariat_import_goods_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.secretariat_import_goods_arr_seq', 1, false);


--
-- Name: secretariat_import_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.secretariat_import_goods_id_seq', 4, true);


--
-- Name: secretariat_qties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.secretariat_qties_id_seq', 1, false);


--
-- Name: secretariat_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.secretariat_stores_id_seq', 2, true);


--
-- Name: select_a_p_i_s_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.select_a_p_i_s_id_seq', 2, true);


--
-- Name: server_d_b_s_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.server_d_b_s_id_seq', 1, false);


--
-- Name: services_reals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.services_reals_id_seq', 1, false);


--
-- Name: settlements_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.settlements_arr_seq', 1, false);


--
-- Name: settlements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.settlements_id_seq', 1, false);


--
-- Name: sewing_accessories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_accessories_id_seq', 1, false);


--
-- Name: sewing_al_kabkat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_al_kabkat_id_seq', 1, false);


--
-- Name: sewing_al_taktak_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_al_taktak_id_seq', 1, false);


--
-- Name: sewing_buttons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_buttons_id_seq', 1, false);


--
-- Name: sewing_chest_pocket_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_chest_pocket_fillings_id_seq', 1, false);


--
-- Name: sewing_chest_pockets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_chest_pockets_id_seq', 1, false);


--
-- Name: sewing_collar_paddings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_collar_paddings_id_seq', 1, false);


--
-- Name: sewing_collars_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_collars_id_seq', 1, false);


--
-- Name: sewing_cseed_sleeves_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_cseed_sleeves_id_seq', 1, false);


--
-- Name: sewing_cupcake_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_cupcake_fillings_id_seq', 1, false);


--
-- Name: sewing_embroideries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_embroideries_id_seq', 1, false);


--
-- Name: sewing_order_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_order_modules_id_seq', 1, false);


--
-- Name: sewing_orders_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_orders_arr_seq', 1, false);


--
-- Name: sewing_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_orders_id_seq', 1, false);


--
-- Name: sewing_request_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_request_details_id_seq', 1, false);


--
-- Name: sewing_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_requests_id_seq', 1, false);


--
-- Name: sewing_seed_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_seed_fillings_id_seq', 1, false);


--
-- Name: sewing_seeds_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_seeds_id_seq', 1, false);


--
-- Name: sewing_side_pockets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_side_pockets_id_seq', 1, false);


--
-- Name: sewing_sleeves_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_sleeves_id_seq', 1, false);


--
-- Name: sewing_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sewing_types_id_seq', 1, false);


--
-- Name: shifts_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shifts_arr_seq', 1, false);


--
-- Name: shifts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shifts_id_seq', 17, true);


--
-- Name: shipment_moves_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_moves_id_seq', 1, false);


--
-- Name: shipment_receipts_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_receipts_arr_seq', 1, false);


--
-- Name: shipment_receipts_clients_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_receipts_clients_arr_seq', 1, false);


--
-- Name: shipment_receipts_clients_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_receipts_clients_id_seq', 7, true);


--
-- Name: shipment_receipts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_receipts_id_seq', 1, true);


--
-- Name: shipment_receipts_lists_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_receipts_lists_arr_seq', 1, false);


--
-- Name: shipment_receipts_lists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_receipts_lists_id_seq', 1, true);


--
-- Name: shipment_requests_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_requests_arr_seq', 1, false);


--
-- Name: shipment_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipment_requests_id_seq', 1, false);


--
-- Name: shipments_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipments_arr_seq', 1, false);


--
-- Name: shipments_distribution_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipments_distribution_goods_id_seq', 1, false);


--
-- Name: shipments_distribution_workers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipments_distribution_workers_id_seq', 1, false);


--
-- Name: shipments_distributions_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipments_distributions_arr_seq', 1, false);


--
-- Name: shipments_distributions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipments_distributions_id_seq', 1, false);


--
-- Name: shipments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipments_id_seq', 1, false);


--
-- Name: shipping_companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_companies_id_seq', 5, true);


--
-- Name: shipping_defaults_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_defaults_id_seq', 1, true);


--
-- Name: shipping_list_tickets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_list_tickets_id_seq', 28, true);


--
-- Name: shipping_lists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_lists_id_seq', 22, true);


--
-- Name: shipping_orders_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_orders_arr_seq', 1, false);


--
-- Name: shipping_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_orders_id_seq', 1, false);


--
-- Name: shipping_prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_prices_id_seq', 1, false);


--
-- Name: shipping_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_statuses_id_seq', 1, true);


--
-- Name: shipping_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shipping_types_id_seq', 1, true);


--
-- Name: shippment_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shippment_products_id_seq', 1, false);


--
-- Name: shortcomings_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shortcomings_arr_seq', 1, false);


--
-- Name: shortcomings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.shortcomings_id_seq', 1, false);


--
-- Name: show_print_defaults_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.show_print_defaults_id_seq', 1, true);


--
-- Name: social_media_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.social_media_id_seq', 1, true);


--
-- Name: special_cases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.special_cases_id_seq', 2, true);


--
-- Name: spend_profits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.spend_profits_id_seq', 7, true);


--
-- Name: start_periods_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.start_periods_arr_seq', 1, false);


--
-- Name: start_periods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.start_periods_id_seq', 1, false);


--
-- Name: store_count_sales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.store_count_sales_id_seq', 1, true);


--
-- Name: store_counts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.store_counts_id_seq', 1, true);


--
-- Name: store_transfer_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.store_transfer_filter_twos_id_seq', 2, true);


--
-- Name: store_transfer_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.store_transfer_filters_id_seq', 2, true);


--
-- Name: stores_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_arr_seq', 1, false);


--
-- Name: stores_default_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_default_data_id_seq', 3, true);


--
-- Name: stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_id_seq', 21, true);


--
-- Name: stores_moves_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_moves_columns_id_seq', 1, true);


--
-- Name: stores_moves_columns_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_moves_columns_sechdules_id_seq', 1, true);


--
-- Name: stores_moves_filter_twos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_moves_filter_twos_id_seq', 1, false);


--
-- Name: stores_moves_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_moves_filters_id_seq', 26, true);


--
-- Name: stores_moves_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_moves_id_seq', 195, true);


--
-- Name: stores_transfer_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_transfer_columns_id_seq', 1, true);


--
-- Name: stores_transfer_columns_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stores_transfer_columns_sechdules_id_seq', 1, true);


--
-- Name: stors_transfers_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stors_transfers_arr_seq', 1, false);


--
-- Name: stors_transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.stors_transfers_id_seq', 1, false);


--
-- Name: student_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.student_groups_id_seq', 1, true);


--
-- Name: student_importants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.student_importants_id_seq', 1, false);


--
-- Name: students_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.students_id_seq', 1, true);


--
-- Name: sub_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sub_images_id_seq', 1, false);


--
-- Name: sub_virables_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sub_virables_id_seq', 21, true);


--
-- Name: subscribe_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.subscribe_types_id_seq', 5, true);


--
-- Name: sup_pages_e_com_designs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sup_pages_e_com_designs_id_seq', 1, true);


--
-- Name: sup_pages_part_two_e_com_designs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sup_pages_part_two_e_com_designs_id_seq', 1, true);


--
-- Name: sup_pages_wish_comp_e_com_designs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sup_pages_wish_comp_e_com_designs_id_seq', 1, true);


--
-- Name: taxes_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.taxes_arr_seq', 1, false);


--
-- Name: taxes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.taxes_id_seq', 3, true);


--
-- Name: teachers_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.teachers_groups_id_seq', 1, true);


--
-- Name: teachers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.teachers_id_seq', 3, true);


--
-- Name: teachers_subjects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.teachers_subjects_id_seq', 4, true);


--
-- Name: tenants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.tenants_id_seq', 1, false);


--
-- Name: terms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.terms_id_seq', 2, true);


--
-- Name: terms_maintainces_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.terms_maintainces_id_seq', 2, true);


--
-- Name: testclients_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.testclients_id_seq', 1, false);


--
-- Name: ticekt_issues_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ticekt_issues_id_seq', 1, false);


--
-- Name: ticket_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ticket_products_id_seq', 26, true);


--
-- Name: tickets_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.tickets_arr_seq', 1, false);


--
-- Name: tickets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.tickets_id_seq', 18, true);


--
-- Name: translation_tourism_companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.translation_tourism_companies_id_seq', 1, true);


--
-- Name: translte_modules_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.translte_modules_details_id_seq', 2, true);


--
-- Name: translte_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.translte_modules_id_seq', 1, true);


--
-- Name: transltors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.transltors_id_seq', 47, true);


--
-- Name: transport_contractors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.transport_contractors_id_seq', 1, false);


--
-- Name: transport_permit_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.transport_permit_details_id_seq', 1, false);


--
-- Name: transport_permits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.transport_permits_id_seq', 1, false);


--
-- Name: transport_prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.transport_prices_id_seq', 1, false);


--
-- Name: transport_receivers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.transport_receivers_id_seq', 1, false);


--
-- Name: transports_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.transports_arr_seq', 1, false);


--
-- Name: transports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.transports_id_seq', 1, false);


--
-- Name: unloading_shipments_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.unloading_shipments_arr_seq', 1, false);


--
-- Name: unloading_shipments_goods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.unloading_shipments_goods_id_seq', 1, false);


--
-- Name: unloading_shipments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.unloading_shipments_id_seq', 1, false);


--
-- Name: unloading_shipments_workers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.unloading_shipments_workers_id_seq', 1, false);


--
-- Name: update_values_investors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.update_values_investors_id_seq', 1, false);


--
-- Name: upload_accountings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.upload_accountings_id_seq', 1, false);


--
-- Name: users_moves_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.users_moves_id_seq', 3210, true);


--
-- Name: v_a_prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.v_a_prices_id_seq', 1, false);


--
-- Name: v_a_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.v_a_products_id_seq', 1, false);


--
-- Name: v_a_qties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.v_a_qties_id_seq', 1, false);


--
-- Name: vendor_account_statement_column_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vendor_account_statement_column_sechdules_id_seq', 1, true);


--
-- Name: vendor_account_statement_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vendor_account_statement_columns_id_seq', 1, true);


--
-- Name: vendor_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vendor_filters_id_seq', 18, true);


--
-- Name: vendor_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vendor_products_id_seq', 1, false);


--
-- Name: vendors_arr_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vendors_arr_seq', 1, false);


--
-- Name: vendors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vendors_id_seq', 21, true);


--
-- Name: vendors_statements_column_sechdules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vendors_statements_column_sechdules_id_seq', 1, true);


--
-- Name: vendors_statements_columns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vendors_statements_columns_id_seq', 1, true);


--
-- Name: virables_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.virables_id_seq', 9, true);


--
-- Name: vouchers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.vouchers_id_seq', 1, false);


--
-- Name: web_sliders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.web_sliders_id_seq', 2, true);


--
-- Name: wishlists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.wishlists_id_seq', 1, false);


--
-- Name: work_departments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.work_departments_id_seq', 26, true);


--
-- Name: workers_sales_petrols_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.workers_sales_petrols_id_seq', 6, true);


--
-- Name: zkteco_devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.zkteco_devices_id_seq', 1, false);


--
-- Name: a_v_pro_check_qties a_v_pro_check_qties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.a_v_pro_check_qties
    ADD CONSTRAINT a_v_pro_check_qties_pkey PRIMARY KEY (id);


--
-- Name: abouts abouts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.abouts
    ADD CONSTRAINT abouts_pkey PRIMARY KEY (id);


--
-- Name: abstracts_contractors abstracts_contractors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.abstracts_contractors
    ADD CONSTRAINT abstracts_contractors_pkey PRIMARY KEY (id);


--
-- Name: acccounting_manuals acccounting_manuals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.acccounting_manuals
    ADD CONSTRAINT acccounting_manuals_pkey PRIMARY KEY (id);


--
-- Name: accounts_default_data accounts_default_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.accounts_default_data
    ADD CONSTRAINT accounts_default_data_pkey PRIMARY KEY (id);


--
-- Name: activites activites_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.activites
    ADD CONSTRAINT activites_pkey PRIMARY KEY (id);


--
-- Name: add_translates add_translates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.add_translates
    ADD CONSTRAINT add_translates_pkey PRIMARY KEY (id);


--
-- Name: additional_products additional_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.additional_products
    ADD CONSTRAINT additional_products_pkey PRIMARY KEY (id);


--
-- Name: addressses addressses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.addressses
    ADD CONSTRAINT addressses_pkey PRIMARY KEY (id);


--
-- Name: admins admins_email_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.admins
    ADD CONSTRAINT admins_email_unique UNIQUE (email);


--
-- Name: admins admins_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.admins
    ADD CONSTRAINT admins_pkey PRIMARY KEY (id);


--
-- Name: all_groups all_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.all_groups
    ADD CONSTRAINT all_groups_pkey PRIMARY KEY (id);


--
-- Name: allowences_emps allowences_emps_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.allowences_emps
    ADD CONSTRAINT allowences_emps_pkey PRIMARY KEY (id);


--
-- Name: apps_change_prices apps_change_prices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.apps_change_prices
    ADD CONSTRAINT apps_change_prices_pkey PRIMARY KEY (id);


--
-- Name: articles articles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.articles
    ADD CONSTRAINT articles_pkey PRIMARY KEY (id);


--
-- Name: assay_bill_details assay_bill_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_bill_details
    ADD CONSTRAINT assay_bill_details_pkey PRIMARY KEY (id);


--
-- Name: assay_bills assay_bills_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_bills
    ADD CONSTRAINT assay_bills_pkey PRIMARY KEY (id);


--
-- Name: assay_project_details assay_project_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_project_details
    ADD CONSTRAINT assay_project_details_pkey PRIMARY KEY (id);


--
-- Name: assay_projects assay_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_projects
    ADD CONSTRAINT assay_projects_pkey PRIMARY KEY (id);


--
-- Name: assembly_products assembly_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assembly_products
    ADD CONSTRAINT assembly_products_pkey PRIMARY KEY (id);


--
-- Name: assets_expenses assets_expenses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets_expenses
    ADD CONSTRAINT assets_expenses_pkey PRIMARY KEY (id);


--
-- Name: assets assets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets
    ADD CONSTRAINT assets_pkey PRIMARY KEY (id);


--
-- Name: attend_departure_import attend_departure_import_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attend_departure_import
    ADD CONSTRAINT attend_departure_import_pkey PRIMARY KEY (id);


--
-- Name: attendance_emps attendance_emps_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance_emps
    ADD CONSTRAINT attendance_emps_pkey PRIMARY KEY (id);


--
-- Name: attendances attendances_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendances_pkey PRIMARY KEY (id);


--
-- Name: attendence_policy_emps attendence_policy_emps_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendence_policy_emps
    ADD CONSTRAINT attendence_policy_emps_pkey PRIMARY KEY (id);


--
-- Name: barcode_products barcode_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_products
    ADD CONSTRAINT barcode_products_pkey PRIMARY KEY (id);


--
-- Name: barcode_settings barcode_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_settings
    ADD CONSTRAINT barcode_settings_pkey PRIMARY KEY (id);


--
-- Name: barcode_shows barcode_shows_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_shows
    ADD CONSTRAINT barcode_shows_pkey PRIMARY KEY (id);


--
-- Name: befroe_footers befroe_footers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.befroe_footers
    ADD CONSTRAINT befroe_footers_pkey PRIMARY KEY (id);


--
-- Name: beneftis_types beneftis_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.beneftis_types
    ADD CONSTRAINT beneftis_types_pkey PRIMARY KEY (id);


--
-- Name: bones_sales_petrols bones_sales_petrols_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.bones_sales_petrols
    ADD CONSTRAINT bones_sales_petrols_pkey PRIMARY KEY (id);


--
-- Name: bones_types bones_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.bones_types
    ADD CONSTRAINT bones_types_pkey PRIMARY KEY (id);


--
-- Name: borrowas borrowas_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.borrowas
    ADD CONSTRAINT borrowas_pkey PRIMARY KEY (id);


--
-- Name: branches branches_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.branches
    ADD CONSTRAINT branches_pkey PRIMARY KEY (id);


--
-- Name: brands brands_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.brands
    ADD CONSTRAINT brands_pkey PRIMARY KEY (id);


--
-- Name: campaigns campaigns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.campaigns
    ADD CONSTRAINT campaigns_pkey PRIMARY KEY (id);


--
-- Name: capital_increases capital_increases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.capital_increases
    ADD CONSTRAINT capital_increases_pkey PRIMARY KEY (id);


--
-- Name: capitals capitals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.capitals
    ADD CONSTRAINT capitals_pkey PRIMARY KEY (id);


--
-- Name: car_shippings car_shippings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.car_shippings
    ADD CONSTRAINT car_shippings_pkey PRIMARY KEY (id);


--
-- Name: cars_sales_petrols cars_sales_petrols_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cars_sales_petrols
    ADD CONSTRAINT cars_sales_petrols_pkey PRIMARY KEY (id);


--
-- Name: cart_stores cart_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cart_stores
    ADD CONSTRAINT cart_stores_pkey PRIMARY KEY (id);


--
-- Name: catalog_requests catalog_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.catalog_requests
    ADD CONSTRAINT catalog_requests_pkey PRIMARY KEY (id);


--
-- Name: chat_issues chat_issues_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_issues
    ADD CONSTRAINT chat_issues_pkey PRIMARY KEY (id);


--
-- Name: checks_types checks_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.checks_types
    ADD CONSTRAINT checks_types_pkey PRIMARY KEY (id);


--
-- Name: cities cities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities
    ADD CONSTRAINT cities_pkey PRIMARY KEY (id);


--
-- Name: clearances clearances_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.clearances
    ADD CONSTRAINT clearances_pkey PRIMARY KEY (id);


--
-- Name: client_account_statement_column_sechdules client_account_statement_column_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_account_statement_column_sechdules
    ADD CONSTRAINT client_account_statement_column_sechdules_pkey PRIMARY KEY (id);


--
-- Name: client_account_statement_columns client_account_statement_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_account_statement_columns
    ADD CONSTRAINT client_account_statement_columns_pkey PRIMARY KEY (id);


--
-- Name: client_filters client_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_filters
    ADD CONSTRAINT client_filters_pkey PRIMARY KEY (id);


--
-- Name: client_requests client_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_requests
    ADD CONSTRAINT client_requests_pkey PRIMARY KEY (id);


--
-- Name: client_sales_petrols client_sales_petrols_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_sales_petrols
    ADD CONSTRAINT client_sales_petrols_pkey PRIMARY KEY (id);


--
-- Name: client_statuses client_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_statuses
    ADD CONSTRAINT client_statuses_pkey PRIMARY KEY (id);


--
-- Name: clients_statements_column_sechdules clients_statements_column_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.clients_statements_column_sechdules
    ADD CONSTRAINT clients_statements_column_sechdules_pkey PRIMARY KEY (id);


--
-- Name: clients_statements_columns clients_statements_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.clients_statements_columns
    ADD CONSTRAINT clients_statements_columns_pkey PRIMARY KEY (id);


--
-- Name: coins coins_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.coins
    ADD CONSTRAINT coins_pkey PRIMARY KEY (id);


--
-- Name: comments_clients comments_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments_clients
    ADD CONSTRAINT comments_clients_pkey PRIMARY KEY (id);


--
-- Name: comments comments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_pkey PRIMARY KEY (id);


--
-- Name: company_cars company_cars_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.company_cars
    ADD CONSTRAINT company_cars_pkey PRIMARY KEY (id);


--
-- Name: company_data company_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.company_data
    ADD CONSTRAINT company_data_pkey PRIMARY KEY (id);


--
-- Name: compare_prices_columns compare_prices_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compare_prices_columns
    ADD CONSTRAINT compare_prices_columns_pkey PRIMARY KEY (id);


--
-- Name: compare_prices_columns_sechdules compare_prices_columns_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compare_prices_columns_sechdules
    ADD CONSTRAINT compare_prices_columns_sechdules_pkey PRIMARY KEY (id);


--
-- Name: compare_prices_filter_twos compare_prices_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compare_prices_filter_twos
    ADD CONSTRAINT compare_prices_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: compare_prices_filters compare_prices_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compare_prices_filters
    ADD CONSTRAINT compare_prices_filters_pkey PRIMARY KEY (id);


--
-- Name: compares compares_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compares
    ADD CONSTRAINT compares_pkey PRIMARY KEY (id);


--
-- Name: competitors competitors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.competitors
    ADD CONSTRAINT competitors_pkey PRIMARY KEY (id);


--
-- Name: consist_maintainces consist_maintainces_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consist_maintainces
    ADD CONSTRAINT consist_maintainces_pkey PRIMARY KEY (id);


--
-- Name: consists consists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consists
    ADD CONSTRAINT consists_pkey PRIMARY KEY (id);


--
-- Name: contact_u_s contact_u_s_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contact_u_s
    ADD CONSTRAINT contact_u_s_pkey PRIMARY KEY (id);


--
-- Name: contract_statuses contract_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contract_statuses
    ADD CONSTRAINT contract_statuses_pkey PRIMARY KEY (id);


--
-- Name: contractors_real_projects contractors_real_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contractors_real_projects
    ADD CONSTRAINT contractors_real_projects_pkey PRIMARY KEY (id);


--
-- Name: cost_centers cost_centers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cost_centers
    ADD CONSTRAINT cost_centers_pkey PRIMARY KEY (id);


--
-- Name: counters_types counters_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.counters_types
    ADD CONSTRAINT counters_types_pkey PRIMARY KEY (id);


--
-- Name: countris countris_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countris
    ADD CONSTRAINT countris_pkey PRIMARY KEY (id);


--
-- Name: coupon_codes coupon_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.coupon_codes
    ADD CONSTRAINT coupon_codes_pkey PRIMARY KEY (id);


--
-- Name: courses_categories courses_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses_categories
    ADD CONSTRAINT courses_categories_pkey PRIMARY KEY (id);


--
-- Name: courses_halls courses_halls_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses_halls
    ADD CONSTRAINT courses_halls_pkey PRIMARY KEY (id);


--
-- Name: courses courses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses
    ADD CONSTRAINT courses_pkey PRIMARY KEY (id);


--
-- Name: courses_types courses_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.courses_types
    ADD CONSTRAINT courses_types_pkey PRIMARY KEY (id);


--
-- Name: crm_default_data crm_default_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data
    ADD CONSTRAINT crm_default_data_pkey PRIMARY KEY (id);


--
-- Name: custom_prints custom_prints_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.custom_prints
    ADD CONSTRAINT custom_prints_pkey PRIMARY KEY (id);


--
-- Name: customer_comments_products customer_comments_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_comments_products
    ADD CONSTRAINT customer_comments_products_pkey PRIMARY KEY (id);


--
-- Name: customer_follow_ups customer_follow_ups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_follow_ups
    ADD CONSTRAINT customer_follow_ups_pkey PRIMARY KEY (id);


--
-- Name: customer_sizes customer_sizes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_sizes
    ADD CONSTRAINT customer_sizes_pkey PRIMARY KEY (id);


--
-- Name: customers_files customers_files_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_files
    ADD CONSTRAINT customers_files_pkey PRIMARY KEY (id);


--
-- Name: customers_groups customers_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_groups
    ADD CONSTRAINT customers_groups_pkey PRIMARY KEY (id);


--
-- Name: customers customers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_pkey PRIMARY KEY (id);


--
-- Name: customers_rate_types customers_rate_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_rate_types
    ADD CONSTRAINT customers_rate_types_pkey PRIMARY KEY (id);


--
-- Name: customers_tickets customers_tickets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_tickets
    ADD CONSTRAINT customers_tickets_pkey PRIMARY KEY (id);


--
-- Name: deducations_types deducations_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deducations_types
    ADD CONSTRAINT deducations_types_pkey PRIMARY KEY (id);


--
-- Name: deductions deductions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deductions
    ADD CONSTRAINT deductions_pkey PRIMARY KEY (id);


--
-- Name: default_data_show_hides default_data_show_hides_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_data_show_hides
    ADD CONSTRAINT default_data_show_hides_pkey PRIMARY KEY (id);


--
-- Name: default_sewing_orders default_sewing_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_pkey PRIMARY KEY (id);


--
-- Name: delivery_apps delivery_apps_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.delivery_apps
    ADD CONSTRAINT delivery_apps_pkey PRIMARY KEY (id);


--
-- Name: depaarture_policy_emps depaarture_policy_emps_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.depaarture_policy_emps
    ADD CONSTRAINT depaarture_policy_emps_pkey PRIMARY KEY (id);


--
-- Name: departure_emps departure_emps_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departure_emps
    ADD CONSTRAINT departure_emps_pkey PRIMARY KEY (id);


--
-- Name: departures departures_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departures
    ADD CONSTRAINT departures_pkey PRIMARY KEY (id);


--
-- Name: desvice_cases desvice_cases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.desvice_cases
    ADD CONSTRAINT desvice_cases_pkey PRIMARY KEY (id);


--
-- Name: device_descrips device_descrips_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.device_descrips
    ADD CONSTRAINT device_descrips_pkey PRIMARY KEY (id);


--
-- Name: devices_typesies devices_typesies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.devices_typesies
    ADD CONSTRAINT devices_typesies_pkey PRIMARY KEY (id);


--
-- Name: disclaimers disclaimers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.disclaimers
    ADD CONSTRAINT disclaimers_pkey PRIMARY KEY (id);


--
-- Name: discounts_emps discounts_emps_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.discounts_emps
    ADD CONSTRAINT discounts_emps_pkey PRIMARY KEY (id);


--
-- Name: documentary__credits documentary__credits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.documentary__credits
    ADD CONSTRAINT documentary__credits_pkey PRIMARY KEY (id);


--
-- Name: domains domains_domain_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.domains
    ADD CONSTRAINT domains_domain_unique UNIQUE (domain);


--
-- Name: domains domains_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.domains
    ADD CONSTRAINT domains_pkey PRIMARY KEY (id);


--
-- Name: dxf_heights dxf_heights_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dxf_heights
    ADD CONSTRAINT dxf_heights_pkey PRIMARY KEY (id);


--
-- Name: emp_covenants emp_covenants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_covenants
    ADD CONSTRAINT emp_covenants_pkey PRIMARY KEY (id);


--
-- Name: emp_excs emp_excs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_excs
    ADD CONSTRAINT emp_excs_pkey PRIMARY KEY (id);


--
-- Name: emp_installment_details emp_installment_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_installment_details
    ADD CONSTRAINT emp_installment_details_pkey PRIMARY KEY (id);


--
-- Name: emp_installments emp_installments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_installments
    ADD CONSTRAINT emp_installments_pkey PRIMARY KEY (id);


--
-- Name: emp_mails emp_mails_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_mails
    ADD CONSTRAINT emp_mails_pkey PRIMARY KEY (id);


--
-- Name: emp_movements emp_movements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_movements
    ADD CONSTRAINT emp_movements_pkey PRIMARY KEY (id);


--
-- Name: emp_p_o_s_stores emp_p_o_s_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_p_o_s_stores
    ADD CONSTRAINT emp_p_o_s_stores_pkey PRIMARY KEY (id);


--
-- Name: emp_payment_accounts emp_payment_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_payment_accounts
    ADD CONSTRAINT emp_payment_accounts_pkey PRIMARY KEY (id);


--
-- Name: emp_ratios emp_ratios_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_ratios
    ADD CONSTRAINT emp_ratios_pkey PRIMARY KEY (id);


--
-- Name: emp_recipt_accounts emp_recipt_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_recipt_accounts
    ADD CONSTRAINT emp_recipt_accounts_pkey PRIMARY KEY (id);


--
-- Name: emp_safes emp_safes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_safes
    ADD CONSTRAINT emp_safes_pkey PRIMARY KEY (id);


--
-- Name: empassies empassies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.empassies
    ADD CONSTRAINT empassies_pkey PRIMARY KEY (id);


--
-- Name: empassy_reserve_dates empassy_reserve_dates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.empassy_reserve_dates
    ADD CONSTRAINT empassy_reserve_dates_pkey PRIMARY KEY (id);


--
-- Name: employesses employesses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employesses
    ADD CONSTRAINT employesses_pkey PRIMARY KEY (id);


--
-- Name: employment_levels employment_levels_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employment_levels
    ADD CONSTRAINT employment_levels_pkey PRIMARY KEY (id);


--
-- Name: emps_producation_points emps_producation_points_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emps_producation_points
    ADD CONSTRAINT emps_producation_points_pkey PRIMARY KEY (id);


--
-- Name: emps_producation_quantities emps_producation_quantities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emps_producation_quantities
    ADD CONSTRAINT emps_producation_quantities_pkey PRIMARY KEY (id);


--
-- Name: entitlements entitlements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.entitlements
    ADD CONSTRAINT entitlements_pkey PRIMARY KEY (id);


--
-- Name: events events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.events
    ADD CONSTRAINT events_pkey PRIMARY KEY (id);


--
-- Name: examinations_types examinations_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.examinations_types
    ADD CONSTRAINT examinations_types_pkey PRIMARY KEY (id);


--
-- Name: exchange_commissions exchange_commissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.exchange_commissions
    ADD CONSTRAINT exchange_commissions_pkey PRIMARY KEY (id);


--
-- Name: execute_job_order_models execute_job_order_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_job_order_models
    ADD CONSTRAINT execute_job_order_models_pkey PRIMARY KEY (id);


--
-- Name: execute_job_order_workmanships execute_job_order_workmanships_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_job_order_workmanships
    ADD CONSTRAINT execute_job_order_workmanships_pkey PRIMARY KEY (id);


--
-- Name: execute_job_orders execute_job_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_job_orders
    ADD CONSTRAINT execute_job_orders_pkey PRIMARY KEY (id);


--
-- Name: execute_sewing_orders execute_sewing_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_pkey PRIMARY KEY (id);


--
-- Name: executing_receiving_secretariats executing_receiving_secretariats_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executing_receiving_secretariats
    ADD CONSTRAINT executing_receiving_secretariats_pkey PRIMARY KEY (id);


--
-- Name: executing_receivings executing_receivings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executing_receivings
    ADD CONSTRAINT executing_receivings_pkey PRIMARY KEY (id);


--
-- Name: executor_filters executor_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executor_filters
    ADD CONSTRAINT executor_filters_pkey PRIMARY KEY (id);


--
-- Name: expenses_list_column_sechdules expenses_list_column_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expenses_list_column_sechdules
    ADD CONSTRAINT expenses_list_column_sechdules_pkey PRIMARY KEY (id);


--
-- Name: expenses_list_columns expenses_list_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expenses_list_columns
    ADD CONSTRAINT expenses_list_columns_pkey PRIMARY KEY (id);


--
-- Name: expenses_type_projects expenses_type_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expenses_type_projects
    ADD CONSTRAINT expenses_type_projects_pkey PRIMARY KEY (id);


--
-- Name: expenses_type_templates expenses_type_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expenses_type_templates
    ADD CONSTRAINT expenses_type_templates_pkey PRIMARY KEY (id);


--
-- Name: expire_date_qties expire_date_qties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.expire_date_qties
    ADD CONSTRAINT expire_date_qties_pkey PRIMARY KEY (id);


--
-- Name: export_checks export_checks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_pkey PRIMARY KEY (id);


--
-- Name: f_a_q_s f_a_q_s_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.f_a_q_s
    ADD CONSTRAINT f_a_q_s_pkey PRIMARY KEY (id);


--
-- Name: failed_jobs failed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.failed_jobs
    ADD CONSTRAINT failed_jobs_pkey PRIMARY KEY (id);


--
-- Name: failed_jobs failed_jobs_uuid_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.failed_jobs
    ADD CONSTRAINT failed_jobs_uuid_unique UNIQUE (uuid);


--
-- Name: faults_types faults_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.faults_types
    ADD CONSTRAINT faults_types_pkey PRIMARY KEY (id);


--
-- Name: fifo_qties fifo_qties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.fifo_qties
    ADD CONSTRAINT fifo_qties_pkey PRIMARY KEY (id);


--
-- Name: firewall_ips firewall_ips_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.firewall_ips
    ADD CONSTRAINT firewall_ips_pkey PRIMARY KEY (id);


--
-- Name: firewall_logs firewall_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.firewall_logs
    ADD CONSTRAINT firewall_logs_pkey PRIMARY KEY (id);


--
-- Name: follow_lists follow_lists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.follow_lists
    ADD CONSTRAINT follow_lists_pkey PRIMARY KEY (id);


--
-- Name: general_dailies general_dailies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.general_dailies
    ADD CONSTRAINT general_dailies_pkey PRIMARY KEY (id);


--
-- Name: goods_product_projects goods_product_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.goods_product_projects
    ADD CONSTRAINT goods_product_projects_pkey PRIMARY KEY (id);


--
-- Name: goods_projects goods_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.goods_projects
    ADD CONSTRAINT goods_projects_pkey PRIMARY KEY (id);


--
-- Name: governrates governrates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.governrates
    ADD CONSTRAINT governrates_pkey PRIMARY KEY (id);


--
-- Name: group_filters group_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.group_filters
    ADD CONSTRAINT group_filters_pkey PRIMARY KEY (id);


--
-- Name: holidays holidays_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.holidays
    ADD CONSTRAINT holidays_pkey PRIMARY KEY (id);


--
-- Name: holidays_types holidays_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.holidays_types
    ADD CONSTRAINT holidays_types_pkey PRIMARY KEY (id);


--
-- Name: home_e_com_designs home_e_com_designs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_e_com_designs
    ADD CONSTRAINT home_e_com_designs_pkey PRIMARY KEY (id);


--
-- Name: home_product_e_com_designs home_product_e_com_designs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_product_e_com_designs
    ADD CONSTRAINT home_product_e_com_designs_pkey PRIMARY KEY (id);


--
-- Name: import_expenses_types import_expenses_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.import_expenses_types
    ADD CONSTRAINT import_expenses_types_pkey PRIMARY KEY (id);


--
-- Name: import_new_prods import_new_prods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.import_new_prods
    ADD CONSTRAINT import_new_prods_pkey PRIMARY KEY (id);


--
-- Name: import_new_prods_starts import_new_prods_starts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.import_new_prods_starts
    ADD CONSTRAINT import_new_prods_starts_pkey PRIMARY KEY (id);


--
-- Name: in_out_logs in_out_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.in_out_logs
    ADD CONSTRAINT in_out_logs_pkey PRIMARY KEY (id);


--
-- Name: incom_checks incom_checks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_pkey PRIMARY KEY (id);


--
-- Name: incom_manufacturing_models incom_manufacturing_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_manufacturing_models
    ADD CONSTRAINT incom_manufacturing_models_pkey PRIMARY KEY (id);


--
-- Name: incom_manufacturing_secretariat_models incom_manufacturing_secretariat_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_manufacturing_secretariat_models
    ADD CONSTRAINT incom_manufacturing_secretariat_models_pkey PRIMARY KEY (id);


--
-- Name: install_companies_sales_bills_columns install_companies_sales_bills_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.install_companies_sales_bills_columns
    ADD CONSTRAINT install_companies_sales_bills_columns_pkey PRIMARY KEY (id);


--
-- Name: install_companies_sales_bills_columns_sechdules install_companies_sales_bills_columns_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.install_companies_sales_bills_columns_sechdules
    ADD CONSTRAINT install_companies_sales_bills_columns_sechdules_pkey PRIMARY KEY (id);


--
-- Name: installment_companies installment_companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installment_companies
    ADD CONSTRAINT installment_companies_pkey PRIMARY KEY (id);


--
-- Name: installment_companies_ratios installment_companies_ratios_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installment_companies_ratios
    ADD CONSTRAINT installment_companies_ratios_pkey PRIMARY KEY (id);


--
-- Name: installment_dates installment_dates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installment_dates
    ADD CONSTRAINT installment_dates_pkey PRIMARY KEY (id);


--
-- Name: installments installments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installments
    ADD CONSTRAINT installments_pkey PRIMARY KEY (id);


--
-- Name: insurance_companies insurance_companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_companies
    ADD CONSTRAINT insurance_companies_pkey PRIMARY KEY (id);


--
-- Name: insurance_papers insurance_papers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_papers
    ADD CONSTRAINT insurance_papers_pkey PRIMARY KEY (id);


--
-- Name: interviews interviews_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews
    ADD CONSTRAINT interviews_pkey PRIMARY KEY (id);


--
-- Name: interviews_types interviews_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews_types
    ADD CONSTRAINT interviews_types_pkey PRIMARY KEY (id);


--
-- Name: intros intros_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.intros
    ADD CONSTRAINT intros_pkey PRIMARY KEY (id);


--
-- Name: inventories inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.inventories
    ADD CONSTRAINT inventories_pkey PRIMARY KEY (id);


--
-- Name: investors investors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.investors
    ADD CONSTRAINT investors_pkey PRIMARY KEY (id);


--
-- Name: issues issues_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.issues
    ADD CONSTRAINT issues_pkey PRIMARY KEY (id);


--
-- Name: items_groups items_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.items_groups
    ADD CONSTRAINT items_groups_pkey PRIMARY KEY (id);


--
-- Name: itineraries itineraries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.itineraries
    ADD CONSTRAINT itineraries_pkey PRIMARY KEY (id);


--
-- Name: itinerary_visits itinerary_visits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.itinerary_visits
    ADD CONSTRAINT itinerary_visits_pkey PRIMARY KEY (id);


--
-- Name: job_orders_executors job_orders_executors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.job_orders_executors
    ADD CONSTRAINT job_orders_executors_pkey PRIMARY KEY (id);


--
-- Name: job_orders job_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.job_orders
    ADD CONSTRAINT job_orders_pkey PRIMARY KEY (id);


--
-- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.jobs
    ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);


--
-- Name: jobs_types jobs_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.jobs_types
    ADD CONSTRAINT jobs_types_pkey PRIMARY KEY (id);


--
-- Name: jouns jouns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.jouns
    ADD CONSTRAINT jouns_pkey PRIMARY KEY (id);


--
-- Name: journalizing_details journalizing_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizing_details
    ADD CONSTRAINT journalizing_details_pkey PRIMARY KEY (id);


--
-- Name: journalizings journalizings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizings
    ADD CONSTRAINT journalizings_pkey PRIMARY KEY (id);


--
-- Name: languages languages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.languages
    ADD CONSTRAINT languages_pkey PRIMARY KEY (id);


--
-- Name: loan_types loan_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loan_types
    ADD CONSTRAINT loan_types_pkey PRIMARY KEY (id);


--
-- Name: loans loans_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans
    ADD CONSTRAINT loans_pkey PRIMARY KEY (id);


--
-- Name: login_sliders login_sliders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.login_sliders
    ADD CONSTRAINT login_sliders_pkey PRIMARY KEY (id);


--
-- Name: main_e_com_designs main_e_com_designs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.main_e_com_designs
    ADD CONSTRAINT main_e_com_designs_pkey PRIMARY KEY (id);


--
-- Name: maintainc_bills maintainc_bills_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_pkey PRIMARY KEY (id);


--
-- Name: maintaince_colors maintaince_colors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintaince_colors
    ADD CONSTRAINT maintaince_colors_pkey PRIMARY KEY (id);


--
-- Name: maintaince_default_data maintaince_default_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintaince_default_data
    ADD CONSTRAINT maintaince_default_data_pkey PRIMARY KEY (id);


--
-- Name: manu_store_counts manu_store_counts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manu_store_counts
    ADD CONSTRAINT manu_store_counts_pkey PRIMARY KEY (id);


--
-- Name: manufacture_companies manufacture_companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacture_companies
    ADD CONSTRAINT manufacture_companies_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_default_data manufacturing_default_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_default_data
    ADD CONSTRAINT manufacturing_default_data_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_executions manufacturing_executions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_executions
    ADD CONSTRAINT manufacturing_executions_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_halls manufacturing_halls_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_halls
    ADD CONSTRAINT manufacturing_halls_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_model_assets manufacturing_model_assets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_assets
    ADD CONSTRAINT manufacturing_model_assets_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_model_emps manufacturing_model_emps_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_emps
    ADD CONSTRAINT manufacturing_model_emps_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_model_expenses manufacturing_model_expenses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_expenses
    ADD CONSTRAINT manufacturing_model_expenses_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_model_services manufacturing_model_services_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_services
    ADD CONSTRAINT manufacturing_model_services_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_model_workers manufacturing_model_workers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_model_workers
    ADD CONSTRAINT manufacturing_model_workers_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_models manufacturing_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_models
    ADD CONSTRAINT manufacturing_models_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_orders manufacturing_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_orders
    ADD CONSTRAINT manufacturing_orders_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_requests manufacturing_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_requests
    ADD CONSTRAINT manufacturing_requests_pkey PRIMARY KEY (id);


--
-- Name: manufacturing_secretariat_models manufacturing_secretariat_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_secretariat_models
    ADD CONSTRAINT manufacturing_secretariat_models_pkey PRIMARY KEY (id);


--
-- Name: measuerments measuerments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.measuerments
    ADD CONSTRAINT measuerments_pkey PRIMARY KEY (id);


--
-- Name: migrations migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.migrations
    ADD CONSTRAINT migrations_pkey PRIMARY KEY (id);


--
-- Name: missions missions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.missions
    ADD CONSTRAINT missions_pkey PRIMARY KEY (id);


--
-- Name: model_has_permissions model_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_permissions
    ADD CONSTRAINT model_has_permissions_pkey PRIMARY KEY (permission_id, model_id, model_type);


--
-- Name: model_has_roles model_has_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_roles
    ADD CONSTRAINT model_has_roles_pkey PRIMARY KEY (role_id, model_id, model_type);


--
-- Name: module_settings_nums module_settings_nums_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.module_settings_nums
    ADD CONSTRAINT module_settings_nums_pkey PRIMARY KEY (id);


--
-- Name: modules modules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.modules
    ADD CONSTRAINT modules_pkey PRIMARY KEY (id);


--
-- Name: more_products_halls more_products_halls_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.more_products_halls
    ADD CONSTRAINT more_products_halls_pkey PRIMARY KEY (id);


--
-- Name: most_sales_products_column_sechdules most_sales_products_column_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.most_sales_products_column_sechdules
    ADD CONSTRAINT most_sales_products_column_sechdules_pkey PRIMARY KEY (id);


--
-- Name: most_sales_products_columns most_sales_products_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.most_sales_products_columns
    ADD CONSTRAINT most_sales_products_columns_pkey PRIMARY KEY (id);


--
-- Name: msg_rqsts msg_rqsts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.msg_rqsts
    ADD CONSTRAINT msg_rqsts_pkey PRIMARY KEY (id);


--
-- Name: my_follow_lists my_follow_lists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.my_follow_lists
    ADD CONSTRAINT my_follow_lists_pkey PRIMARY KEY (id);


--
-- Name: new_shipping_categories new_shipping_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.new_shipping_categories
    ADD CONSTRAINT new_shipping_categories_pkey PRIMARY KEY (id);


--
-- Name: new_shipping_rqst_types new_shipping_rqst_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.new_shipping_rqst_types
    ADD CONSTRAINT new_shipping_rqst_types_pkey PRIMARY KEY (id);


--
-- Name: new_shipping_types new_shipping_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.new_shipping_types
    ADD CONSTRAINT new_shipping_types_pkey PRIMARY KEY (id);


--
-- Name: notifications notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications
    ADD CONSTRAINT notifications_pkey PRIMARY KEY (id);


--
-- Name: opening_entries_details opening_entries_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries_details
    ADD CONSTRAINT opening_entries_details_pkey PRIMARY KEY (id);


--
-- Name: opening_entries opening_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries
    ADD CONSTRAINT opening_entries_pkey PRIMARY KEY (id);


--
-- Name: order_pays order_pays_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.order_pays
    ADD CONSTRAINT order_pays_pkey PRIMARY KEY (id);


--
-- Name: outcom_manufacturing_models outcom_manufacturing_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.outcom_manufacturing_models
    ADD CONSTRAINT outcom_manufacturing_models_pkey PRIMARY KEY (id);


--
-- Name: outcome_manufacturing_secretariat_models outcome_manufacturing_secretariat_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.outcome_manufacturing_secretariat_models
    ADD CONSTRAINT outcome_manufacturing_secretariat_models_pkey PRIMARY KEY (id);


--
-- Name: over_times over_times_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.over_times
    ADD CONSTRAINT over_times_pkey PRIMARY KEY (id);


--
-- Name: owners_reals owners_reals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.owners_reals
    ADD CONSTRAINT owners_reals_pkey PRIMARY KEY (id);


--
-- Name: pack_prems pack_prems_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pack_prems
    ADD CONSTRAINT pack_prems_pkey PRIMARY KEY (id);


--
-- Name: packages packages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.packages
    ADD CONSTRAINT packages_pkey PRIMARY KEY (id);


--
-- Name: partners partners_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.partners
    ADD CONSTRAINT partners_pkey PRIMARY KEY (id);


--
-- Name: pay_profit_investors pay_profit_investors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_profit_investors
    ADD CONSTRAINT pay_profit_investors_pkey PRIMARY KEY (id);


--
-- Name: pay_salaries pay_salaries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_salaries
    ADD CONSTRAINT pay_salaries_pkey PRIMARY KEY (id);


--
-- Name: payment_voucher_details payment_voucher_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_voucher_details
    ADD CONSTRAINT payment_voucher_details_pkey PRIMARY KEY (id);


--
-- Name: payment_vouchers payment_vouchers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_vouchers
    ADD CONSTRAINT payment_vouchers_pkey PRIMARY KEY (id);


--
-- Name: paymentss_products_real_projects paymentss_products_real_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.paymentss_products_real_projects
    ADD CONSTRAINT paymentss_products_real_projects_pkey PRIMARY KEY (id);


--
-- Name: paymentss_real_projects paymentss_real_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.paymentss_real_projects
    ADD CONSTRAINT paymentss_real_projects_pkey PRIMARY KEY (id);


--
-- Name: permission_to_exchange_goods permission_to_exchange_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods
    ADD CONSTRAINT permission_to_exchange_goods_pkey PRIMARY KEY (id);


--
-- Name: permission_to_recived_goods permission_to_recived_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_recived_goods
    ADD CONSTRAINT permission_to_recived_goods_pkey PRIMARY KEY (id);


--
-- Name: permissions permissions_name_guard_name_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permissions
    ADD CONSTRAINT permissions_name_guard_name_unique UNIQUE (name, guard_name);


--
-- Name: permissions permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permissions
    ADD CONSTRAINT permissions_pkey PRIMARY KEY (id);


--
-- Name: places places_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.places
    ADD CONSTRAINT places_pkey PRIMARY KEY (id);


--
-- Name: places_reals places_reals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.places_reals
    ADD CONSTRAINT places_reals_pkey PRIMARY KEY (id);


--
-- Name: platforms platforms_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.platforms
    ADD CONSTRAINT platforms_pkey PRIMARY KEY (id);


--
-- Name: polices polices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.polices
    ADD CONSTRAINT polices_pkey PRIMARY KEY (id);


--
-- Name: pro_details_imgs pro_details_imgs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pro_details_imgs
    ADD CONSTRAINT pro_details_imgs_pkey PRIMARY KEY (id);


--
-- Name: pro_notes pro_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pro_notes
    ADD CONSTRAINT pro_notes_pkey PRIMARY KEY (id);


--
-- Name: product_colors product_colors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_colors
    ADD CONSTRAINT product_colors_pkey PRIMARY KEY (id);


--
-- Name: product_details_e_com_designs product_details_e_com_designs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_details_e_com_designs
    ADD CONSTRAINT product_details_e_com_designs_pkey PRIMARY KEY (id);


--
-- Name: product_executing_receiving_secretariats product_executing_receiving_secretariats_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_executing_receiving_secretariats
    ADD CONSTRAINT product_executing_receiving_secretariats_pkey PRIMARY KEY (id);


--
-- Name: product_inventories product_inventories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_inventories
    ADD CONSTRAINT product_inventories_pkey PRIMARY KEY (id);


--
-- Name: product_job_orders product_job_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_job_orders
    ADD CONSTRAINT product_job_orders_pkey PRIMARY KEY (id);


--
-- Name: product_maintainc_bills product_maintainc_bills_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_maintainc_bills
    ADD CONSTRAINT product_maintainc_bills_pkey PRIMARY KEY (id);


--
-- Name: product_manufacturing_executions product_manufacturing_executions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_manufacturing_executions
    ADD CONSTRAINT product_manufacturing_executions_pkey PRIMARY KEY (id);


--
-- Name: product_moves_columns product_moves_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves_columns
    ADD CONSTRAINT product_moves_columns_pkey PRIMARY KEY (id);


--
-- Name: product_moves_columns_sechdules product_moves_columns_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves_columns_sechdules
    ADD CONSTRAINT product_moves_columns_sechdules_pkey PRIMARY KEY (id);


--
-- Name: product_moves_filter_twos product_moves_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves_filter_twos
    ADD CONSTRAINT product_moves_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: product_moves_filters product_moves_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves_filters
    ADD CONSTRAINT product_moves_filters_pkey PRIMARY KEY (id);


--
-- Name: product_moves product_moves_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT product_moves_pkey PRIMARY KEY (id);


--
-- Name: product_quote_images product_quote_images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_quote_images
    ADD CONSTRAINT product_quote_images_pkey PRIMARY KEY (id);


--
-- Name: product_return_without_bills product_return_without_bills_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_return_without_bills
    ADD CONSTRAINT product_return_without_bills_pkey PRIMARY KEY (id);


--
-- Name: product_sales_gifts product_sales_gifts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_gifts
    ADD CONSTRAINT product_sales_gifts_pkey PRIMARY KEY (id);


--
-- Name: product_sales_orders product_sales_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_orders
    ADD CONSTRAINT product_sales_orders_pkey PRIMARY KEY (id);


--
-- Name: product_sales product_sales_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales
    ADD CONSTRAINT product_sales_pkey PRIMARY KEY (id);


--
-- Name: product_sales_subscribes product_sales_subscribes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_subscribes
    ADD CONSTRAINT product_sales_subscribes_pkey PRIMARY KEY (id);


--
-- Name: product_settlements product_settlements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_settlements
    ADD CONSTRAINT product_settlements_pkey PRIMARY KEY (id);


--
-- Name: product_sizes product_sizes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sizes
    ADD CONSTRAINT product_sizes_pkey PRIMARY KEY (id);


--
-- Name: product_thicknesses product_thicknesses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_thicknesses
    ADD CONSTRAINT product_thicknesses_pkey PRIMARY KEY (id);


--
-- Name: product_type_defaults product_type_defaults_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_type_defaults
    ADD CONSTRAINT product_type_defaults_pkey PRIMARY KEY (id);


--
-- Name: product_units product_units_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_units
    ADD CONSTRAINT product_units_pkey PRIMARY KEY (id);


--
-- Name: products_client_requests products_client_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_client_requests
    ADD CONSTRAINT products_client_requests_pkey PRIMARY KEY (id);


--
-- Name: products_consists products_consists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_consists
    ADD CONSTRAINT products_consists_pkey PRIMARY KEY (id);


--
-- Name: products_executing_receivings products_executing_receivings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_executing_receivings
    ADD CONSTRAINT products_executing_receivings_pkey PRIMARY KEY (id);


--
-- Name: products_manufacturing_orders products_manufacturing_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_orders
    ADD CONSTRAINT products_manufacturing_orders_pkey PRIMARY KEY (id);


--
-- Name: products_manufacturing_requests products_manufacturing_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_requests
    ADD CONSTRAINT products_manufacturing_requests_pkey PRIMARY KEY (id);


--
-- Name: products_permission_to_exchange_goods products_permission_to_exchange_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods
    ADD CONSTRAINT products_permission_to_exchange_goods_pkey PRIMARY KEY (id);


--
-- Name: products_permission_to_recived_goods products_permission_to_recived_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_recived_goods
    ADD CONSTRAINT products_permission_to_recived_goods_pkey PRIMARY KEY (id);


--
-- Name: products products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products
    ADD CONSTRAINT products_pkey PRIMARY KEY (id);


--
-- Name: products_purchase_petrols products_purchase_petrols_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchase_petrols
    ADD CONSTRAINT products_purchase_petrols_pkey PRIMARY KEY (id);


--
-- Name: products_purchases_orders products_purchases_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases_orders
    ADD CONSTRAINT products_purchases_orders_pkey PRIMARY KEY (id);


--
-- Name: products_purchases products_purchases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases
    ADD CONSTRAINT products_purchases_pkey PRIMARY KEY (id);


--
-- Name: products_qties products_qties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_qties
    ADD CONSTRAINT products_qties_pkey PRIMARY KEY (id);


--
-- Name: products_quotes products_quotes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_quotes
    ADD CONSTRAINT products_quotes_pkey PRIMARY KEY (id);


--
-- Name: products_return_maintaince_bills products_return_maintaince_bills_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT products_return_maintaince_bills_pkey PRIMARY KEY (id);


--
-- Name: products_secretariat_export_goods products_secretariat_export_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_export_goods
    ADD CONSTRAINT products_secretariat_export_goods_pkey PRIMARY KEY (id);


--
-- Name: products_secretariat_import_goods products_secretariat_import_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_import_goods
    ADD CONSTRAINT products_secretariat_import_goods_pkey PRIMARY KEY (id);


--
-- Name: products_shortcomings products_shortcomings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_shortcomings
    ADD CONSTRAINT products_shortcomings_pkey PRIMARY KEY (id);


--
-- Name: products_start_periods products_start_periods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_start_periods
    ADD CONSTRAINT products_start_periods_pkey PRIMARY KEY (id);


--
-- Name: products_stores products_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores
    ADD CONSTRAINT products_stores_pkey PRIMARY KEY (id);


--
-- Name: products_stores_transfers products_stores_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores_transfers
    ADD CONSTRAINT products_stores_transfers_pkey PRIMARY KEY (id);


--
-- Name: products_viras products_viras_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_viras
    ADD CONSTRAINT products_viras_pkey PRIMARY KEY (id);


--
-- Name: profit_sales_product_column_sechdulrs profit_sales_product_column_sechdulrs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.profit_sales_product_column_sechdulrs
    ADD CONSTRAINT profit_sales_product_column_sechdulrs_pkey PRIMARY KEY (id);


--
-- Name: profit_sales_product_columns profit_sales_product_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.profit_sales_product_columns
    ADD CONSTRAINT profit_sales_product_columns_pkey PRIMARY KEY (id);


--
-- Name: project_statuses project_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.project_statuses
    ADD CONSTRAINT project_statuses_pkey PRIMARY KEY (id);


--
-- Name: project_teams project_teams_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.project_teams
    ADD CONSTRAINT project_teams_pkey PRIMARY KEY (id);


--
-- Name: projects projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.projects
    ADD CONSTRAINT projects_pkey PRIMARY KEY (id);


--
-- Name: purch_bills_columns purch_bills_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purch_bills_columns
    ADD CONSTRAINT purch_bills_columns_pkey PRIMARY KEY (id);


--
-- Name: purch_bills_columns_sechdules purch_bills_columns_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purch_bills_columns_sechdules
    ADD CONSTRAINT purch_bills_columns_sechdules_pkey PRIMARY KEY (id);


--
-- Name: purch_bills_filter_twos purch_bills_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purch_bills_filter_twos
    ADD CONSTRAINT purch_bills_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: purch_bills_filters purch_bills_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purch_bills_filters
    ADD CONSTRAINT purch_bills_filters_pkey PRIMARY KEY (id);


--
-- Name: purchase_petrols purchase_petrols_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchase_petrols
    ADD CONSTRAINT purchase_petrols_pkey PRIMARY KEY (id);


--
-- Name: purchases_default_data purchases_default_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_default_data
    ADD CONSTRAINT purchases_default_data_pkey PRIMARY KEY (id);


--
-- Name: purchases_expenses_types purchases_expenses_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_expenses_types
    ADD CONSTRAINT purchases_expenses_types_pkey PRIMARY KEY (id);


--
-- Name: purchases_order_expenses_types purchases_order_expenses_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_order_expenses_types
    ADD CONSTRAINT purchases_order_expenses_types_pkey PRIMARY KEY (id);


--
-- Name: purchases_orders purchases_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders
    ADD CONSTRAINT purchases_orders_pkey PRIMARY KEY (id);


--
-- Name: purchases purchases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases
    ADD CONSTRAINT purchases_pkey PRIMARY KEY (id);


--
-- Name: purpose_travel purpose_travel_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purpose_travel
    ADD CONSTRAINT purpose_travel_pkey PRIMARY KEY (id);


--
-- Name: q_r_s q_r_s_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.q_r_s
    ADD CONSTRAINT q_r_s_pkey PRIMARY KEY (id);


--
-- Name: qualities qualities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.qualities
    ADD CONSTRAINT qualities_pkey PRIMARY KEY (id);


--
-- Name: quality_details quality_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quality_details
    ADD CONSTRAINT quality_details_pkey PRIMARY KEY (id);


--
-- Name: quote_images quote_images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quote_images
    ADD CONSTRAINT quote_images_pkey PRIMARY KEY (id);


--
-- Name: quotes quotes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_pkey PRIMARY KEY (id);


--
-- Name: rabih_education rabih_education_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rabih_education
    ADD CONSTRAINT rabih_education_pkey PRIMARY KEY (id);


--
-- Name: rates rates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rates
    ADD CONSTRAINT rates_pkey PRIMARY KEY (id);


--
-- Name: real_sate_projects_payments real_sate_projects_payments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_sate_projects_payments
    ADD CONSTRAINT real_sate_projects_payments_pkey PRIMARY KEY (id);


--
-- Name: real_sate_projects real_sate_projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_sate_projects
    ADD CONSTRAINT real_sate_projects_pkey PRIMARY KEY (id);


--
-- Name: real_state_default_data real_state_default_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_state_default_data
    ADD CONSTRAINT real_state_default_data_pkey PRIMARY KEY (id);


--
-- Name: real_units real_units_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_units
    ADD CONSTRAINT real_units_pkey PRIMARY KEY (id);


--
-- Name: real_units_services real_units_services_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.real_units_services
    ADD CONSTRAINT real_units_services_pkey PRIMARY KEY (id);


--
-- Name: reasons reasons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reasons
    ADD CONSTRAINT reasons_pkey PRIMARY KEY (id);


--
-- Name: recipt_maintaince_errors recipt_maintaince_errors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintaince_errors
    ADD CONSTRAINT recipt_maintaince_errors_pkey PRIMARY KEY (id);


--
-- Name: recipt_maintainces recipt_maintainces_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces
    ADD CONSTRAINT recipt_maintainces_pkey PRIMARY KEY (id);


--
-- Name: recipt_voucher_details recipt_voucher_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_voucher_details
    ADD CONSTRAINT recipt_voucher_details_pkey PRIMARY KEY (id);


--
-- Name: recipt_vouchers recipt_vouchers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_vouchers
    ADD CONSTRAINT recipt_vouchers_pkey PRIMARY KEY (id);


--
-- Name: recipts_sales_petrols recipts_sales_petrols_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipts_sales_petrols
    ADD CONSTRAINT recipts_sales_petrols_pkey PRIMARY KEY (id);


--
-- Name: recipts_types recipts_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipts_types
    ADD CONSTRAINT recipts_types_pkey PRIMARY KEY (id);


--
-- Name: recived_purch_products recived_purch_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purch_products
    ADD CONSTRAINT recived_purch_products_pkey PRIMARY KEY (id);


--
-- Name: recived_purchts recived_purchts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purchts
    ADD CONSTRAINT recived_purchts_pkey PRIMARY KEY (id);


--
-- Name: recived_sales recived_sales_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales
    ADD CONSTRAINT recived_sales_pkey PRIMARY KEY (id);


--
-- Name: recived_sales_products recived_sales_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales_products
    ADD CONSTRAINT recived_sales_products_pkey PRIMARY KEY (id);


--
-- Name: recived_shipment_goods recived_shipment_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_shipment_goods
    ADD CONSTRAINT recived_shipment_goods_pkey PRIMARY KEY (id);


--
-- Name: recived_shipments recived_shipments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_shipments
    ADD CONSTRAINT recived_shipments_pkey PRIMARY KEY (id);


--
-- Name: reg_courses reg_courses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_courses
    ADD CONSTRAINT reg_courses_pkey PRIMARY KEY (id);


--
-- Name: reg_courses_students reg_courses_students_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_courses_students
    ADD CONSTRAINT reg_courses_students_pkey PRIMARY KEY (id);


--
-- Name: reg_over_times reg_over_times_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_over_times
    ADD CONSTRAINT reg_over_times_pkey PRIMARY KEY (id);


--
-- Name: remove_products_halls remove_products_halls_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.remove_products_halls
    ADD CONSTRAINT remove_products_halls_pkey PRIMARY KEY (id);


--
-- Name: rent_contracts rent_contracts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rent_contracts
    ADD CONSTRAINT rent_contracts_pkey PRIMARY KEY (id);


--
-- Name: rent_period_reals rent_period_reals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rent_period_reals
    ADD CONSTRAINT rent_period_reals_pkey PRIMARY KEY (id);


--
-- Name: reports_settings reports_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reports_settings
    ADD CONSTRAINT reports_settings_pkey PRIMARY KEY (id);


--
-- Name: reservations reservations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reservations
    ADD CONSTRAINT reservations_pkey PRIMARY KEY (id);


--
-- Name: reserve_course_days reserve_course_days_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reserve_course_days
    ADD CONSTRAINT reserve_course_days_pkey PRIMARY KEY (id);


--
-- Name: reserve_course_students reserve_course_students_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reserve_course_students
    ADD CONSTRAINT reserve_course_students_pkey PRIMARY KEY (id);


--
-- Name: reserve_courses reserve_courses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reserve_courses
    ADD CONSTRAINT reserve_courses_pkey PRIMARY KEY (id);


--
-- Name: resignation_requests resignation_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resignation_requests
    ADD CONSTRAINT resignation_requests_pkey PRIMARY KEY (id);


--
-- Name: resturant_abouts resturant_abouts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_abouts
    ADD CONSTRAINT resturant_abouts_pkey PRIMARY KEY (id);


--
-- Name: resturant_blogs resturant_blogs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_blogs
    ADD CONSTRAINT resturant_blogs_pkey PRIMARY KEY (id);


--
-- Name: resturant_cart_check_styles resturant_cart_check_styles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_cart_check_styles
    ADD CONSTRAINT resturant_cart_check_styles_pkey PRIMARY KEY (id);


--
-- Name: resturant_carts resturant_carts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_carts
    ADD CONSTRAINT resturant_carts_pkey PRIMARY KEY (id);


--
-- Name: resturant_cupon_codes resturant_cupon_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_cupon_codes
    ADD CONSTRAINT resturant_cupon_codes_pkey PRIMARY KEY (id);


--
-- Name: resturant_galleries resturant_galleries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_galleries
    ADD CONSTRAINT resturant_galleries_pkey PRIMARY KEY (id);


--
-- Name: resturant_homes resturant_homes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_homes
    ADD CONSTRAINT resturant_homes_pkey PRIMARY KEY (id);


--
-- Name: resturant_index_style_i_i_s resturant_index_style_i_i_s_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_index_style_i_i_s
    ADD CONSTRAINT resturant_index_style_i_i_s_pkey PRIMARY KEY (id);


--
-- Name: resturant_index_style_i_s resturant_index_style_i_s_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_index_style_i_s
    ADD CONSTRAINT resturant_index_style_i_s_pkey PRIMARY KEY (id);


--
-- Name: resturant_menu_styles resturant_menu_styles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_menu_styles
    ADD CONSTRAINT resturant_menu_styles_pkey PRIMARY KEY (id);


--
-- Name: resturant_nav_foot_styles resturant_nav_foot_styles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_nav_foot_styles
    ADD CONSTRAINT resturant_nav_foot_styles_pkey PRIMARY KEY (id);


--
-- Name: resturant_privacies resturant_privacies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_privacies
    ADD CONSTRAINT resturant_privacies_pkey PRIMARY KEY (id);


--
-- Name: resturant_reservations resturant_reservations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_reservations
    ADD CONSTRAINT resturant_reservations_pkey PRIMARY KEY (id);


--
-- Name: resturant_reviews resturant_reviews_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_reviews
    ADD CONSTRAINT resturant_reviews_pkey PRIMARY KEY (id);


--
-- Name: resturant_sliders resturant_sliders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_sliders
    ADD CONSTRAINT resturant_sliders_pkey PRIMARY KEY (id);


--
-- Name: resturant_socials resturant_socials_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_socials
    ADD CONSTRAINT resturant_socials_pkey PRIMARY KEY (id);


--
-- Name: resturant_styles resturant_styles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_styles
    ADD CONSTRAINT resturant_styles_pkey PRIMARY KEY (id);


--
-- Name: resturant_sup_page_styles resturant_sup_page_styles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_sup_page_styles
    ADD CONSTRAINT resturant_sup_page_styles_pkey PRIMARY KEY (id);


--
-- Name: resturant_tables resturant_tables_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_tables
    ADD CONSTRAINT resturant_tables_pkey PRIMARY KEY (id);


--
-- Name: resturant_terms resturant_terms_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_terms
    ADD CONSTRAINT resturant_terms_pkey PRIMARY KEY (id);


--
-- Name: resturant_video_sections resturant_video_sections_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.resturant_video_sections
    ADD CONSTRAINT resturant_video_sections_pkey PRIMARY KEY (id);


--
-- Name: return_maintaince_bills return_maintaince_bills_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_pkey PRIMARY KEY (id);


--
-- Name: return_products_stores_transfers return_products_stores_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_products_stores_transfers
    ADD CONSTRAINT return_products_stores_transfers_pkey PRIMARY KEY (id);


--
-- Name: return_purch_bills_filter_twos return_purch_bills_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_bills_filter_twos
    ADD CONSTRAINT return_purch_bills_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: return_purch_bills_filters return_purch_bills_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_bills_filters
    ADD CONSTRAINT return_purch_bills_filters_pkey PRIMARY KEY (id);


--
-- Name: return_purch_products return_purch_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_products
    ADD CONSTRAINT return_purch_products_pkey PRIMARY KEY (id);


--
-- Name: return_purches return_purches_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT return_purches_pkey PRIMARY KEY (id);


--
-- Name: return_resons return_resons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_resons
    ADD CONSTRAINT return_resons_pkey PRIMARY KEY (id);


--
-- Name: return_sales_bills_filter_twos return_sales_bills_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_bills_filter_twos
    ADD CONSTRAINT return_sales_bills_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: return_sales_bills_filters return_sales_bills_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_bills_filters
    ADD CONSTRAINT return_sales_bills_filters_pkey PRIMARY KEY (id);


--
-- Name: return_sales return_sales_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT return_sales_pkey PRIMARY KEY (id);


--
-- Name: return_sales_products return_sales_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_products
    ADD CONSTRAINT return_sales_products_pkey PRIMARY KEY (id);


--
-- Name: return_stors_transfers return_stors_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_stors_transfers
    ADD CONSTRAINT return_stors_transfers_pkey PRIMARY KEY (id);


--
-- Name: return_without_bills return_without_bills_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_without_bills
    ADD CONSTRAINT return_without_bills_pkey PRIMARY KEY (id);


--
-- Name: role_has_permissions role_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_pkey PRIMARY KEY (permission_id, role_id);


--
-- Name: roles roles_name_guard_name_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles
    ADD CONSTRAINT roles_name_guard_name_unique UNIQUE (name, guard_name);


--
-- Name: roles roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles
    ADD CONSTRAINT roles_pkey PRIMARY KEY (id);


--
-- Name: room_reservations room_reservations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.room_reservations
    ADD CONSTRAINT room_reservations_pkey PRIMARY KEY (id);


--
-- Name: rooms rooms_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rooms
    ADD CONSTRAINT rooms_pkey PRIMARY KEY (id);


--
-- Name: rooms_types rooms_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rooms_types
    ADD CONSTRAINT rooms_types_pkey PRIMARY KEY (id);


--
-- Name: rqst_transports rqst_transports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rqst_transports
    ADD CONSTRAINT rqst_transports_pkey PRIMARY KEY (id);


--
-- Name: safe_transfer_columns safe_transfer_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfer_columns
    ADD CONSTRAINT safe_transfer_columns_pkey PRIMARY KEY (id);


--
-- Name: safe_transfer_columns_sechdules safe_transfer_columns_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfer_columns_sechdules
    ADD CONSTRAINT safe_transfer_columns_sechdules_pkey PRIMARY KEY (id);


--
-- Name: safe_transfer_filter_twos safe_transfer_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfer_filter_twos
    ADD CONSTRAINT safe_transfer_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: safe_transfer_filters safe_transfer_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfer_filters
    ADD CONSTRAINT safe_transfer_filters_pkey PRIMARY KEY (id);


--
-- Name: safe_transfers safe_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers
    ADD CONSTRAINT safe_transfers_pkey PRIMARY KEY (id);


--
-- Name: safes_banks safes_banks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safes_banks
    ADD CONSTRAINT safes_banks_pkey PRIMARY KEY (id);


--
-- Name: sales_bills_columns sales_bills_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_bills_columns
    ADD CONSTRAINT sales_bills_columns_pkey PRIMARY KEY (id);


--
-- Name: sales_bills_columns_sechdules sales_bills_columns_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_bills_columns_sechdules
    ADD CONSTRAINT sales_bills_columns_sechdules_pkey PRIMARY KEY (id);


--
-- Name: sales_bills_filter_twos sales_bills_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_bills_filter_twos
    ADD CONSTRAINT sales_bills_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: sales_bills_filters sales_bills_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_bills_filters
    ADD CONSTRAINT sales_bills_filters_pkey PRIMARY KEY (id);


--
-- Name: sales_contracts sales_contracts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_contracts
    ADD CONSTRAINT sales_contracts_pkey PRIMARY KEY (id);


--
-- Name: sales_default_data sales_default_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_default_data
    ADD CONSTRAINT sales_default_data_pkey PRIMARY KEY (id);


--
-- Name: sales_fifo_qties sales_fifo_qties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_fifo_qties
    ADD CONSTRAINT sales_fifo_qties_pkey PRIMARY KEY (id);


--
-- Name: sales_gifts sales_gifts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_gifts
    ADD CONSTRAINT sales_gifts_pkey PRIMARY KEY (id);


--
-- Name: sales_maint_fifo_qties sales_maint_fifo_qties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_maint_fifo_qties
    ADD CONSTRAINT sales_maint_fifo_qties_pkey PRIMARY KEY (id);


--
-- Name: sales_orders sales_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_pkey PRIMARY KEY (id);


--
-- Name: sales_petrols sales_petrols_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_petrols
    ADD CONSTRAINT sales_petrols_pkey PRIMARY KEY (id);


--
-- Name: sales sales_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_pkey PRIMARY KEY (id);


--
-- Name: sales_subscribes sales_subscribes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_subscribes
    ADD CONSTRAINT sales_subscribes_pkey PRIMARY KEY (id);


--
-- Name: scientific_materials scientific_materials_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.scientific_materials
    ADD CONSTRAINT scientific_materials_pkey PRIMARY KEY (id);


--
-- Name: secretariat_export_goods secretariat_export_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_export_goods
    ADD CONSTRAINT secretariat_export_goods_pkey PRIMARY KEY (id);


--
-- Name: secretariat_import_goods secretariat_import_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_import_goods
    ADD CONSTRAINT secretariat_import_goods_pkey PRIMARY KEY (id);


--
-- Name: secretariat_qties secretariat_qties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_qties
    ADD CONSTRAINT secretariat_qties_pkey PRIMARY KEY (id);


--
-- Name: secretariat_stores secretariat_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_stores
    ADD CONSTRAINT secretariat_stores_pkey PRIMARY KEY (id);


--
-- Name: select_a_p_i_s select_a_p_i_s_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.select_a_p_i_s
    ADD CONSTRAINT select_a_p_i_s_pkey PRIMARY KEY (id);


--
-- Name: server_d_b_s server_d_b_s_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.server_d_b_s
    ADD CONSTRAINT server_d_b_s_pkey PRIMARY KEY (id);


--
-- Name: services_reals services_reals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.services_reals
    ADD CONSTRAINT services_reals_pkey PRIMARY KEY (id);


--
-- Name: settlements settlements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements
    ADD CONSTRAINT settlements_pkey PRIMARY KEY (id);


--
-- Name: sewing_accessories sewing_accessories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_accessories
    ADD CONSTRAINT sewing_accessories_pkey PRIMARY KEY (id);


--
-- Name: sewing_al_kabkat sewing_al_kabkat_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_al_kabkat
    ADD CONSTRAINT sewing_al_kabkat_pkey PRIMARY KEY (id);


--
-- Name: sewing_al_taktak sewing_al_taktak_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_al_taktak
    ADD CONSTRAINT sewing_al_taktak_pkey PRIMARY KEY (id);


--
-- Name: sewing_buttons sewing_buttons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_buttons
    ADD CONSTRAINT sewing_buttons_pkey PRIMARY KEY (id);


--
-- Name: sewing_chest_pocket_fillings sewing_chest_pocket_fillings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_chest_pocket_fillings
    ADD CONSTRAINT sewing_chest_pocket_fillings_pkey PRIMARY KEY (id);


--
-- Name: sewing_chest_pockets sewing_chest_pockets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_chest_pockets
    ADD CONSTRAINT sewing_chest_pockets_pkey PRIMARY KEY (id);


--
-- Name: sewing_collar_paddings sewing_collar_paddings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_collar_paddings
    ADD CONSTRAINT sewing_collar_paddings_pkey PRIMARY KEY (id);


--
-- Name: sewing_collars sewing_collars_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_collars
    ADD CONSTRAINT sewing_collars_pkey PRIMARY KEY (id);


--
-- Name: sewing_cseed_sleeves sewing_cseed_sleeves_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_cseed_sleeves
    ADD CONSTRAINT sewing_cseed_sleeves_pkey PRIMARY KEY (id);


--
-- Name: sewing_cupcake_fillings sewing_cupcake_fillings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_cupcake_fillings
    ADD CONSTRAINT sewing_cupcake_fillings_pkey PRIMARY KEY (id);


--
-- Name: sewing_embroideries sewing_embroideries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_embroideries
    ADD CONSTRAINT sewing_embroideries_pkey PRIMARY KEY (id);


--
-- Name: sewing_order_modules sewing_order_modules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_pkey PRIMARY KEY (id);


--
-- Name: sewing_orders sewing_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_pkey PRIMARY KEY (id);


--
-- Name: sewing_request_details sewing_request_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_request_details
    ADD CONSTRAINT sewing_request_details_pkey PRIMARY KEY (id);


--
-- Name: sewing_requests sewing_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_pkey PRIMARY KEY (id);


--
-- Name: sewing_seed_fillings sewing_seed_fillings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_seed_fillings
    ADD CONSTRAINT sewing_seed_fillings_pkey PRIMARY KEY (id);


--
-- Name: sewing_seeds sewing_seeds_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_seeds
    ADD CONSTRAINT sewing_seeds_pkey PRIMARY KEY (id);


--
-- Name: sewing_side_pockets sewing_side_pockets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_side_pockets
    ADD CONSTRAINT sewing_side_pockets_pkey PRIMARY KEY (id);


--
-- Name: sewing_sleeves sewing_sleeves_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_sleeves
    ADD CONSTRAINT sewing_sleeves_pkey PRIMARY KEY (id);


--
-- Name: sewing_types sewing_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_types
    ADD CONSTRAINT sewing_types_pkey PRIMARY KEY (id);


--
-- Name: shifts shifts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shifts
    ADD CONSTRAINT shifts_pkey PRIMARY KEY (id);


--
-- Name: shipment_moves shipment_moves_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_moves
    ADD CONSTRAINT shipment_moves_pkey PRIMARY KEY (id);


--
-- Name: shipment_receipts_clients shipment_receipts_clients_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts_clients
    ADD CONSTRAINT shipment_receipts_clients_pkey PRIMARY KEY (id);


--
-- Name: shipment_receipts_lists shipment_receipts_lists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts_lists
    ADD CONSTRAINT shipment_receipts_lists_pkey PRIMARY KEY (id);


--
-- Name: shipment_receipts shipment_receipts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_receipts
    ADD CONSTRAINT shipment_receipts_pkey PRIMARY KEY (id);


--
-- Name: shipment_requests shipment_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipment_requests
    ADD CONSTRAINT shipment_requests_pkey PRIMARY KEY (id);


--
-- Name: shipments_distribution_goods shipments_distribution_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments_distribution_goods
    ADD CONSTRAINT shipments_distribution_goods_pkey PRIMARY KEY (id);


--
-- Name: shipments_distribution_workers shipments_distribution_workers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments_distribution_workers
    ADD CONSTRAINT shipments_distribution_workers_pkey PRIMARY KEY (id);


--
-- Name: shipments_distributions shipments_distributions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments_distributions
    ADD CONSTRAINT shipments_distributions_pkey PRIMARY KEY (id);


--
-- Name: shipments shipments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments
    ADD CONSTRAINT shipments_pkey PRIMARY KEY (id);


--
-- Name: shipping_companies shipping_companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_companies
    ADD CONSTRAINT shipping_companies_pkey PRIMARY KEY (id);


--
-- Name: shipping_defaults shipping_defaults_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_defaults
    ADD CONSTRAINT shipping_defaults_pkey PRIMARY KEY (id);


--
-- Name: shipping_list_tickets shipping_list_tickets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_list_tickets
    ADD CONSTRAINT shipping_list_tickets_pkey PRIMARY KEY (id);


--
-- Name: shipping_lists shipping_lists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_lists
    ADD CONSTRAINT shipping_lists_pkey PRIMARY KEY (id);


--
-- Name: shipping_orders shipping_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_orders
    ADD CONSTRAINT shipping_orders_pkey PRIMARY KEY (id);


--
-- Name: shipping_prices shipping_prices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_prices
    ADD CONSTRAINT shipping_prices_pkey PRIMARY KEY (id);


--
-- Name: shipping_statuses shipping_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_statuses
    ADD CONSTRAINT shipping_statuses_pkey PRIMARY KEY (id);


--
-- Name: shipping_types shipping_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_types
    ADD CONSTRAINT shipping_types_pkey PRIMARY KEY (id);


--
-- Name: shippment_products shippment_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shippment_products
    ADD CONSTRAINT shippment_products_pkey PRIMARY KEY (id);


--
-- Name: shortcomings shortcomings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings
    ADD CONSTRAINT shortcomings_pkey PRIMARY KEY (id);


--
-- Name: show_print_defaults show_print_defaults_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.show_print_defaults
    ADD CONSTRAINT show_print_defaults_pkey PRIMARY KEY (id);


--
-- Name: social_media social_media_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.social_media
    ADD CONSTRAINT social_media_pkey PRIMARY KEY (id);


--
-- Name: special_cases special_cases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.special_cases
    ADD CONSTRAINT special_cases_pkey PRIMARY KEY (id);


--
-- Name: spend_profits spend_profits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.spend_profits
    ADD CONSTRAINT spend_profits_pkey PRIMARY KEY (id);


--
-- Name: start_periods start_periods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.start_periods
    ADD CONSTRAINT start_periods_pkey PRIMARY KEY (id);


--
-- Name: store_count_sales store_count_sales_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.store_count_sales
    ADD CONSTRAINT store_count_sales_pkey PRIMARY KEY (id);


--
-- Name: store_counts store_counts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.store_counts
    ADD CONSTRAINT store_counts_pkey PRIMARY KEY (id);


--
-- Name: store_transfer_filter_twos store_transfer_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.store_transfer_filter_twos
    ADD CONSTRAINT store_transfer_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: store_transfer_filters store_transfer_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.store_transfer_filters
    ADD CONSTRAINT store_transfer_filters_pkey PRIMARY KEY (id);


--
-- Name: stores_default_data stores_default_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data
    ADD CONSTRAINT stores_default_data_pkey PRIMARY KEY (id);


--
-- Name: stores_moves_columns stores_moves_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves_columns
    ADD CONSTRAINT stores_moves_columns_pkey PRIMARY KEY (id);


--
-- Name: stores_moves_columns_sechdules stores_moves_columns_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves_columns_sechdules
    ADD CONSTRAINT stores_moves_columns_sechdules_pkey PRIMARY KEY (id);


--
-- Name: stores_moves_filter_twos stores_moves_filter_twos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves_filter_twos
    ADD CONSTRAINT stores_moves_filter_twos_pkey PRIMARY KEY (id);


--
-- Name: stores_moves_filters stores_moves_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves_filters
    ADD CONSTRAINT stores_moves_filters_pkey PRIMARY KEY (id);


--
-- Name: stores_moves stores_moves_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves
    ADD CONSTRAINT stores_moves_pkey PRIMARY KEY (id);


--
-- Name: stores stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores
    ADD CONSTRAINT stores_pkey PRIMARY KEY (id);


--
-- Name: stores_transfer_columns stores_transfer_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_transfer_columns
    ADD CONSTRAINT stores_transfer_columns_pkey PRIMARY KEY (id);


--
-- Name: stores_transfer_columns_sechdules stores_transfer_columns_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_transfer_columns_sechdules
    ADD CONSTRAINT stores_transfer_columns_sechdules_pkey PRIMARY KEY (id);


--
-- Name: stors_transfers stors_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers
    ADD CONSTRAINT stors_transfers_pkey PRIMARY KEY (id);


--
-- Name: student_groups student_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.student_groups
    ADD CONSTRAINT student_groups_pkey PRIMARY KEY (id);


--
-- Name: student_importants student_importants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.student_importants
    ADD CONSTRAINT student_importants_pkey PRIMARY KEY (id);


--
-- Name: students students_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.students
    ADD CONSTRAINT students_pkey PRIMARY KEY (id);


--
-- Name: sub_images sub_images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sub_images
    ADD CONSTRAINT sub_images_pkey PRIMARY KEY (id);


--
-- Name: sub_virables sub_virables_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sub_virables
    ADD CONSTRAINT sub_virables_pkey PRIMARY KEY (id);


--
-- Name: subscribe_types subscribe_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.subscribe_types
    ADD CONSTRAINT subscribe_types_pkey PRIMARY KEY (id);


--
-- Name: sup_pages_e_com_designs sup_pages_e_com_designs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sup_pages_e_com_designs
    ADD CONSTRAINT sup_pages_e_com_designs_pkey PRIMARY KEY (id);


--
-- Name: sup_pages_part_two_e_com_designs sup_pages_part_two_e_com_designs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sup_pages_part_two_e_com_designs
    ADD CONSTRAINT sup_pages_part_two_e_com_designs_pkey PRIMARY KEY (id);


--
-- Name: sup_pages_wish_comp_e_com_designs sup_pages_wish_comp_e_com_designs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sup_pages_wish_comp_e_com_designs
    ADD CONSTRAINT sup_pages_wish_comp_e_com_designs_pkey PRIMARY KEY (id);


--
-- Name: taxes taxes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.taxes
    ADD CONSTRAINT taxes_pkey PRIMARY KEY (id);


--
-- Name: teachers_groups teachers_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.teachers_groups
    ADD CONSTRAINT teachers_groups_pkey PRIMARY KEY (id);


--
-- Name: teachers teachers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.teachers
    ADD CONSTRAINT teachers_pkey PRIMARY KEY (id);


--
-- Name: teachers_subjects teachers_subjects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.teachers_subjects
    ADD CONSTRAINT teachers_subjects_pkey PRIMARY KEY (id);


--
-- Name: tenants tenants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tenants
    ADD CONSTRAINT tenants_pkey PRIMARY KEY (id);


--
-- Name: terms_maintainces terms_maintainces_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.terms_maintainces
    ADD CONSTRAINT terms_maintainces_pkey PRIMARY KEY (id);


--
-- Name: terms terms_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.terms
    ADD CONSTRAINT terms_pkey PRIMARY KEY (id);


--
-- Name: testclients testclients_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.testclients
    ADD CONSTRAINT testclients_pkey PRIMARY KEY (id);


--
-- Name: ticekt_issues ticekt_issues_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ticekt_issues
    ADD CONSTRAINT ticekt_issues_pkey PRIMARY KEY (id);


--
-- Name: ticket_products ticket_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ticket_products
    ADD CONSTRAINT ticket_products_pkey PRIMARY KEY (id);


--
-- Name: tickets tickets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tickets
    ADD CONSTRAINT tickets_pkey PRIMARY KEY (id);


--
-- Name: translation_tourism_companies translation_tourism_companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translation_tourism_companies
    ADD CONSTRAINT translation_tourism_companies_pkey PRIMARY KEY (id);


--
-- Name: translte_modules_details translte_modules_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translte_modules_details
    ADD CONSTRAINT translte_modules_details_pkey PRIMARY KEY (id);


--
-- Name: translte_modules translte_modules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translte_modules
    ADD CONSTRAINT translte_modules_pkey PRIMARY KEY (id);


--
-- Name: transltors transltors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transltors
    ADD CONSTRAINT transltors_pkey PRIMARY KEY (id);


--
-- Name: transport_contractors transport_contractors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_contractors
    ADD CONSTRAINT transport_contractors_pkey PRIMARY KEY (id);


--
-- Name: transport_permit_details transport_permit_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_permit_details
    ADD CONSTRAINT transport_permit_details_pkey PRIMARY KEY (id);


--
-- Name: transport_permits transport_permits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_permits
    ADD CONSTRAINT transport_permits_pkey PRIMARY KEY (id);


--
-- Name: transport_prices transport_prices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_prices
    ADD CONSTRAINT transport_prices_pkey PRIMARY KEY (id);


--
-- Name: transport_receivers transport_receivers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transport_receivers
    ADD CONSTRAINT transport_receivers_pkey PRIMARY KEY (id);


--
-- Name: transports transports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transports
    ADD CONSTRAINT transports_pkey PRIMARY KEY (id);


--
-- Name: unloading_shipments_goods unloading_shipments_goods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.unloading_shipments_goods
    ADD CONSTRAINT unloading_shipments_goods_pkey PRIMARY KEY (id);


--
-- Name: unloading_shipments unloading_shipments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.unloading_shipments
    ADD CONSTRAINT unloading_shipments_pkey PRIMARY KEY (id);


--
-- Name: unloading_shipments_workers unloading_shipments_workers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.unloading_shipments_workers
    ADD CONSTRAINT unloading_shipments_workers_pkey PRIMARY KEY (id);


--
-- Name: update_values_investors update_values_investors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.update_values_investors
    ADD CONSTRAINT update_values_investors_pkey PRIMARY KEY (id);


--
-- Name: upload_accountings upload_accountings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.upload_accountings
    ADD CONSTRAINT upload_accountings_pkey PRIMARY KEY (id);


--
-- Name: users_moves users_moves_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users_moves
    ADD CONSTRAINT users_moves_pkey PRIMARY KEY (id);


--
-- Name: v_a_prices v_a_prices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_prices
    ADD CONSTRAINT v_a_prices_pkey PRIMARY KEY (id);


--
-- Name: v_a_products v_a_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_products
    ADD CONSTRAINT v_a_products_pkey PRIMARY KEY (id);


--
-- Name: v_a_qties v_a_qties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_qties
    ADD CONSTRAINT v_a_qties_pkey PRIMARY KEY (id);


--
-- Name: vendor_account_statement_column_sechdules vendor_account_statement_column_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendor_account_statement_column_sechdules
    ADD CONSTRAINT vendor_account_statement_column_sechdules_pkey PRIMARY KEY (id);


--
-- Name: vendor_account_statement_columns vendor_account_statement_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendor_account_statement_columns
    ADD CONSTRAINT vendor_account_statement_columns_pkey PRIMARY KEY (id);


--
-- Name: vendor_filters vendor_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendor_filters
    ADD CONSTRAINT vendor_filters_pkey PRIMARY KEY (id);


--
-- Name: vendor_products vendor_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendor_products
    ADD CONSTRAINT vendor_products_pkey PRIMARY KEY (id);


--
-- Name: vendors vendors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT vendors_pkey PRIMARY KEY (id);


--
-- Name: vendors_statements_column_sechdules vendors_statements_column_sechdules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors_statements_column_sechdules
    ADD CONSTRAINT vendors_statements_column_sechdules_pkey PRIMARY KEY (id);


--
-- Name: vendors_statements_columns vendors_statements_columns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors_statements_columns
    ADD CONSTRAINT vendors_statements_columns_pkey PRIMARY KEY (id);


--
-- Name: virables virables_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.virables
    ADD CONSTRAINT virables_pkey PRIMARY KEY (id);


--
-- Name: vouchers vouchers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vouchers
    ADD CONSTRAINT vouchers_pkey PRIMARY KEY (id);


--
-- Name: web_sliders web_sliders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.web_sliders
    ADD CONSTRAINT web_sliders_pkey PRIMARY KEY (id);


--
-- Name: wishlists wishlists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wishlists
    ADD CONSTRAINT wishlists_pkey PRIMARY KEY (id);


--
-- Name: work_departments work_departments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.work_departments
    ADD CONSTRAINT work_departments_pkey PRIMARY KEY (id);


--
-- Name: workers_sales_petrols workers_sales_petrols_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.workers_sales_petrols
    ADD CONSTRAINT workers_sales_petrols_pkey PRIMARY KEY (id);


--
-- Name: zkteco_devices zkteco_devices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.zkteco_devices
    ADD CONSTRAINT zkteco_devices_pkey PRIMARY KEY (id);


--
-- Name: firewall_ips_ip_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX firewall_ips_ip_index ON public.firewall_ips USING btree (ip);


--
-- Name: firewall_logs_ip_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX firewall_logs_ip_index ON public.firewall_logs USING btree (ip);


--
-- Name: jobs_queue_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX jobs_queue_index ON public.jobs USING btree (queue);


--
-- Name: model_has_permissions_model_id_model_type_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX model_has_permissions_model_id_model_type_index ON public.model_has_permissions USING btree (model_id, model_type);


--
-- Name: model_has_roles_model_id_model_type_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX model_has_roles_model_id_model_type_index ON public.model_has_roles USING btree (model_id, model_type);


--
-- Name: password_resets_email_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX password_resets_email_index ON public.password_resets USING btree (email);


--
-- Name: acccounting_manuals acccounting_manuals_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.acccounting_manuals
    ADD CONSTRAINT acccounting_manuals_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: accounts_default_data accounts_default_data_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.accounts_default_data
    ADD CONSTRAINT accounts_default_data_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: addressses addressses_city_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.addressses
    ADD CONSTRAINT addressses_city_foreign FOREIGN KEY ("City") REFERENCES public.cities(id) ON DELETE CASCADE;


--
-- Name: addressses addressses_governrate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.addressses
    ADD CONSTRAINT addressses_governrate_foreign FOREIGN KEY ("Governrate") REFERENCES public.governrates(id) ON DELETE CASCADE;


--
-- Name: assembly_products assembly_products_p_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assembly_products
    ADD CONSTRAINT assembly_products_p_id_foreign FOREIGN KEY (p_id) REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: assembly_products assembly_products_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assembly_products
    ADD CONSTRAINT assembly_products_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: assembly_products assembly_products_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assembly_products
    ADD CONSTRAINT assembly_products_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: assets assets_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets
    ADD CONSTRAINT assets_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: assets assets_depreciation_complex_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets
    ADD CONSTRAINT assets_depreciation_complex_foreign FOREIGN KEY ("Depreciation_Complex") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: assets assets_depreciation_expenses_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets
    ADD CONSTRAINT assets_depreciation_expenses_foreign FOREIGN KEY ("Depreciation_Expenses") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: assets_expenses assets_expenses_asset_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets_expenses
    ADD CONSTRAINT assets_expenses_asset_foreign FOREIGN KEY ("Asset") REFERENCES public.assets(id) ON DELETE CASCADE;


--
-- Name: assets_expenses assets_expenses_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets_expenses
    ADD CONSTRAINT assets_expenses_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: assets_expenses assets_expenses_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets_expenses
    ADD CONSTRAINT assets_expenses_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: assets_expenses assets_expenses_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets_expenses
    ADD CONSTRAINT assets_expenses_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: assets_expenses assets_expenses_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets_expenses
    ADD CONSTRAINT assets_expenses_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: assets assets_main_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets
    ADD CONSTRAINT assets_main_account_foreign FOREIGN KEY ("Main_Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: assets assets_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assets
    ADD CONSTRAINT assets_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: attendance_emps attendance_emps_attend_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance_emps
    ADD CONSTRAINT attendance_emps_attend_foreign FOREIGN KEY ("Attend") REFERENCES public.attendances(id) ON DELETE CASCADE;


--
-- Name: attendance_emps attendance_emps_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendance_emps
    ADD CONSTRAINT attendance_emps_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: attendances attendances_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendances_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: barcode_products barcode_products_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_products
    ADD CONSTRAINT barcode_products_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: barcode_products barcode_products_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_products
    ADD CONSTRAINT barcode_products_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: barcode_products barcode_products_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_products
    ADD CONSTRAINT barcode_products_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: barcode_products barcode_products_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.barcode_products
    ADD CONSTRAINT barcode_products_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: bones_sales_petrols bones_sales_petrols_salespetrol_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.bones_sales_petrols
    ADD CONSTRAINT bones_sales_petrols_salespetrol_foreign FOREIGN KEY ("SalesPetrol") REFERENCES public.sales_petrols(id) ON DELETE CASCADE;


--
-- Name: bones_types bones_types_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.bones_types
    ADD CONSTRAINT bones_types_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: borrowas borrowas_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.borrowas
    ADD CONSTRAINT borrowas_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: borrowas borrowas_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.borrowas
    ADD CONSTRAINT borrowas_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: borrowas borrowas_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.borrowas
    ADD CONSTRAINT borrowas_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: borrowas borrowas_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.borrowas
    ADD CONSTRAINT borrowas_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: borrowas borrowas_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.borrowas
    ADD CONSTRAINT borrowas_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: campaigns campaigns_platform_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.campaigns
    ADD CONSTRAINT campaigns_platform_foreign FOREIGN KEY ("Platform") REFERENCES public.platforms(id) ON DELETE CASCADE;


--
-- Name: cars_sales_petrols cars_sales_petrols_salespetrol_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cars_sales_petrols
    ADD CONSTRAINT cars_sales_petrols_salespetrol_foreign FOREIGN KEY ("SalesPetrol") REFERENCES public.sales_petrols(id) ON DELETE CASCADE;


--
-- Name: cities cities_gov_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities
    ADD CONSTRAINT cities_gov_foreign FOREIGN KEY ("Gov") REFERENCES public.governrates(id) ON DELETE CASCADE;


--
-- Name: client_sales_petrols client_sales_petrols_salespetrol_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.client_sales_petrols
    ADD CONSTRAINT client_sales_petrols_salespetrol_foreign FOREIGN KEY ("SalesPetrol") REFERENCES public.sales_petrols(id) ON DELETE CASCADE;


--
-- Name: comments comments_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: comments comments_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_user_foreign FOREIGN KEY ("User") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: company_cars company_cars_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.company_cars
    ADD CONSTRAINT company_cars_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: compares compares_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compares
    ADD CONSTRAINT compares_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: compares compares_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.compares
    ADD CONSTRAINT compares_user_foreign FOREIGN KEY ("User") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: consists consists_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consists
    ADD CONSTRAINT consists_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: consists consists_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consists
    ADD CONSTRAINT consists_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: consists consists_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consists
    ADD CONSTRAINT consists_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: consists consists_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.consists
    ADD CONSTRAINT consists_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: counters_types counters_types_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.counters_types
    ADD CONSTRAINT counters_types_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: counters_types counters_types_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.counters_types
    ADD CONSTRAINT counters_types_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: crm_default_data crm_default_data_activity_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data
    ADD CONSTRAINT crm_default_data_activity_foreign FOREIGN KEY ("Activity") REFERENCES public.activites(id) ON DELETE CASCADE;


--
-- Name: crm_default_data crm_default_data_campagin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data
    ADD CONSTRAINT crm_default_data_campagin_foreign FOREIGN KEY ("Campagin") REFERENCES public.campaigns(id) ON DELETE CASCADE;


--
-- Name: crm_default_data crm_default_data_city_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data
    ADD CONSTRAINT crm_default_data_city_foreign FOREIGN KEY ("City") REFERENCES public.cities(id) ON DELETE CASCADE;


--
-- Name: crm_default_data crm_default_data_clientstatus_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data
    ADD CONSTRAINT crm_default_data_clientstatus_foreign FOREIGN KEY ("ClientStatus") REFERENCES public.client_statuses(id) ON DELETE CASCADE;


--
-- Name: crm_default_data crm_default_data_governrate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data
    ADD CONSTRAINT crm_default_data_governrate_foreign FOREIGN KEY ("Governrate") REFERENCES public.governrates(id) ON DELETE CASCADE;


--
-- Name: crm_default_data crm_default_data_platforms_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data
    ADD CONSTRAINT crm_default_data_platforms_foreign FOREIGN KEY ("Platforms") REFERENCES public.platforms(id) ON DELETE CASCADE;


--
-- Name: crm_default_data crm_default_data_responsible_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.crm_default_data
    ADD CONSTRAINT crm_default_data_responsible_foreign FOREIGN KEY ("Responsible") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: customer_comments_products customer_comments_products_comment_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_comments_products
    ADD CONSTRAINT customer_comments_products_comment_foreign FOREIGN KEY ("Comment") REFERENCES public.comments_clients(id) ON DELETE CASCADE;


--
-- Name: customer_comments_products customer_comments_products_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_comments_products
    ADD CONSTRAINT customer_comments_products_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: customer_sizes customer_sizes_customers_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customer_sizes
    ADD CONSTRAINT customer_sizes_customers_id_foreign FOREIGN KEY ("Customers_ID") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: customers customers_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: customers customers_activity_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_activity_foreign FOREIGN KEY ("Activity") REFERENCES public.activites(id) ON DELETE CASCADE;


--
-- Name: customers customers_campagin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_campagin_foreign FOREIGN KEY ("Campagin") REFERENCES public.campaigns(id) ON DELETE CASCADE;


--
-- Name: customers customers_city_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_city_foreign FOREIGN KEY ("City") REFERENCES public.cities(id) ON DELETE CASCADE;


--
-- Name: customers customers_clientstatus_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_clientstatus_foreign FOREIGN KEY ("ClientStatus") REFERENCES public.client_statuses(id) ON DELETE CASCADE;


--
-- Name: customers_files customers_files_customer_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_files
    ADD CONSTRAINT customers_files_customer_foreign FOREIGN KEY ("Customer") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: customers customers_governrate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_governrate_foreign FOREIGN KEY ("Governrate") REFERENCES public.governrates(id) ON DELETE CASCADE;


--
-- Name: customers customers_responsible_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_responsible_foreign FOREIGN KEY ("Responsible") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: customers_tickets customers_tickets_customer_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_tickets
    ADD CONSTRAINT customers_tickets_customer_foreign FOREIGN KEY ("Customer") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: customers_tickets customers_tickets_responsible_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_tickets
    ADD CONSTRAINT customers_tickets_responsible_foreign FOREIGN KEY ("Responsible") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: customers_tickets customers_tickets_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers_tickets
    ADD CONSTRAINT customers_tickets_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: customers customers_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: deductions deductions_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deductions
    ADD CONSTRAINT deductions_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: deductions deductions_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deductions
    ADD CONSTRAINT deductions_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: deductions deductions_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deductions
    ADD CONSTRAINT deductions_type_foreign FOREIGN KEY ("Type") REFERENCES public.deducations_types(id) ON DELETE CASCADE;


--
-- Name: deductions deductions_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.deductions
    ADD CONSTRAINT deductions_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_branch_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_branch_foreign FOREIGN KEY ("Branch") REFERENCES public.branches(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_recivedbranch_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_recivedbranch_foreign FOREIGN KEY ("RecivedBranch") REFERENCES public.branches(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: default_sewing_orders default_sewing_orders_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.default_sewing_orders
    ADD CONSTRAINT default_sewing_orders_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: departure_emps departure_emps_departure_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departure_emps
    ADD CONSTRAINT departure_emps_departure_foreign FOREIGN KEY ("Departure") REFERENCES public.departures(id) ON DELETE CASCADE;


--
-- Name: departure_emps departure_emps_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departure_emps
    ADD CONSTRAINT departure_emps_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: departures departures_attend_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departures
    ADD CONSTRAINT departures_attend_foreign FOREIGN KEY ("Attend") REFERENCES public.attendances(id) ON DELETE CASCADE;


--
-- Name: departures departures_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.departures
    ADD CONSTRAINT departures_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: devices_typesies devices_typesies_company_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.devices_typesies
    ADD CONSTRAINT devices_typesies_company_foreign FOREIGN KEY ("Company") REFERENCES public.manufacture_companies(id) ON DELETE CASCADE;


--
-- Name: domains domains_tenant_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.domains
    ADD CONSTRAINT domains_tenant_id_foreign FOREIGN KEY (tenant_id) REFERENCES public.tenants(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: emp_installment_details emp_installment_details_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_installment_details
    ADD CONSTRAINT emp_installment_details_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: emp_installment_details emp_installment_details_install_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_installment_details
    ADD CONSTRAINT emp_installment_details_install_foreign FOREIGN KEY ("Install") REFERENCES public.emp_installments(id) ON DELETE CASCADE;


--
-- Name: emp_installments emp_installments_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_installments
    ADD CONSTRAINT emp_installments_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: emp_installments emp_installments_loan_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_installments
    ADD CONSTRAINT emp_installments_loan_foreign FOREIGN KEY ("Loan") REFERENCES public.loans(id) ON DELETE CASCADE;


--
-- Name: emp_p_o_s_stores emp_p_o_s_stores_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_p_o_s_stores
    ADD CONSTRAINT emp_p_o_s_stores_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: emp_ratios emp_ratios_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emp_ratios
    ADD CONSTRAINT emp_ratios_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: employesses employesses_account_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employesses
    ADD CONSTRAINT employesses_account_emp_foreign FOREIGN KEY ("Account_Emp") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: employesses employesses_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employesses
    ADD CONSTRAINT employesses_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: employesses employesses_department_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employesses
    ADD CONSTRAINT employesses_department_foreign FOREIGN KEY ("Department") REFERENCES public.work_departments(id) ON DELETE CASCADE;


--
-- Name: employesses employesses_job_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employesses
    ADD CONSTRAINT employesses_job_foreign FOREIGN KEY ("Job") REFERENCES public.jobs_types(id) ON DELETE CASCADE;


--
-- Name: employesses employesses_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employesses
    ADD CONSTRAINT employesses_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: entitlements entitlements_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.entitlements
    ADD CONSTRAINT entitlements_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: entitlements entitlements_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.entitlements
    ADD CONSTRAINT entitlements_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: entitlements entitlements_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.entitlements
    ADD CONSTRAINT entitlements_type_foreign FOREIGN KEY ("Type") REFERENCES public.beneftis_types(id) ON DELETE CASCADE;


--
-- Name: entitlements entitlements_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.entitlements
    ADD CONSTRAINT entitlements_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: examinations_types examinations_types_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.examinations_types
    ADD CONSTRAINT examinations_types_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: exchange_commissions exchange_commissions_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.exchange_commissions
    ADD CONSTRAINT exchange_commissions_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: exchange_commissions exchange_commissions_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.exchange_commissions
    ADD CONSTRAINT exchange_commissions_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: exchange_commissions exchange_commissions_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.exchange_commissions
    ADD CONSTRAINT exchange_commissions_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: exchange_commissions exchange_commissions_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.exchange_commissions
    ADD CONSTRAINT exchange_commissions_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: exchange_commissions exchange_commissions_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.exchange_commissions
    ADD CONSTRAINT exchange_commissions_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_armport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_armport_foreign FOREIGN KEY ("ArmPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_collaroutlet_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_collaroutlet_foreign FOREIGN KEY ("CollarOutlet") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_complaintport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_complaintport_foreign FOREIGN KEY ("ComplaintPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_cutreferences_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_cutreferences_foreign FOREIGN KEY ("CutReferences") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_dataentry_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_dataentry_foreign FOREIGN KEY ("DataEntry") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_delivery_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_delivery_foreign FOREIGN KEY ("Delivery") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_frontpocketport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_frontpocketport_foreign FOREIGN KEY ("FrontPocketPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_ironingport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_ironingport_foreign FOREIGN KEY ("IroningPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_measurementport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_measurementport_foreign FOREIGN KEY ("MeasurementPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_packagingport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_packagingport_foreign FOREIGN KEY ("PackagingPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_pocketport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_pocketport_foreign FOREIGN KEY ("PocketPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_productionmanager_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_productionmanager_foreign FOREIGN KEY ("ProductionManager") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_qualitycontroller_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_qualitycontroller_foreign FOREIGN KEY ("QualityController") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_quantumport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_quantumport_foreign FOREIGN KEY ("QuantumPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_seedfillingport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_seedfillingport_foreign FOREIGN KEY ("SeedFillingPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_sewingorder_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_sewingorder_foreign FOREIGN KEY ("SewingOrder") REFERENCES public.sewing_orders(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_shearoutletassistant_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_shearoutletassistant_foreign FOREIGN KEY ("ShearOutletAssistant") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_shearport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_shearport_foreign FOREIGN KEY ("ShearPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_shoulderport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_shoulderport_foreign FOREIGN KEY ("ShoulderPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_sideport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_sideport_foreign FOREIGN KEY ("SidePort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_snapport_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_snapport_foreign FOREIGN KEY ("SnapPort") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: execute_sewing_orders execute_sewing_orders_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.execute_sewing_orders
    ADD CONSTRAINT execute_sewing_orders_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: executing_receivings executing_receivings_model_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executing_receivings
    ADD CONSTRAINT executing_receivings_model_foreign FOREIGN KEY ("Model") REFERENCES public.manufacturing_models(id) ON DELETE CASCADE;


--
-- Name: executing_receivings executing_receivings_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.executing_receivings
    ADD CONSTRAINT executing_receivings_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: export_checks export_checks_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: export_checks export_checks_bank_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_bank_foreign FOREIGN KEY ("Bank") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: export_checks export_checks_bene_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_bene_account_foreign FOREIGN KEY ("Bene_Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: export_checks export_checks_check_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_check_type_foreign FOREIGN KEY ("Check_Type") REFERENCES public.checks_types(id) ON DELETE CASCADE;


--
-- Name: export_checks export_checks_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: export_checks export_checks_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: export_checks export_checks_pay_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_pay_account_foreign FOREIGN KEY ("Pay_Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: export_checks export_checks_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.export_checks
    ADD CONSTRAINT export_checks_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: general_dailies fk_admins_general_dailies; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.general_dailies
    ADD CONSTRAINT fk_admins_general_dailies FOREIGN KEY (userr) REFERENCES public.admins(id);


--
-- Name: assay_bill_details fk_assay_bills_assay_bill_details; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.assay_bill_details
    ADD CONSTRAINT fk_assay_bills_assay_bill_details FOREIGN KEY ("Bill") REFERENCES public.assay_bills(id);


--
-- Name: customers fk_customers_countris; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT fk_customers_countris FOREIGN KEY ("Nationality") REFERENCES public.countris(id);


--
-- Name: customers fk_customers_customers_groups; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT fk_customers_customers_groups FOREIGN KEY ("Group") REFERENCES public.customers_groups(id);


--
-- Name: customers fk_customers_places; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT fk_customers_places FOREIGN KEY ("Place") REFERENCES public.places(id);


--
-- Name: customers fk_customers_products; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT fk_customers_products FOREIGN KEY ("Product") REFERENCES public.products(id);


--
-- Name: product_moves fk_product_moves_acccounting_manuals; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT fk_product_moves_acccounting_manuals FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id);


--
-- Name: product_return_without_bills fk_product_return_without_bills_products; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_return_without_bills
    ADD CONSTRAINT fk_product_return_without_bills_products FOREIGN KEY ("Product") REFERENCES public.products(id);


--
-- Name: product_return_without_bills fk_product_return_without_bills_return_without_bills; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_return_without_bills
    ADD CONSTRAINT fk_product_return_without_bills_return_without_bills FOREIGN KEY ("Bill") REFERENCES public.return_without_bills(id);


--
-- Name: products_return_maintaince_bills fk_products_return_maintaince_bills_admins; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT fk_products_return_maintaince_bills_admins FOREIGN KEY ("User") REFERENCES public.admins(id);


--
-- Name: products_return_maintaince_bills fk_products_return_maintaince_bills_branches; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT fk_products_return_maintaince_bills_branches FOREIGN KEY ("Branch") REFERENCES public.branches(id);


--
-- Name: products_return_maintaince_bills fk_products_return_maintaince_bills_brands; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT fk_products_return_maintaince_bills_brands FOREIGN KEY ("Brand") REFERENCES public.brands(id);


--
-- Name: products_return_maintaince_bills fk_products_return_maintaince_bills_employesses; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT fk_products_return_maintaince_bills_employesses FOREIGN KEY ("Recipient") REFERENCES public.employesses(id);


--
-- Name: products_return_maintaince_bills fk_products_return_maintaince_bills_items_groups; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT fk_products_return_maintaince_bills_items_groups FOREIGN KEY ("Group") REFERENCES public.items_groups(id);


--
-- Name: products fk_products_subscribe_types; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products
    ADD CONSTRAINT fk_products_subscribe_types FOREIGN KEY (subscribe_type) REFERENCES public.subscribe_types(id);


--
-- Name: sales fk_resturant_tables_sales; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT fk_resturant_tables_sales FOREIGN KEY ("Table") REFERENCES public.resturant_tables(id);


--
-- Name: return_purches fk_return_purches_acccounting_manuals; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT fk_return_purches_acccounting_manuals FOREIGN KEY ("Vendor") REFERENCES public.acccounting_manuals(id);


--
-- Name: return_purches fk_return_purches_coins; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT fk_return_purches_coins FOREIGN KEY ("Coin") REFERENCES public.coins(id);


--
-- Name: return_purches fk_return_purches_cost_centers; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT fk_return_purches_cost_centers FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id);


--
-- Name: return_purches fk_return_purches_employesses; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT fk_return_purches_employesses FOREIGN KEY ("Delegate") REFERENCES public.employesses(id);


--
-- Name: return_purches fk_return_purches_shipping_companies; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT fk_return_purches_shipping_companies FOREIGN KEY ("Ship") REFERENCES public.shipping_companies(id);


--
-- Name: return_purches fk_return_purches_stores; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT fk_return_purches_stores FOREIGN KEY ("Store") REFERENCES public.stores(id);


--
-- Name: return_sales fk_return_sales_acccounting_manuals; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT fk_return_sales_acccounting_manuals FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id);


--
-- Name: return_sales fk_return_sales_coins; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT fk_return_sales_coins FOREIGN KEY ("Coin") REFERENCES public.coins(id);


--
-- Name: return_sales fk_return_sales_cost_centers; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT fk_return_sales_cost_centers FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id);


--
-- Name: return_sales fk_return_sales_employesses; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT fk_return_sales_employesses FOREIGN KEY ("Delegate") REFERENCES public.employesses(id);


--
-- Name: return_sales fk_return_sales_shipping_companies; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT fk_return_sales_shipping_companies FOREIGN KEY ("Ship") REFERENCES public.shipping_companies(id);


--
-- Name: return_sales fk_return_sales_stores; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT fk_return_sales_stores FOREIGN KEY ("Store") REFERENCES public.stores(id);


--
-- Name: safe_transfers fk_safe_transfers_branches; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers
    ADD CONSTRAINT fk_safe_transfers_branches FOREIGN KEY ("Branch") REFERENCES public.branches(id);


--
-- Name: safe_transfers fk_safe_transfers_employesses; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers
    ADD CONSTRAINT fk_safe_transfers_employesses FOREIGN KEY ("Delegate") REFERENCES public.employesses(id);


--
-- Name: sales fk_sales_installment_companies; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT fk_sales_installment_companies FOREIGN KEY ("InstallCompany") REFERENCES public.installment_companies(id);


--
-- Name: sales_orders fk_sales_orders_resturant_tables; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT fk_sales_orders_resturant_tables FOREIGN KEY ("Table") REFERENCES public.resturant_tables(id);


--
-- Name: stores_moves fk_stores_moves_acccounting_manuals; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves
    ADD CONSTRAINT fk_stores_moves_acccounting_manuals FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id);


--
-- Name: stores_moves fk_stores_moves_admins; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves
    ADD CONSTRAINT fk_stores_moves_admins FOREIGN KEY ("User") REFERENCES public.admins(id);


--
-- Name: stores_moves fk_stores_moves_coins; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves
    ADD CONSTRAINT fk_stores_moves_coins FOREIGN KEY ("Coin") REFERENCES public.coins(id);


--
-- Name: stores_moves fk_stores_moves_cost_centers; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves
    ADD CONSTRAINT fk_stores_moves_cost_centers FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id);


--
-- Name: stores_moves fk_stores_moves_stores; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_moves
    ADD CONSTRAINT fk_stores_moves_stores FOREIGN KEY ("Store") REFERENCES public.stores(id);


--
-- Name: stors_transfers fk_stors_transfers_employesses; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers
    ADD CONSTRAINT fk_stors_transfers_employesses FOREIGN KEY ("Delegate") REFERENCES public.employesses(id);


--
-- Name: stors_transfers fk_stors_transfers_shipping_companies; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers
    ADD CONSTRAINT fk_stors_transfers_shipping_companies FOREIGN KEY ("Ship") REFERENCES public.shipping_companies(id);


--
-- Name: vendors fk_vendors_brands; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT fk_vendors_brands FOREIGN KEY ("Brand") REFERENCES public.brands(id);


--
-- Name: vendors fk_vendors_cities; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT fk_vendors_cities FOREIGN KEY ("City") REFERENCES public.cities(id);


--
-- Name: vendors fk_vendors_countris; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT fk_vendors_countris FOREIGN KEY ("Nationality") REFERENCES public.countris(id);


--
-- Name: vendors fk_vendors_employesses; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT fk_vendors_employesses FOREIGN KEY ("Responsible") REFERENCES public.employesses(id);


--
-- Name: vendors fk_vendors_governrates; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT fk_vendors_governrates FOREIGN KEY ("Governrate") REFERENCES public.governrates(id);


--
-- Name: vendors fk_vendors_items_groups; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT fk_vendors_items_groups FOREIGN KEY ("Pro_Group") REFERENCES public.items_groups(id);


--
-- Name: vendors fk_vendors_places; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT fk_vendors_places FOREIGN KEY ("Place") REFERENCES public.places(id);


--
-- Name: general_dailies general_dailies_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.general_dailies
    ADD CONSTRAINT general_dailies_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: general_dailies general_dailies_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.general_dailies
    ADD CONSTRAINT general_dailies_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: general_dailies general_dailies_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.general_dailies
    ADD CONSTRAINT general_dailies_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: holidays holidays_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.holidays
    ADD CONSTRAINT holidays_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: holidays holidays_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.holidays
    ADD CONSTRAINT holidays_type_foreign FOREIGN KEY ("Type") REFERENCES public.holidays_types(id) ON DELETE CASCADE;


--
-- Name: holidays holidays_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.holidays
    ADD CONSTRAINT holidays_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: incom_checks incom_checks_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: incom_checks incom_checks_arrest_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_arrest_account_foreign FOREIGN KEY ("Arrest_Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: incom_checks incom_checks_bank_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_bank_foreign FOREIGN KEY ("Bank") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: incom_checks incom_checks_bene_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_bene_account_foreign FOREIGN KEY ("Bene_Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: incom_checks incom_checks_check_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_check_type_foreign FOREIGN KEY ("Check_Type") REFERENCES public.checks_types(id) ON DELETE CASCADE;


--
-- Name: incom_checks incom_checks_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: incom_checks incom_checks_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: incom_checks incom_checks_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_checks
    ADD CONSTRAINT incom_checks_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: incom_manufacturing_models incom_manufacturing_models_model_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_manufacturing_models
    ADD CONSTRAINT incom_manufacturing_models_model_foreign FOREIGN KEY ("Model") REFERENCES public.manufacturing_models(id) ON DELETE CASCADE;


--
-- Name: incom_manufacturing_models incom_manufacturing_models_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_manufacturing_models
    ADD CONSTRAINT incom_manufacturing_models_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: incom_manufacturing_models incom_manufacturing_models_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_manufacturing_models
    ADD CONSTRAINT incom_manufacturing_models_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: incom_manufacturing_models incom_manufacturing_models_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.incom_manufacturing_models
    ADD CONSTRAINT incom_manufacturing_models_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: installment_dates installment_dates_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installment_dates
    ADD CONSTRAINT installment_dates_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: installment_dates installment_dates_install_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installment_dates
    ADD CONSTRAINT installment_dates_install_foreign FOREIGN KEY ("Install") REFERENCES public.installments(id) ON DELETE CASCADE;


--
-- Name: installments installments_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installments
    ADD CONSTRAINT installments_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: installments installments_sales_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.installments
    ADD CONSTRAINT installments_sales_foreign FOREIGN KEY ("Sales") REFERENCES public.sales(id) ON DELETE CASCADE;


--
-- Name: insurance_papers insurance_papers_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_papers
    ADD CONSTRAINT insurance_papers_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: insurance_papers insurance_papers_bank_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_papers
    ADD CONSTRAINT insurance_papers_bank_foreign FOREIGN KEY ("Bank") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: insurance_papers insurance_papers_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_papers
    ADD CONSTRAINT insurance_papers_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: insurance_papers insurance_papers_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_papers
    ADD CONSTRAINT insurance_papers_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: insurance_papers insurance_papers_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insurance_papers
    ADD CONSTRAINT insurance_papers_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: interviews interviews_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews
    ADD CONSTRAINT interviews_client_foreign FOREIGN KEY ("Client") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: interviews interviews_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews
    ADD CONSTRAINT interviews_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: interviews interviews_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews
    ADD CONSTRAINT interviews_type_foreign FOREIGN KEY ("Type") REFERENCES public.interviews_types(id) ON DELETE CASCADE;


--
-- Name: interviews interviews_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.interviews
    ADD CONSTRAINT interviews_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: inventories inventories_account_dificit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.inventories
    ADD CONSTRAINT inventories_account_dificit_foreign FOREIGN KEY ("Account_Dificit") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: inventories inventories_account_excess_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.inventories
    ADD CONSTRAINT inventories_account_excess_foreign FOREIGN KEY ("Account_Excess") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: inventories inventories_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.inventories
    ADD CONSTRAINT inventories_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: inventories inventories_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.inventories
    ADD CONSTRAINT inventories_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: inventories inventories_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.inventories
    ADD CONSTRAINT inventories_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: journalizing_details journalizing_details_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizing_details
    ADD CONSTRAINT journalizing_details_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: journalizing_details journalizing_details_joun_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizing_details
    ADD CONSTRAINT journalizing_details_joun_id_foreign FOREIGN KEY ("Joun_ID") REFERENCES public.journalizings(id) ON DELETE CASCADE;


--
-- Name: journalizings journalizings_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizings
    ADD CONSTRAINT journalizings_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: journalizings journalizings_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.journalizings
    ADD CONSTRAINT journalizings_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: loans loans_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans
    ADD CONSTRAINT loans_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: loans loans_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans
    ADD CONSTRAINT loans_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: loans loans_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans
    ADD CONSTRAINT loans_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: loans loans_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans
    ADD CONSTRAINT loans_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: loans loans_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans
    ADD CONSTRAINT loans_type_foreign FOREIGN KEY ("Type") REFERENCES public.loan_types(id) ON DELETE CASCADE;


--
-- Name: loans loans_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.loans
    ADD CONSTRAINT loans_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: maintainc_bills maintainc_bills_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: maintainc_bills maintainc_bills_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: maintainc_bills maintainc_bills_company_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_company_foreign FOREIGN KEY ("Company") REFERENCES public.manufacture_companies(id) ON DELETE CASCADE;


--
-- Name: maintainc_bills maintainc_bills_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: maintainc_bills maintainc_bills_device_case_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_device_case_foreign FOREIGN KEY ("Device_Case") REFERENCES public.desvice_cases(id) ON DELETE CASCADE;


--
-- Name: maintainc_bills maintainc_bills_device_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_device_type_foreign FOREIGN KEY ("Device_Type") REFERENCES public.devices_typesies(id) ON DELETE CASCADE;


--
-- Name: maintainc_bills maintainc_bills_recipt_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_recipt_foreign FOREIGN KEY ("Recipt") REFERENCES public.recipt_maintainces(id) ON DELETE CASCADE;


--
-- Name: maintainc_bills maintainc_bills_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.maintainc_bills
    ADD CONSTRAINT maintainc_bills_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: manufacturing_executions manufacturing_executions_manu_order_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_executions
    ADD CONSTRAINT manufacturing_executions_manu_order_id_foreign FOREIGN KEY ("Manu_Order_ID") REFERENCES public.manufacturing_orders(id) ON DELETE CASCADE;


--
-- Name: manufacturing_executions manufacturing_executions_model_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_executions
    ADD CONSTRAINT manufacturing_executions_model_foreign FOREIGN KEY ("Model") REFERENCES public.manufacturing_models(id) ON DELETE CASCADE;


--
-- Name: manufacturing_executions manufacturing_executions_production_manager_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_executions
    ADD CONSTRAINT manufacturing_executions_production_manager_foreign FOREIGN KEY ("Production_Manager") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: manufacturing_executions manufacturing_executions_quality_manager_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_executions
    ADD CONSTRAINT manufacturing_executions_quality_manager_foreign FOREIGN KEY ("Quality_Manager") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: manufacturing_executions manufacturing_executions_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_executions
    ADD CONSTRAINT manufacturing_executions_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: manufacturing_models manufacturing_models_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_models
    ADD CONSTRAINT manufacturing_models_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: manufacturing_models manufacturing_models_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_models
    ADD CONSTRAINT manufacturing_models_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: manufacturing_models manufacturing_models_hall_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_models
    ADD CONSTRAINT manufacturing_models_hall_foreign FOREIGN KEY ("Hall") REFERENCES public.manufacturing_halls(id) ON DELETE CASCADE;


--
-- Name: manufacturing_models manufacturing_models_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_models
    ADD CONSTRAINT manufacturing_models_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: manufacturing_requests manufacturing_requests_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_requests
    ADD CONSTRAINT manufacturing_requests_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: manufacturing_requests manufacturing_requests_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_requests
    ADD CONSTRAINT manufacturing_requests_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: manufacturing_requests manufacturing_requests_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.manufacturing_requests
    ADD CONSTRAINT manufacturing_requests_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: missions missions_observer_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.missions
    ADD CONSTRAINT missions_observer_foreign FOREIGN KEY ("Observer") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: missions missions_task_owner_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.missions
    ADD CONSTRAINT missions_task_owner_foreign FOREIGN KEY ("Task_Owner") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: missions missions_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.missions
    ADD CONSTRAINT missions_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: model_has_roles model_has_roles_role_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_roles
    ADD CONSTRAINT model_has_roles_role_id_foreign FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE;


--
-- Name: opening_entries opening_entries_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries
    ADD CONSTRAINT opening_entries_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: opening_entries opening_entries_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries
    ADD CONSTRAINT opening_entries_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: opening_entries_details opening_entries_details_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries_details
    ADD CONSTRAINT opening_entries_details_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: opening_entries_details opening_entries_details_op_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.opening_entries_details
    ADD CONSTRAINT opening_entries_details_op_id_foreign FOREIGN KEY ("OP_ID") REFERENCES public.opening_entries(id) ON DELETE CASCADE;


--
-- Name: outcom_manufacturing_models outcom_manufacturing_models_model_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.outcom_manufacturing_models
    ADD CONSTRAINT outcom_manufacturing_models_model_foreign FOREIGN KEY ("Model") REFERENCES public.manufacturing_models(id) ON DELETE CASCADE;


--
-- Name: outcom_manufacturing_models outcom_manufacturing_models_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.outcom_manufacturing_models
    ADD CONSTRAINT outcom_manufacturing_models_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: outcom_manufacturing_models outcom_manufacturing_models_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.outcom_manufacturing_models
    ADD CONSTRAINT outcom_manufacturing_models_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: outcom_manufacturing_models outcom_manufacturing_models_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.outcom_manufacturing_models
    ADD CONSTRAINT outcom_manufacturing_models_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: partners partners_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.partners
    ADD CONSTRAINT partners_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: pay_salaries pay_salaries_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_salaries
    ADD CONSTRAINT pay_salaries_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: pay_salaries pay_salaries_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_salaries
    ADD CONSTRAINT pay_salaries_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: pay_salaries pay_salaries_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_salaries
    ADD CONSTRAINT pay_salaries_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: pay_salaries pay_salaries_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_salaries
    ADD CONSTRAINT pay_salaries_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: pay_salaries pay_salaries_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pay_salaries
    ADD CONSTRAINT pay_salaries_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: payment_voucher_details payment_voucher_details_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_voucher_details
    ADD CONSTRAINT payment_voucher_details_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: payment_voucher_details payment_voucher_details_pv_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_voucher_details
    ADD CONSTRAINT payment_voucher_details_pv_id_foreign FOREIGN KEY ("PV_ID") REFERENCES public.payment_vouchers(id) ON DELETE CASCADE;


--
-- Name: payment_vouchers payment_vouchers_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_vouchers
    ADD CONSTRAINT payment_vouchers_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: payment_vouchers payment_vouchers_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_vouchers
    ADD CONSTRAINT payment_vouchers_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: payment_vouchers payment_vouchers_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_vouchers
    ADD CONSTRAINT payment_vouchers_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: permission_to_exchange_goods permission_to_exchange_goods_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods
    ADD CONSTRAINT permission_to_exchange_goods_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: permission_to_exchange_goods permission_to_exchange_goods_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods
    ADD CONSTRAINT permission_to_exchange_goods_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: permission_to_exchange_goods permission_to_exchange_goods_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods
    ADD CONSTRAINT permission_to_exchange_goods_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: permission_to_exchange_goods permission_to_exchange_goods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods
    ADD CONSTRAINT permission_to_exchange_goods_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: permission_to_exchange_goods permission_to_exchange_goods_to_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods
    ADD CONSTRAINT permission_to_exchange_goods_to_store_foreign FOREIGN KEY ("To_Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: permission_to_exchange_goods permission_to_exchange_goods_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_exchange_goods
    ADD CONSTRAINT permission_to_exchange_goods_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: permission_to_recived_goods permission_to_recived_goods_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_recived_goods
    ADD CONSTRAINT permission_to_recived_goods_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: permission_to_recived_goods permission_to_recived_goods_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_recived_goods
    ADD CONSTRAINT permission_to_recived_goods_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: permission_to_recived_goods permission_to_recived_goods_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_recived_goods
    ADD CONSTRAINT permission_to_recived_goods_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: permission_to_recived_goods permission_to_recived_goods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_recived_goods
    ADD CONSTRAINT permission_to_recived_goods_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: permission_to_recived_goods permission_to_recived_goods_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permission_to_recived_goods
    ADD CONSTRAINT permission_to_recived_goods_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: places places_city_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.places
    ADD CONSTRAINT places_city_foreign FOREIGN KEY ("City") REFERENCES public.cities(id) ON DELETE CASCADE;


--
-- Name: places places_delivery_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.places
    ADD CONSTRAINT places_delivery_foreign FOREIGN KEY ("Delivery") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: product_inventories product_inventories_inv_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_inventories
    ADD CONSTRAINT product_inventories_inv_id_foreign FOREIGN KEY ("Inv_ID") REFERENCES public.inventories(id) ON DELETE CASCADE;


--
-- Name: product_inventories product_inventories_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_inventories
    ADD CONSTRAINT product_inventories_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_inventories product_inventories_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_inventories
    ADD CONSTRAINT product_inventories_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_inventories product_inventories_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_inventories
    ADD CONSTRAINT product_inventories_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_inventories product_inventories_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_inventories
    ADD CONSTRAINT product_inventories_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_maintainc_bills product_maintainc_bills_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_maintainc_bills
    ADD CONSTRAINT product_maintainc_bills_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_maintainc_bills product_maintainc_bills_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_maintainc_bills
    ADD CONSTRAINT product_maintainc_bills_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: product_maintainc_bills product_maintainc_bills_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_maintainc_bills
    ADD CONSTRAINT product_maintainc_bills_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_maintainc_bills product_maintainc_bills_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_maintainc_bills
    ADD CONSTRAINT product_maintainc_bills_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_maintainc_bills product_maintainc_bills_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_maintainc_bills
    ADD CONSTRAINT product_maintainc_bills_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_manufacturing_executions product_manufacturing_executions_manuexecution_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_manufacturing_executions
    ADD CONSTRAINT product_manufacturing_executions_manuexecution_foreign FOREIGN KEY ("ManuExecution") REFERENCES public.manufacturing_executions(id) ON DELETE CASCADE;


--
-- Name: product_manufacturing_executions product_manufacturing_executions_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_manufacturing_executions
    ADD CONSTRAINT product_manufacturing_executions_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_manufacturing_executions product_manufacturing_executions_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_manufacturing_executions
    ADD CONSTRAINT product_manufacturing_executions_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: product_manufacturing_executions product_manufacturing_executions_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_manufacturing_executions
    ADD CONSTRAINT product_manufacturing_executions_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_moves product_moves_group_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT product_moves_group_foreign FOREIGN KEY ("Group") REFERENCES public.items_groups(id) ON DELETE CASCADE;


--
-- Name: product_moves product_moves_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT product_moves_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_moves product_moves_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT product_moves_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: product_moves product_moves_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT product_moves_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_moves product_moves_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT product_moves_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: product_moves product_moves_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT product_moves_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_moves product_moves_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_moves
    ADD CONSTRAINT product_moves_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_quote_images product_quote_images_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_quote_images
    ADD CONSTRAINT product_quote_images_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_quote_images product_quote_images_quoteimage_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_quote_images
    ADD CONSTRAINT product_quote_images_quoteimage_foreign FOREIGN KEY ("QuoteImage") REFERENCES public.quote_images(id) ON DELETE CASCADE;


--
-- Name: product_quote_images product_quote_images_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_quote_images
    ADD CONSTRAINT product_quote_images_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_quote_images product_quote_images_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_quote_images
    ADD CONSTRAINT product_quote_images_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_quote_images product_quote_images_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_quote_images
    ADD CONSTRAINT product_quote_images_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_sales_orders product_sales_orders_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_orders
    ADD CONSTRAINT product_sales_orders_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_sales_orders product_sales_orders_salesorder_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_orders
    ADD CONSTRAINT product_sales_orders_salesorder_foreign FOREIGN KEY ("SalesOrder") REFERENCES public.sales_orders(id) ON DELETE CASCADE;


--
-- Name: product_sales_orders product_sales_orders_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_orders
    ADD CONSTRAINT product_sales_orders_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: product_sales_orders product_sales_orders_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_orders
    ADD CONSTRAINT product_sales_orders_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_sales_orders product_sales_orders_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_orders
    ADD CONSTRAINT product_sales_orders_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_sales_orders product_sales_orders_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_orders
    ADD CONSTRAINT product_sales_orders_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_sales product_sales_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales
    ADD CONSTRAINT product_sales_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_sales product_sales_sales_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales
    ADD CONSTRAINT product_sales_sales_foreign FOREIGN KEY ("Sales") REFERENCES public.sales(id) ON DELETE CASCADE;


--
-- Name: product_sales product_sales_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales
    ADD CONSTRAINT product_sales_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: product_sales_subscribes product_sales_subscribes_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_subscribes
    ADD CONSTRAINT product_sales_subscribes_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_sales_subscribes product_sales_subscribes_subscribe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_subscribes
    ADD CONSTRAINT product_sales_subscribes_subscribe_foreign FOREIGN KEY ("Subscribe") REFERENCES public.sales_subscribes(id) ON DELETE CASCADE;


--
-- Name: product_sales_subscribes product_sales_subscribes_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_subscribes
    ADD CONSTRAINT product_sales_subscribes_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_sales_subscribes product_sales_subscribes_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_subscribes
    ADD CONSTRAINT product_sales_subscribes_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_sales_subscribes product_sales_subscribes_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales_subscribes
    ADD CONSTRAINT product_sales_subscribes_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_sales product_sales_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales
    ADD CONSTRAINT product_sales_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_sales product_sales_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales
    ADD CONSTRAINT product_sales_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_sales product_sales_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_sales
    ADD CONSTRAINT product_sales_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_settlements product_settlements_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_settlements
    ADD CONSTRAINT product_settlements_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_settlements product_settlements_set_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_settlements
    ADD CONSTRAINT product_settlements_set_id_foreign FOREIGN KEY ("Set_ID") REFERENCES public.settlements(id) ON DELETE CASCADE;


--
-- Name: product_settlements product_settlements_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_settlements
    ADD CONSTRAINT product_settlements_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: product_settlements product_settlements_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_settlements
    ADD CONSTRAINT product_settlements_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_settlements product_settlements_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_settlements
    ADD CONSTRAINT product_settlements_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: product_units product_units_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_units
    ADD CONSTRAINT product_units_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: product_units product_units_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.product_units
    ADD CONSTRAINT product_units_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products products_brand_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products
    ADD CONSTRAINT products_brand_foreign FOREIGN KEY ("Brand") REFERENCES public.brands(id) ON DELETE CASCADE;


--
-- Name: products_consists products_consists_consist_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_consists
    ADD CONSTRAINT products_consists_consist_id_foreign FOREIGN KEY ("Consist_ID") REFERENCES public.consists(id) ON DELETE CASCADE;


--
-- Name: products_consists products_consists_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_consists
    ADD CONSTRAINT products_consists_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_consists products_consists_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_consists
    ADD CONSTRAINT products_consists_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_consists products_consists_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_consists
    ADD CONSTRAINT products_consists_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_consists products_consists_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_consists
    ADD CONSTRAINT products_consists_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_executing_receivings products_executing_receivings_executing_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_executing_receivings
    ADD CONSTRAINT products_executing_receivings_executing_foreign FOREIGN KEY ("Executing") REFERENCES public.executing_receivings(id) ON DELETE CASCADE;


--
-- Name: products_executing_receivings products_executing_receivings_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_executing_receivings
    ADD CONSTRAINT products_executing_receivings_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_executing_receivings products_executing_receivings_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_executing_receivings
    ADD CONSTRAINT products_executing_receivings_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_executing_receivings products_executing_receivings_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_executing_receivings
    ADD CONSTRAINT products_executing_receivings_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products products_group_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products
    ADD CONSTRAINT products_group_foreign FOREIGN KEY ("Group") REFERENCES public.items_groups(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_orders products_manufacturing_orders_manuorder_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_orders
    ADD CONSTRAINT products_manufacturing_orders_manuorder_foreign FOREIGN KEY ("ManuOrder") REFERENCES public.manufacturing_orders(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_orders products_manufacturing_orders_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_orders
    ADD CONSTRAINT products_manufacturing_orders_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_orders products_manufacturing_orders_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_orders
    ADD CONSTRAINT products_manufacturing_orders_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_orders products_manufacturing_orders_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_orders
    ADD CONSTRAINT products_manufacturing_orders_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_orders products_manufacturing_orders_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_orders
    ADD CONSTRAINT products_manufacturing_orders_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_orders products_manufacturing_orders_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_orders
    ADD CONSTRAINT products_manufacturing_orders_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_requests products_manufacturing_requests_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_requests
    ADD CONSTRAINT products_manufacturing_requests_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_requests products_manufacturing_requests_request_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_requests
    ADD CONSTRAINT products_manufacturing_requests_request_foreign FOREIGN KEY ("Request") REFERENCES public.manufacturing_requests(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_requests products_manufacturing_requests_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_requests
    ADD CONSTRAINT products_manufacturing_requests_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_requests products_manufacturing_requests_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_requests
    ADD CONSTRAINT products_manufacturing_requests_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_requests products_manufacturing_requests_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_requests
    ADD CONSTRAINT products_manufacturing_requests_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_manufacturing_requests products_manufacturing_requests_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_manufacturing_requests
    ADD CONSTRAINT products_manufacturing_requests_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_exchange_goods products_permission_to_exchange_goods_exchange_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods
    ADD CONSTRAINT products_permission_to_exchange_goods_exchange_foreign FOREIGN KEY ("Exchange") REFERENCES public.permission_to_exchange_goods(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_exchange_goods products_permission_to_exchange_goods_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods
    ADD CONSTRAINT products_permission_to_exchange_goods_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_exchange_goods products_permission_to_exchange_goods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods
    ADD CONSTRAINT products_permission_to_exchange_goods_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_exchange_goods products_permission_to_exchange_goods_to_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods
    ADD CONSTRAINT products_permission_to_exchange_goods_to_store_foreign FOREIGN KEY ("To_Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_exchange_goods products_permission_to_exchange_goods_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods
    ADD CONSTRAINT products_permission_to_exchange_goods_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_exchange_goods products_permission_to_exchange_goods_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods
    ADD CONSTRAINT products_permission_to_exchange_goods_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_exchange_goods products_permission_to_exchange_goods_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_exchange_goods
    ADD CONSTRAINT products_permission_to_exchange_goods_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_recived_goods products_permission_to_recived_goods_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_recived_goods
    ADD CONSTRAINT products_permission_to_recived_goods_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_recived_goods products_permission_to_recived_goods_recived_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_recived_goods
    ADD CONSTRAINT products_permission_to_recived_goods_recived_foreign FOREIGN KEY ("Recived") REFERENCES public.permission_to_recived_goods(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_recived_goods products_permission_to_recived_goods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_recived_goods
    ADD CONSTRAINT products_permission_to_recived_goods_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_recived_goods products_permission_to_recived_goods_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_recived_goods
    ADD CONSTRAINT products_permission_to_recived_goods_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_recived_goods products_permission_to_recived_goods_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_recived_goods
    ADD CONSTRAINT products_permission_to_recived_goods_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_permission_to_recived_goods products_permission_to_recived_goods_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_permission_to_recived_goods
    ADD CONSTRAINT products_permission_to_recived_goods_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_purchase_petrols products_purchase_petrols_petrol_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchase_petrols
    ADD CONSTRAINT products_purchase_petrols_petrol_foreign FOREIGN KEY ("Petrol") REFERENCES public.purchase_petrols(id) ON DELETE CASCADE;


--
-- Name: products_purchases_orders products_purchases_orders_p_order_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases_orders
    ADD CONSTRAINT products_purchases_orders_p_order_foreign FOREIGN KEY ("P_Order") REFERENCES public.purchases_orders(id) ON DELETE CASCADE;


--
-- Name: products_purchases_orders products_purchases_orders_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases_orders
    ADD CONSTRAINT products_purchases_orders_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_purchases_orders products_purchases_orders_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases_orders
    ADD CONSTRAINT products_purchases_orders_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_purchases_orders products_purchases_orders_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases_orders
    ADD CONSTRAINT products_purchases_orders_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_purchases_orders products_purchases_orders_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases_orders
    ADD CONSTRAINT products_purchases_orders_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_purchases_orders products_purchases_orders_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases_orders
    ADD CONSTRAINT products_purchases_orders_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_purchases products_purchases_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases
    ADD CONSTRAINT products_purchases_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_purchases products_purchases_purchase_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases
    ADD CONSTRAINT products_purchases_purchase_foreign FOREIGN KEY ("Purchase") REFERENCES public.purchases(id) ON DELETE CASCADE;


--
-- Name: products_purchases products_purchases_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases
    ADD CONSTRAINT products_purchases_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_purchases products_purchases_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases
    ADD CONSTRAINT products_purchases_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_purchases products_purchases_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases
    ADD CONSTRAINT products_purchases_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_purchases products_purchases_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_purchases
    ADD CONSTRAINT products_purchases_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_qties products_qties_pro_stores_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_qties
    ADD CONSTRAINT products_qties_pro_stores_foreign FOREIGN KEY ("Pro_Stores") REFERENCES public.products_stores(id) ON DELETE CASCADE;


--
-- Name: products_qties products_qties_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_qties
    ADD CONSTRAINT products_qties_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_qties products_qties_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_qties
    ADD CONSTRAINT products_qties_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_qties products_qties_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_qties
    ADD CONSTRAINT products_qties_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_qties products_qties_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_qties
    ADD CONSTRAINT products_qties_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_qties products_qties_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_qties
    ADD CONSTRAINT products_qties_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_quotes products_quotes_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_quotes
    ADD CONSTRAINT products_quotes_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_quotes products_quotes_s_quote_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_quotes
    ADD CONSTRAINT products_quotes_s_quote_foreign FOREIGN KEY ("S_Quote") REFERENCES public.quotes(id) ON DELETE CASCADE;


--
-- Name: products_quotes products_quotes_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_quotes
    ADD CONSTRAINT products_quotes_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_quotes products_quotes_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_quotes
    ADD CONSTRAINT products_quotes_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_quotes products_quotes_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_quotes
    ADD CONSTRAINT products_quotes_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_quotes products_quotes_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_quotes
    ADD CONSTRAINT products_quotes_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_return_maintaince_bills products_return_maintaince_bills_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT products_return_maintaince_bills_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_return_maintaince_bills products_return_maintaince_bills_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT products_return_maintaince_bills_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_return_maintaince_bills products_return_maintaince_bills_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT products_return_maintaince_bills_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_return_maintaince_bills products_return_maintaince_bills_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_return_maintaince_bills
    ADD CONSTRAINT products_return_maintaince_bills_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_export_goods products_secretariat_export_goods_export_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_export_goods
    ADD CONSTRAINT products_secretariat_export_goods_export_foreign FOREIGN KEY ("Export") REFERENCES public.secretariat_export_goods(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_export_goods products_secretariat_export_goods_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_export_goods
    ADD CONSTRAINT products_secretariat_export_goods_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_export_goods products_secretariat_export_goods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_export_goods
    ADD CONSTRAINT products_secretariat_export_goods_store_foreign FOREIGN KEY ("Store") REFERENCES public.secretariat_stores(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_export_goods products_secretariat_export_goods_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_export_goods
    ADD CONSTRAINT products_secretariat_export_goods_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_export_goods products_secretariat_export_goods_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_export_goods
    ADD CONSTRAINT products_secretariat_export_goods_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_export_goods products_secretariat_export_goods_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_export_goods
    ADD CONSTRAINT products_secretariat_export_goods_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_import_goods products_secretariat_import_goods_import_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_import_goods
    ADD CONSTRAINT products_secretariat_import_goods_import_foreign FOREIGN KEY ("Import") REFERENCES public.secretariat_import_goods(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_import_goods products_secretariat_import_goods_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_import_goods
    ADD CONSTRAINT products_secretariat_import_goods_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_import_goods products_secretariat_import_goods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_import_goods
    ADD CONSTRAINT products_secretariat_import_goods_store_foreign FOREIGN KEY ("Store") REFERENCES public.secretariat_stores(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_import_goods products_secretariat_import_goods_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_import_goods
    ADD CONSTRAINT products_secretariat_import_goods_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_import_goods products_secretariat_import_goods_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_import_goods
    ADD CONSTRAINT products_secretariat_import_goods_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_secretariat_import_goods products_secretariat_import_goods_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_secretariat_import_goods
    ADD CONSTRAINT products_secretariat_import_goods_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_shortcomings products_shortcomings_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_shortcomings
    ADD CONSTRAINT products_shortcomings_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_shortcomings products_shortcomings_shortmings_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_shortcomings
    ADD CONSTRAINT products_shortcomings_shortmings_foreign FOREIGN KEY ("Shortmings") REFERENCES public.shortcomings(id) ON DELETE CASCADE;


--
-- Name: products_shortcomings products_shortcomings_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_shortcomings
    ADD CONSTRAINT products_shortcomings_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_shortcomings products_shortcomings_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_shortcomings
    ADD CONSTRAINT products_shortcomings_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_shortcomings products_shortcomings_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_shortcomings
    ADD CONSTRAINT products_shortcomings_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_shortcomings products_shortcomings_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_shortcomings
    ADD CONSTRAINT products_shortcomings_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_start_periods products_start_periods_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_start_periods
    ADD CONSTRAINT products_start_periods_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_start_periods products_start_periods_sp_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_start_periods
    ADD CONSTRAINT products_start_periods_sp_id_foreign FOREIGN KEY ("SP_ID") REFERENCES public.start_periods(id) ON DELETE CASCADE;


--
-- Name: products_start_periods products_start_periods_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_start_periods
    ADD CONSTRAINT products_start_periods_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_start_periods products_start_periods_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_start_periods
    ADD CONSTRAINT products_start_periods_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_start_periods products_start_periods_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_start_periods
    ADD CONSTRAINT products_start_periods_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_stores products_stores_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores
    ADD CONSTRAINT products_stores_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_stores products_stores_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores
    ADD CONSTRAINT products_stores_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: products_stores_transfers products_stores_transfers_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores_transfers
    ADD CONSTRAINT products_stores_transfers_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_stores_transfers products_stores_transfers_st_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores_transfers
    ADD CONSTRAINT products_stores_transfers_st_id_foreign FOREIGN KEY ("ST_ID") REFERENCES public.stors_transfers(id) ON DELETE CASCADE;


--
-- Name: products_stores_transfers products_stores_transfers_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores_transfers
    ADD CONSTRAINT products_stores_transfers_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: products_stores_transfers products_stores_transfers_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores_transfers
    ADD CONSTRAINT products_stores_transfers_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_stores_transfers products_stores_transfers_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores_transfers
    ADD CONSTRAINT products_stores_transfers_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_stores products_stores_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores
    ADD CONSTRAINT products_stores_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_stores products_stores_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_stores
    ADD CONSTRAINT products_stores_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products products_tax_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products
    ADD CONSTRAINT products_tax_foreign FOREIGN KEY ("Tax") REFERENCES public.taxes(id) ON DELETE CASCADE;


--
-- Name: products_viras products_viras_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_viras
    ADD CONSTRAINT products_viras_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: products_viras products_viras_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_viras
    ADD CONSTRAINT products_viras_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: products_viras products_viras_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.products_viras
    ADD CONSTRAINT products_viras_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: project_teams project_teams_member_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.project_teams
    ADD CONSTRAINT project_teams_member_foreign FOREIGN KEY ("Member") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: project_teams project_teams_project_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.project_teams
    ADD CONSTRAINT project_teams_project_foreign FOREIGN KEY ("Project") REFERENCES public.projects(id) ON DELETE CASCADE;


--
-- Name: projects projects_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.projects
    ADD CONSTRAINT projects_client_foreign FOREIGN KEY ("Client") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: projects projects_manager_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.projects
    ADD CONSTRAINT projects_manager_foreign FOREIGN KEY ("Manager") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: projects projects_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.projects
    ADD CONSTRAINT projects_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: purchase_petrols purchase_petrols_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchase_petrols
    ADD CONSTRAINT purchase_petrols_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: purchase_petrols purchase_petrols_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchase_petrols
    ADD CONSTRAINT purchase_petrols_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: purchase_petrols purchase_petrols_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchase_petrols
    ADD CONSTRAINT purchase_petrols_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: purchase_petrols purchase_petrols_vendor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchase_petrols
    ADD CONSTRAINT purchase_petrols_vendor_foreign FOREIGN KEY ("Vendor") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: purchases purchases_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases
    ADD CONSTRAINT purchases_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: purchases purchases_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases
    ADD CONSTRAINT purchases_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: purchases_default_data purchases_default_data_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_default_data
    ADD CONSTRAINT purchases_default_data_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: purchases_default_data purchases_default_data_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_default_data
    ADD CONSTRAINT purchases_default_data_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: purchases_default_data purchases_default_data_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_default_data
    ADD CONSTRAINT purchases_default_data_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: purchases_default_data purchases_default_data_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_default_data
    ADD CONSTRAINT purchases_default_data_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: purchases_default_data purchases_default_data_vendor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_default_data
    ADD CONSTRAINT purchases_default_data_vendor_foreign FOREIGN KEY ("Vendor") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: purchases purchases_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases
    ADD CONSTRAINT purchases_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: purchases_orders purchases_orders_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders
    ADD CONSTRAINT purchases_orders_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: purchases_orders purchases_orders_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders
    ADD CONSTRAINT purchases_orders_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: purchases_orders purchases_orders_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders
    ADD CONSTRAINT purchases_orders_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: purchases_orders purchases_orders_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders
    ADD CONSTRAINT purchases_orders_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: purchases_orders purchases_orders_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders
    ADD CONSTRAINT purchases_orders_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: purchases_orders purchases_orders_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders
    ADD CONSTRAINT purchases_orders_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: purchases_orders purchases_orders_vendor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases_orders
    ADD CONSTRAINT purchases_orders_vendor_foreign FOREIGN KEY ("Vendor") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: purchases purchases_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases
    ADD CONSTRAINT purchases_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: purchases purchases_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases
    ADD CONSTRAINT purchases_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: purchases purchases_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases
    ADD CONSTRAINT purchases_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: purchases purchases_vendor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.purchases
    ADD CONSTRAINT purchases_vendor_foreign FOREIGN KEY ("Vendor") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: qualities qualities_manuexecution_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.qualities
    ADD CONSTRAINT qualities_manuexecution_foreign FOREIGN KEY ("ManuExecution") REFERENCES public.manufacturing_executions(id) ON DELETE CASCADE;


--
-- Name: qualities qualities_production_manager_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.qualities
    ADD CONSTRAINT qualities_production_manager_foreign FOREIGN KEY ("Production_Manager") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: qualities qualities_quality_manager_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.qualities
    ADD CONSTRAINT qualities_quality_manager_foreign FOREIGN KEY ("Quality_Manager") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: qualities qualities_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.qualities
    ADD CONSTRAINT qualities_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: quality_details quality_details_exmine_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quality_details
    ADD CONSTRAINT quality_details_exmine_foreign FOREIGN KEY ("Exmine") REFERENCES public.examinations_types(id) ON DELETE CASCADE;


--
-- Name: quality_details quality_details_quality_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quality_details
    ADD CONSTRAINT quality_details_quality_foreign FOREIGN KEY ("Quality") REFERENCES public.qualities(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_executor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_executor_foreign FOREIGN KEY ("Executor") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: rates rates_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rates
    ADD CONSTRAINT rates_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: rates rates_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.rates
    ADD CONSTRAINT rates_user_foreign FOREIGN KEY ("User") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: recipt_maintaince_errors recipt_maintaince_errors_recipt_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintaince_errors
    ADD CONSTRAINT recipt_maintaince_errors_recipt_foreign FOREIGN KEY ("Recipt") REFERENCES public.recipt_maintainces(id) ON DELETE CASCADE;


--
-- Name: recipt_maintainces recipt_maintainces_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces
    ADD CONSTRAINT recipt_maintainces_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: recipt_maintainces recipt_maintainces_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces
    ADD CONSTRAINT recipt_maintainces_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: recipt_maintainces recipt_maintainces_company_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces
    ADD CONSTRAINT recipt_maintainces_company_foreign FOREIGN KEY ("Company") REFERENCES public.manufacture_companies(id) ON DELETE CASCADE;


--
-- Name: recipt_maintainces recipt_maintainces_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces
    ADD CONSTRAINT recipt_maintainces_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: recipt_maintainces recipt_maintainces_device_case_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces
    ADD CONSTRAINT recipt_maintainces_device_case_foreign FOREIGN KEY ("Device_Case") REFERENCES public.desvice_cases(id) ON DELETE CASCADE;


--
-- Name: recipt_maintainces recipt_maintainces_device_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces
    ADD CONSTRAINT recipt_maintainces_device_type_foreign FOREIGN KEY ("Device_Type") REFERENCES public.devices_typesies(id) ON DELETE CASCADE;


--
-- Name: recipt_maintainces recipt_maintainces_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_maintainces
    ADD CONSTRAINT recipt_maintainces_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: recipt_voucher_details recipt_voucher_details_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_voucher_details
    ADD CONSTRAINT recipt_voucher_details_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: recipt_voucher_details recipt_voucher_details_rv_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_voucher_details
    ADD CONSTRAINT recipt_voucher_details_rv_id_foreign FOREIGN KEY ("RV_ID") REFERENCES public.recipt_vouchers(id) ON DELETE CASCADE;


--
-- Name: recipt_vouchers recipt_vouchers_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_vouchers
    ADD CONSTRAINT recipt_vouchers_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: recipt_vouchers recipt_vouchers_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_vouchers
    ADD CONSTRAINT recipt_vouchers_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: recipt_vouchers recipt_vouchers_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipt_vouchers
    ADD CONSTRAINT recipt_vouchers_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: recipts_sales_petrols recipts_sales_petrols_salespetrol_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipts_sales_petrols
    ADD CONSTRAINT recipts_sales_petrols_salespetrol_foreign FOREIGN KEY ("SalesPetrol") REFERENCES public.sales_petrols(id) ON DELETE CASCADE;


--
-- Name: recipts_types recipts_types_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recipts_types
    ADD CONSTRAINT recipts_types_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: recived_purch_products recived_purch_products_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purch_products
    ADD CONSTRAINT recived_purch_products_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: recived_purch_products recived_purch_products_recived_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purch_products
    ADD CONSTRAINT recived_purch_products_recived_foreign FOREIGN KEY ("Recived") REFERENCES public.recived_purchts(id) ON DELETE CASCADE;


--
-- Name: recived_purch_products recived_purch_products_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purch_products
    ADD CONSTRAINT recived_purch_products_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: recived_purch_products recived_purch_products_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purch_products
    ADD CONSTRAINT recived_purch_products_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: recived_purch_products recived_purch_products_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purch_products
    ADD CONSTRAINT recived_purch_products_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: recived_purch_products recived_purch_products_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purch_products
    ADD CONSTRAINT recived_purch_products_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: recived_purchts recived_purchts_purchase_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_purchts
    ADD CONSTRAINT recived_purchts_purchase_foreign FOREIGN KEY ("Purchase") REFERENCES public.purchases(id) ON DELETE CASCADE;


--
-- Name: recived_sales_products recived_sales_products_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales_products
    ADD CONSTRAINT recived_sales_products_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: recived_sales_products recived_sales_products_recived_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales_products
    ADD CONSTRAINT recived_sales_products_recived_foreign FOREIGN KEY ("Recived") REFERENCES public.recived_sales(id) ON DELETE CASCADE;


--
-- Name: recived_sales_products recived_sales_products_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales_products
    ADD CONSTRAINT recived_sales_products_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: recived_sales_products recived_sales_products_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales_products
    ADD CONSTRAINT recived_sales_products_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: recived_sales_products recived_sales_products_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales_products
    ADD CONSTRAINT recived_sales_products_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: recived_sales_products recived_sales_products_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales_products
    ADD CONSTRAINT recived_sales_products_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: recived_sales recived_sales_sales_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.recived_sales
    ADD CONSTRAINT recived_sales_sales_foreign FOREIGN KEY ("Sales") REFERENCES public.sales(id) ON DELETE CASCADE;


--
-- Name: reg_over_times reg_over_times_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_over_times
    ADD CONSTRAINT reg_over_times_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: reg_over_times reg_over_times_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_over_times
    ADD CONSTRAINT reg_over_times_type_foreign FOREIGN KEY ("Type") REFERENCES public.over_times(id) ON DELETE CASCADE;


--
-- Name: reg_over_times reg_over_times_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reg_over_times
    ADD CONSTRAINT reg_over_times_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: reservations reservations_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reservations
    ADD CONSTRAINT reservations_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: reservations reservations_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reservations
    ADD CONSTRAINT reservations_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: reservations reservations_room_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reservations
    ADD CONSTRAINT reservations_room_foreign FOREIGN KEY ("Room") REFERENCES public.rooms(id) ON DELETE CASCADE;


--
-- Name: reservations reservations_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reservations
    ADD CONSTRAINT reservations_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_branch_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_branch_foreign FOREIGN KEY ("Branch") REFERENCES public.branches(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_company_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_company_foreign FOREIGN KEY ("Company") REFERENCES public.manufacture_companies(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_device_case_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_device_case_foreign FOREIGN KEY ("Device_Case") REFERENCES public.desvice_cases(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_device_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_device_type_foreign FOREIGN KEY ("Device_Type") REFERENCES public.devices_typesies(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_eng_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_eng_foreign FOREIGN KEY ("Eng") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_recipient_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_recipient_foreign FOREIGN KEY ("Recipient") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: return_maintaince_bills return_maintaince_bills_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_maintaince_bills
    ADD CONSTRAINT return_maintaince_bills_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: return_purch_products return_purch_products_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_products
    ADD CONSTRAINT return_purch_products_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: return_purch_products return_purch_products_return_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_products
    ADD CONSTRAINT return_purch_products_return_foreign FOREIGN KEY ("Return") REFERENCES public.return_purches(id) ON DELETE CASCADE;


--
-- Name: return_purch_products return_purch_products_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_products
    ADD CONSTRAINT return_purch_products_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: return_purch_products return_purch_products_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_products
    ADD CONSTRAINT return_purch_products_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: return_purch_products return_purch_products_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_products
    ADD CONSTRAINT return_purch_products_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: return_purch_products return_purch_products_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purch_products
    ADD CONSTRAINT return_purch_products_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: return_purches return_purches_purchase_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT return_purches_purchase_foreign FOREIGN KEY ("Purchase") REFERENCES public.purchases(id) ON DELETE CASCADE;


--
-- Name: return_purches return_purches_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_purches
    ADD CONSTRAINT return_purches_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: return_sales_products return_sales_products_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_products
    ADD CONSTRAINT return_sales_products_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: return_sales_products return_sales_products_return_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_products
    ADD CONSTRAINT return_sales_products_return_foreign FOREIGN KEY ("Return") REFERENCES public.return_sales(id) ON DELETE CASCADE;


--
-- Name: return_sales_products return_sales_products_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_products
    ADD CONSTRAINT return_sales_products_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: return_sales_products return_sales_products_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_products
    ADD CONSTRAINT return_sales_products_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: return_sales_products return_sales_products_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_products
    ADD CONSTRAINT return_sales_products_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: return_sales_products return_sales_products_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales_products
    ADD CONSTRAINT return_sales_products_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: return_sales return_sales_sales_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT return_sales_sales_foreign FOREIGN KEY ("Sales") REFERENCES public.sales(id) ON DELETE CASCADE;


--
-- Name: return_sales return_sales_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.return_sales
    ADD CONSTRAINT return_sales_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: role_has_permissions role_has_permissions_role_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_role_id_foreign FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE;


--
-- Name: room_reservations room_reservations_room_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.room_reservations
    ADD CONSTRAINT room_reservations_room_foreign FOREIGN KEY ("Room") REFERENCES public.rooms(id) ON DELETE CASCADE;


--
-- Name: safe_transfers safe_transfers_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers
    ADD CONSTRAINT safe_transfers_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: safe_transfers safe_transfers_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers
    ADD CONSTRAINT safe_transfers_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: safe_transfers safe_transfers_from_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers
    ADD CONSTRAINT safe_transfers_from_safe_foreign FOREIGN KEY ("From_Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: safe_transfers safe_transfers_to_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers
    ADD CONSTRAINT safe_transfers_to_safe_foreign FOREIGN KEY ("To_Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: safe_transfers safe_transfers_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safe_transfers
    ADD CONSTRAINT safe_transfers_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: safes_banks safes_banks_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safes_banks
    ADD CONSTRAINT safes_banks_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: safes_banks safes_banks_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.safes_banks
    ADD CONSTRAINT safes_banks_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: sales sales_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sales sales_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: sales sales_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: sales_default_data sales_default_data_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_default_data
    ADD CONSTRAINT sales_default_data_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sales_default_data sales_default_data_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_default_data
    ADD CONSTRAINT sales_default_data_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: sales_default_data sales_default_data_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_default_data
    ADD CONSTRAINT sales_default_data_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: sales_default_data sales_default_data_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_default_data
    ADD CONSTRAINT sales_default_data_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sales_default_data sales_default_data_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_default_data
    ADD CONSTRAINT sales_default_data_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: sales sales_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: sales sales_executor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_executor_foreign FOREIGN KEY ("Executor") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: sales_orders sales_orders_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sales_orders sales_orders_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: sales_orders sales_orders_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: sales_orders sales_orders_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: sales_orders sales_orders_executor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_executor_foreign FOREIGN KEY ("Executor") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: sales_orders sales_orders_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sales_orders sales_orders_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: sales_orders sales_orders_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_orders
    ADD CONSTRAINT sales_orders_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: sales_petrols sales_petrols_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_petrols
    ADD CONSTRAINT sales_petrols_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: sales_petrols sales_petrols_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_petrols
    ADD CONSTRAINT sales_petrols_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sales_petrols sales_petrols_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_petrols
    ADD CONSTRAINT sales_petrols_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: sales sales_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sales sales_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: sales_subscribes sales_subscribes_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_subscribes
    ADD CONSTRAINT sales_subscribes_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sales_subscribes sales_subscribes_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_subscribes
    ADD CONSTRAINT sales_subscribes_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: sales_subscribes sales_subscribes_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_subscribes
    ADD CONSTRAINT sales_subscribes_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: sales_subscribes sales_subscribes_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales_subscribes
    ADD CONSTRAINT sales_subscribes_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: sales sales_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sales
    ADD CONSTRAINT sales_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: secretariat_export_goods secretariat_export_goods_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_export_goods
    ADD CONSTRAINT secretariat_export_goods_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: secretariat_export_goods secretariat_export_goods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_export_goods
    ADD CONSTRAINT secretariat_export_goods_store_foreign FOREIGN KEY ("Store") REFERENCES public.secretariat_stores(id) ON DELETE CASCADE;


--
-- Name: secretariat_export_goods secretariat_export_goods_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_export_goods
    ADD CONSTRAINT secretariat_export_goods_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: secretariat_import_goods secretariat_import_goods_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_import_goods
    ADD CONSTRAINT secretariat_import_goods_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: secretariat_import_goods secretariat_import_goods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_import_goods
    ADD CONSTRAINT secretariat_import_goods_store_foreign FOREIGN KEY ("Store") REFERENCES public.secretariat_stores(id) ON DELETE CASCADE;


--
-- Name: secretariat_import_goods secretariat_import_goods_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_import_goods
    ADD CONSTRAINT secretariat_import_goods_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: secretariat_qties secretariat_qties_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_qties
    ADD CONSTRAINT secretariat_qties_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: secretariat_qties secretariat_qties_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_qties
    ADD CONSTRAINT secretariat_qties_store_foreign FOREIGN KEY ("Store") REFERENCES public.secretariat_stores(id) ON DELETE CASCADE;


--
-- Name: secretariat_qties secretariat_qties_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_qties
    ADD CONSTRAINT secretariat_qties_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: secretariat_qties secretariat_qties_v1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_qties
    ADD CONSTRAINT secretariat_qties_v1_foreign FOREIGN KEY ("V1") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: secretariat_qties secretariat_qties_v2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.secretariat_qties
    ADD CONSTRAINT secretariat_qties_v2_foreign FOREIGN KEY ("V2") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: settlements settlements_account_dificit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements
    ADD CONSTRAINT settlements_account_dificit_foreign FOREIGN KEY ("Account_Dificit") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: settlements settlements_account_excess_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements
    ADD CONSTRAINT settlements_account_excess_foreign FOREIGN KEY ("Account_Excess") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: settlements settlements_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements
    ADD CONSTRAINT settlements_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: settlements settlements_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements
    ADD CONSTRAINT settlements_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: settlements settlements_inv_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements
    ADD CONSTRAINT settlements_inv_id_foreign FOREIGN KEY ("Inv_ID") REFERENCES public.inventories(id) ON DELETE CASCADE;


--
-- Name: settlements settlements_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements
    ADD CONSTRAINT settlements_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: settlements settlements_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settlements
    ADD CONSTRAINT settlements_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: sewing_accessories sewing_accessories_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_accessories
    ADD CONSTRAINT sewing_accessories_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: sewing_accessories sewing_accessories_sewingorder_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_accessories
    ADD CONSTRAINT sewing_accessories_sewingorder_foreign FOREIGN KEY ("SewingOrder") REFERENCES public.sewing_orders(id) ON DELETE CASCADE;


--
-- Name: sewing_al_kabkat sewing_al_kabkat_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_al_kabkat
    ADD CONSTRAINT sewing_al_kabkat_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_al_taktak sewing_al_taktak_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_al_taktak
    ADD CONSTRAINT sewing_al_taktak_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_buttons sewing_buttons_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_buttons
    ADD CONSTRAINT sewing_buttons_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_chest_pocket_fillings sewing_chest_pocket_fillings_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_chest_pocket_fillings
    ADD CONSTRAINT sewing_chest_pocket_fillings_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_chest_pockets sewing_chest_pockets_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_chest_pockets
    ADD CONSTRAINT sewing_chest_pockets_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_collar_paddings sewing_collar_paddings_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_collar_paddings
    ADD CONSTRAINT sewing_collar_paddings_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_collars sewing_collars_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_collars
    ADD CONSTRAINT sewing_collars_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_cseed_sleeves sewing_cseed_sleeves_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_cseed_sleeves
    ADD CONSTRAINT sewing_cseed_sleeves_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_cupcake_fillings sewing_cupcake_fillings_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_cupcake_fillings
    ADD CONSTRAINT sewing_cupcake_fillings_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_embroideries sewing_embroideries_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_embroideries
    ADD CONSTRAINT sewing_embroideries_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_alkabkat_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_alkabkat_foreign FOREIGN KEY ("AlKabkat") REFERENCES public.sewing_al_kabkat(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_altaktak_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_altaktak_foreign FOREIGN KEY ("AlTaktak") REFERENCES public.sewing_al_taktak(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_buttons_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_buttons_foreign FOREIGN KEY ("Buttons") REFERENCES public.sewing_buttons(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_chestpocket_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_chestpocket_foreign FOREIGN KEY ("ChestPocket") REFERENCES public.sewing_chest_pockets(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_chestpocketfilling_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_chestpocketfilling_foreign FOREIGN KEY ("ChestPocketFilling") REFERENCES public.sewing_chest_pocket_fillings(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_collar_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_collar_foreign FOREIGN KEY ("Collar") REFERENCES public.sewing_collars(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_collarpadding_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_collarpadding_foreign FOREIGN KEY ("CollarPadding") REFERENCES public.sewing_collar_paddings(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_cseedsleeves_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_cseedsleeves_foreign FOREIGN KEY ("CseedSleeves") REFERENCES public.sewing_cseed_sleeves(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_cupcakefilling_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_cupcakefilling_foreign FOREIGN KEY ("CupcakeFilling") REFERENCES public.sewing_cupcake_fillings(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_embroidery_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_embroidery_foreign FOREIGN KEY ("Embroidery") REFERENCES public.sewing_embroideries(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_seedfilling_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_seedfilling_foreign FOREIGN KEY ("SeedFilling") REFERENCES public.sewing_seed_fillings(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_seeds_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_seeds_foreign FOREIGN KEY ("Seeds") REFERENCES public.sewing_seeds(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_sewingorder_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_sewingorder_foreign FOREIGN KEY ("SewingOrder") REFERENCES public.sewing_orders(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_sidepocket_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_sidepocket_foreign FOREIGN KEY ("SidePocket") REFERENCES public.sewing_side_pockets(id) ON DELETE CASCADE;


--
-- Name: sewing_order_modules sewing_order_modules_sleeves_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_order_modules
    ADD CONSTRAINT sewing_order_modules_sleeves_foreign FOREIGN KEY ("Sleeves") REFERENCES public.sewing_sleeves(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_branch_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_branch_foreign FOREIGN KEY ("Branch") REFERENCES public.branches(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_recivedbranch_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_recivedbranch_foreign FOREIGN KEY ("RecivedBranch") REFERENCES public.branches(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_orders sewing_orders_taxtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_orders
    ADD CONSTRAINT sewing_orders_taxtype_foreign FOREIGN KEY ("TaxType") REFERENCES public.taxes(id) ON DELETE CASCADE;


--
-- Name: sewing_request_details sewing_request_details_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_request_details
    ADD CONSTRAINT sewing_request_details_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: sewing_request_details sewing_request_details_sewingrequest_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_request_details
    ADD CONSTRAINT sewing_request_details_sewingrequest_foreign FOREIGN KEY ("SewingRequest") REFERENCES public.sewing_requests(id) ON DELETE CASCADE;


--
-- Name: sewing_request_details sewing_request_details_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_request_details
    ADD CONSTRAINT sewing_request_details_type_foreign FOREIGN KEY ("Type") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_branch_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_branch_foreign FOREIGN KEY ("Branch") REFERENCES public.branches(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_outsidesewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_outsidesewingtype_foreign FOREIGN KEY ("OutsideSewingType") REFERENCES public.sewing_types(id) ON DELETE SET NULL;


--
-- Name: sewing_requests sewing_requests_recivedbranch_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_recivedbranch_foreign FOREIGN KEY ("RecivedBranch") REFERENCES public.branches(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_sewingorderid_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_sewingorderid_foreign FOREIGN KEY ("SewingOrderID") REFERENCES public.sewing_orders(id) ON DELETE SET NULL;


--
-- Name: sewing_requests sewing_requests_taxtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_taxtype_foreign FOREIGN KEY ("TaxType") REFERENCES public.taxes(id) ON DELETE CASCADE;


--
-- Name: sewing_requests sewing_requests_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_requests
    ADD CONSTRAINT sewing_requests_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: sewing_seed_fillings sewing_seed_fillings_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_seed_fillings
    ADD CONSTRAINT sewing_seed_fillings_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_seeds sewing_seeds_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_seeds
    ADD CONSTRAINT sewing_seeds_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_side_pockets sewing_side_pockets_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_side_pockets
    ADD CONSTRAINT sewing_side_pockets_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: sewing_sleeves sewing_sleeves_sewingtype_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sewing_sleeves
    ADD CONSTRAINT sewing_sleeves_sewingtype_foreign FOREIGN KEY ("SewingType") REFERENCES public.sewing_types(id) ON DELETE CASCADE;


--
-- Name: shifts shifts_emp_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shifts
    ADD CONSTRAINT shifts_emp_foreign FOREIGN KEY ("Emp") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: shifts shifts_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shifts
    ADD CONSTRAINT shifts_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: shipments_distribution_goods shipments_distribution_goods_shipmentsdistribution_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipments_distribution_goods
    ADD CONSTRAINT shipments_distribution_goods_shipmentsdistribution_foreign FOREIGN KEY ("ShipmentsDistribution") REFERENCES public.shipments_distributions(id) ON DELETE CASCADE;


--
-- Name: shipping_companies shipping_companies_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_companies
    ADD CONSTRAINT shipping_companies_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: shipping_orders shipping_orders_client_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_orders
    ADD CONSTRAINT shipping_orders_client_foreign FOREIGN KEY ("Client") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: shipping_orders shipping_orders_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_orders
    ADD CONSTRAINT shipping_orders_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: shipping_orders shipping_orders_status_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_orders
    ADD CONSTRAINT shipping_orders_status_foreign FOREIGN KEY ("Status") REFERENCES public.shipping_statuses(id) ON DELETE CASCADE;


--
-- Name: shipping_orders shipping_orders_type_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_orders
    ADD CONSTRAINT shipping_orders_type_foreign FOREIGN KEY ("Type") REFERENCES public.shipping_types(id) ON DELETE CASCADE;


--
-- Name: shipping_orders shipping_orders_vendor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shipping_orders
    ADD CONSTRAINT shipping_orders_vendor_foreign FOREIGN KEY ("Vendor") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: shortcomings shortcomings_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings
    ADD CONSTRAINT shortcomings_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: shortcomings shortcomings_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings
    ADD CONSTRAINT shortcomings_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: shortcomings shortcomings_delegate_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings
    ADD CONSTRAINT shortcomings_delegate_foreign FOREIGN KEY ("Delegate") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- Name: shortcomings shortcomings_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings
    ADD CONSTRAINT shortcomings_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: shortcomings shortcomings_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings
    ADD CONSTRAINT shortcomings_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: shortcomings shortcomings_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings
    ADD CONSTRAINT shortcomings_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: shortcomings shortcomings_vendor_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.shortcomings
    ADD CONSTRAINT shortcomings_vendor_foreign FOREIGN KEY ("Vendor") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: spend_profits spend_profits_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.spend_profits
    ADD CONSTRAINT spend_profits_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: spend_profits spend_profits_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.spend_profits
    ADD CONSTRAINT spend_profits_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: spend_profits spend_profits_partner_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.spend_profits
    ADD CONSTRAINT spend_profits_partner_foreign FOREIGN KEY ("Partner") REFERENCES public.partners(id) ON DELETE CASCADE;


--
-- Name: spend_profits spend_profits_safe_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.spend_profits
    ADD CONSTRAINT spend_profits_safe_foreign FOREIGN KEY ("Safe") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: spend_profits spend_profits_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.spend_profits
    ADD CONSTRAINT spend_profits_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: start_periods start_periods_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.start_periods
    ADD CONSTRAINT start_periods_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: start_periods start_periods_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.start_periods
    ADD CONSTRAINT start_periods_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: start_periods start_periods_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.start_periods
    ADD CONSTRAINT start_periods_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: stores stores_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores
    ADD CONSTRAINT stores_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: stores_default_data stores_default_data_account_dificit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data
    ADD CONSTRAINT stores_default_data_account_dificit_foreign FOREIGN KEY ("Account_Dificit") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: stores_default_data stores_default_data_account_excess_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data
    ADD CONSTRAINT stores_default_data_account_excess_foreign FOREIGN KEY ("Account_Excess") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: stores_default_data stores_default_data_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data
    ADD CONSTRAINT stores_default_data_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: stores_default_data stores_default_data_group_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data
    ADD CONSTRAINT stores_default_data_group_foreign FOREIGN KEY ("Group") REFERENCES public.items_groups(id) ON DELETE CASCADE;


--
-- Name: stores_default_data stores_default_data_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data
    ADD CONSTRAINT stores_default_data_store_foreign FOREIGN KEY ("Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: stores_default_data stores_default_data_tax_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data
    ADD CONSTRAINT stores_default_data_tax_foreign FOREIGN KEY ("Tax") REFERENCES public.taxes(id) ON DELETE CASCADE;


--
-- Name: stores_default_data stores_default_data_unit_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores_default_data
    ADD CONSTRAINT stores_default_data_unit_foreign FOREIGN KEY ("Unit") REFERENCES public.measuerments(id) ON DELETE CASCADE;


--
-- Name: stores stores_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stores
    ADD CONSTRAINT stores_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: stors_transfers stors_transfers_coin_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers
    ADD CONSTRAINT stors_transfers_coin_foreign FOREIGN KEY ("Coin") REFERENCES public.coins(id) ON DELETE CASCADE;


--
-- Name: stors_transfers stors_transfers_cost_center_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers
    ADD CONSTRAINT stors_transfers_cost_center_foreign FOREIGN KEY ("Cost_Center") REFERENCES public.cost_centers(id) ON DELETE CASCADE;


--
-- Name: stors_transfers stors_transfers_from_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers
    ADD CONSTRAINT stors_transfers_from_store_foreign FOREIGN KEY ("From_Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: stors_transfers stors_transfers_to_store_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers
    ADD CONSTRAINT stors_transfers_to_store_foreign FOREIGN KEY ("To_Store") REFERENCES public.stores(id) ON DELETE CASCADE;


--
-- Name: stors_transfers stors_transfers_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.stors_transfers
    ADD CONSTRAINT stors_transfers_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: sub_images sub_images_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sub_images
    ADD CONSTRAINT sub_images_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: sub_virables sub_virables_v_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sub_virables
    ADD CONSTRAINT sub_virables_v_id_foreign FOREIGN KEY ("V_ID") REFERENCES public.virables(id) ON DELETE CASCADE;


--
-- Name: unloading_shipments_goods unloading_shipments_goods_shipmentsunloading_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.unloading_shipments_goods
    ADD CONSTRAINT unloading_shipments_goods_shipmentsunloading_foreign FOREIGN KEY ("ShipmentsUnloading") REFERENCES public.unloading_shipments(id) ON DELETE CASCADE;


--
-- Name: users_moves users_moves_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users_moves
    ADD CONSTRAINT users_moves_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: v_a_prices v_a_prices_mainv_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_prices
    ADD CONSTRAINT v_a_prices_mainv_foreign FOREIGN KEY ("MainV") REFERENCES public.virables(id) ON DELETE CASCADE;


--
-- Name: v_a_prices v_a_prices_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_prices
    ADD CONSTRAINT v_a_prices_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: v_a_prices v_a_prices_subv_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_prices
    ADD CONSTRAINT v_a_prices_subv_foreign FOREIGN KEY ("SubV") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: v_a_products v_a_products_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_products
    ADD CONSTRAINT v_a_products_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: v_a_products v_a_products_productid_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_products
    ADD CONSTRAINT v_a_products_productid_foreign FOREIGN KEY ("ProductID") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: v_a_qties v_a_qties_mainv_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_qties
    ADD CONSTRAINT v_a_qties_mainv_foreign FOREIGN KEY ("MainV") REFERENCES public.virables(id) ON DELETE CASCADE;


--
-- Name: v_a_qties v_a_qties_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_qties
    ADD CONSTRAINT v_a_qties_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: v_a_qties v_a_qties_productid_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_qties
    ADD CONSTRAINT v_a_qties_productid_foreign FOREIGN KEY ("ProductID") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: v_a_qties v_a_qties_subv_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_qties
    ADD CONSTRAINT v_a_qties_subv_foreign FOREIGN KEY ("SubV") REFERENCES public.sub_virables(id) ON DELETE CASCADE;


--
-- Name: v_a_qties v_a_qties_vaproductid_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.v_a_qties
    ADD CONSTRAINT v_a_qties_vaproductid_foreign FOREIGN KEY ("VAProductID") REFERENCES public.v_a_products(id) ON DELETE CASCADE;


--
-- Name: vendors vendors_account_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT vendors_account_foreign FOREIGN KEY ("Account") REFERENCES public.acccounting_manuals(id) ON DELETE CASCADE;


--
-- Name: vendors vendors_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vendors
    ADD CONSTRAINT vendors_user_foreign FOREIGN KEY ("User") REFERENCES public.admins(id) ON DELETE CASCADE;


--
-- Name: wishlists wishlists_product_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wishlists
    ADD CONSTRAINT wishlists_product_foreign FOREIGN KEY ("Product") REFERENCES public.products(id) ON DELETE CASCADE;


--
-- Name: wishlists wishlists_user_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.wishlists
    ADD CONSTRAINT wishlists_user_foreign FOREIGN KEY ("User") REFERENCES public.customers(id) ON DELETE CASCADE;


--
-- Name: workers_sales_petrols workers_sales_petrols_salespetrol_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.workers_sales_petrols
    ADD CONSTRAINT workers_sales_petrols_salespetrol_foreign FOREIGN KEY ("SalesPetrol") REFERENCES public.sales_petrols(id) ON DELETE CASCADE;


--
-- Name: workers_sales_petrols workers_sales_petrols_worker_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.workers_sales_petrols
    ADD CONSTRAINT workers_sales_petrols_worker_foreign FOREIGN KEY ("Worker") REFERENCES public.employesses(id) ON DELETE CASCADE;


--
-- PostgreSQL database dump complete
--

